README.md in motion-objection-0.6.2 vs README.md in motion-objection-0.6.3
- old
+ new
@@ -3,20 +3,21 @@
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)
[![Gem Version](https://badge.fury.io/rb/motion-objection.png)](http://badge.fury.io/rb/motion-objection)
+[![Code Climate](https://codeclimate.com/github/atomicobject/motion-objection.png)](https://codeclimate.com/github/atomicobject/motion-objection)
## Install
```bash
gem install motion-objection
```
## Basic Example
```ruby
class Car
include Objection
- compose_with :engine, :brakes
+ compose_with :engine, :brakes, factory: JSObjectFactory
end
class Engine
include Objection
singleton