aboutsummaryrefslogtreecommitdiffstats
path: root/guides/Rakefile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2016-08-06 19:39:28 +0200
committerXavier Noria <fxn@hashref.com>2016-08-06 19:39:28 +0200
commit1607ee299d15c133b2b63dcfc840eddfba7e525b (patch)
treef1d045de895e4488c95553262a991e62d89756e3 /guides/Rakefile
parent477568ee33bee0dc5e57b9df624142296e3951a4 (diff)
downloadrails-1607ee299d15c133b2b63dcfc840eddfba7e525b.tar.gz
rails-1607ee299d15c133b2b63dcfc840eddfba7e525b.tar.bz2
rails-1607ee299d15c133b2b63dcfc840eddfba7e525b.zip
modernizes hash syntax in guides
Diffstat (limited to 'guides/Rakefile')
-rw-r--r--guides/Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/Rakefile b/guides/Rakefile
index ced8131f82..0c7d112842 100644
--- a/guides/Rakefile
+++ b/guides/Rakefile
@@ -1,7 +1,7 @@
namespace :guides do
desc 'Generate guides (for authors), use ONLY=foo to process just "foo.md"'
- task :generate => "generate:html"
+ task generate: "generate:html"
namespace :generate do
@@ -76,4 +76,4 @@ Examples:
end
end
-task :default => "guides:help"
+task default: "guides:help"