README.md in handcuffs-1.2.0 vs README.md in handcuffs-1.3.0

- old
+ new

@@ -53,20 +53,20 @@ end ``` You can then run your migrations in phases using ```bash -rake handcuffs:migrate[pre_restart] +rake 'handcuffs:migrate[pre_restart]' ``` or ```bash -rake handcuffs:migrate[post_restart] +rake 'handcuffs:migrate[post_restart]' ``` You can run all migrations using ```bash -rake handcuffs:migrate[all] +rake 'handcuffs:migrate[all]' ``` This differs from running `rake db:migrate` in that specs will be run in the _order that the phases are defined in the handcuffs config_. @@ -96,10 +96,10 @@ Or install it yourself as: $ gem install handcuffs -##Running specs +## Running specs The specs for handcuffs are in the dummy application at `/spec/dummy/spec`. The spec suite requires PostgreSQL. To run it you will have to set the environment variables `POSTGRES_DB_USERNAME` and `POSTGRES_DB_PASSWORD`. You can then run the suite using `rake spec`