README.md in motion-objection-0.6 vs README.md in motion-objection-0.6.1

- old
+ new

@@ -1,12 +1,16 @@ motion-objection ================ -Wrapping Objection in RubyMotion. +Wrapping the dependency injection library [Objection](https://github.com/atomicobject/objection) in RubyMotion. [![Build Status](https://travis-ci.org/atomicobject/motion-objection.png)](https://travis-ci.org/atomicobject/motion-objection) +## Install +```bash +gem install motion-objection +``` ## Basic Example ```ruby class Car include Objection @@ -49,6 +53,12 @@ self.tap do @name = name end end end +``` + +## Default Injector + +```ruby +Objection.default_injector = Objection.injector ```