aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/dev/dev_command.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/commands/dev/dev_command.rb')
-rw-r--r--railties/lib/rails/commands/dev/dev_command.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/railties/lib/rails/commands/dev/dev_command.rb b/railties/lib/rails/commands/dev/dev_command.rb
index 820dc4db9e..a3f02f3172 100644
--- a/railties/lib/rails/commands/dev/dev_command.rb
+++ b/railties/lib/rails/commands/dev/dev_command.rb
@@ -5,7 +5,10 @@ require "rails/dev_caching"
module Rails
module Command
class DevCommand < Base # :nodoc:
- desc "Toggle development mode caching on/off"
+ def help
+ say "rails dev:cache # Toggle development mode caching on/off."
+ end
+
def cache
Rails::DevCaching.enable_by_file
end