README.md in collector-0.0.6 vs README.md in collector-0.0.7

- old
+ new

@@ -53,11 +53,11 @@ Models automatically create and update timestamps for `created_at` and `updated_at`. ### Repositories -Include `Collector::Repository` in your repository objects to turn them into repositories. Use the same inflection as your model's name (singular). +Include `Collector::Repository` in an object to turn it into a repository for a model of the same name. Use the same inflection as your model's name (singular). ```ruby class PickleRepository include Collector::Repository @@ -69,9 +69,13 @@ ```ruby pickle = Pickle.new(brine: "vinegar", started_at: Time.now) PickleRepository.save(pickle) ``` + +### Requirements + +Collector will only work with 1.9.x and above. Specifically it's tested with 1.9.2 and 1.9.3. ## Contributing 1. Fork it 2. Create your feature branch (`git checkout -b my-new-feature`)