README.md in replidog-1.1.0 vs README.md in replidog-1.1.1
- old
+ new
@@ -179,10 +179,19 @@
* ActiveRecord::Base.connection.clear_query_cache!
## Contributing
-1. Fork it ( https://github.com/[my-github-username]/replidog/fork )
-2. Create your feature branch (`git checkout -b my-new-feature`)
-3. Commit your changes (`git commit -am 'Add some feature'`)
-4. Push to the branch (`git push origin my-new-feature`)
-5. Create a new Pull Request
+```
+# setup gems
+bundle install
+appraisal install
+
+# setup databases
+rake db:prepare
+
+# run tests for current gemfile
+rake
+
+# run tests for all appraisals
+appraisal rake
+```