Sha256: c0fc06dd8791f4af1d486b059bc9a68844183356699672f45f39bc4e309dad9e

Contents?: true

Size: 373 Bytes

Versions: 1

Compression:

Stored size: 373 Bytes

Contents

motion-objection
================

Wrapping Objection in RubyMotion.

```ruby
class Car
  include Objection
  compose_with :engine, :brakes
end

class Engine
  include Objection
  singleton
  compose_with 'engine/crank_shaft', 'engine/rod'

  def shift(wat)
    puts "SHIFT!"
  end

  class CrankShaft
  end 

  class Rod
  end
end

class Brakes
  def brake!
  end
end
```

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
motion-objection-0.5 README.md