Commit a2688605 by Cuong Tran

Merge pull request #204 from prsimp/readme-cleanup

Use consistent single quotes in README
parents 99d899d5 ee5caed9
...@@ -51,7 +51,7 @@ Also, if you pass the -r option, it'll annotate routes.rb with the output of ...@@ -51,7 +51,7 @@ Also, if you pass the -r option, it'll annotate routes.rb with the output of
Into Gemfile from rubygems.org: Into Gemfile from rubygems.org:
gem 'annotate', "~> 2.6.5" gem 'annotate', '~> 2.6.5'
Into Gemfile from Github: Into Gemfile from Github:
...@@ -137,11 +137,11 @@ executed whenever you run +rake db:migrate+ (but only in development mode). ...@@ -137,11 +137,11 @@ executed whenever you run +rake db:migrate+ (but only in development mode).
If you want to disable this behavior permanently, edit the +.rake+ file and If you want to disable this behavior permanently, edit the +.rake+ file and
change: change:
'skip_on_db_migrate' => "false", 'skip_on_db_migrate' => 'false',
To: To:
'skip_on_db_migrate' => "true", 'skip_on_db_migrate' => 'true',
If you want to run +rake db:migrate+ as a one-off without running annotate, If you want to run +rake db:migrate+ as a one-off without running annotate,
you can do so with a simple environment variable, instead of editing the you can do so with a simple environment variable, instead of editing the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment