aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/tasks/dev.rake
blob: 5a765bdd215d79f2b756b59f39292e73535045fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require "rails/command"
require "active_support/deprecation"

namespace :dev do
  desc "Toggle development mode caching on/off"
  task :cache do
    ActiveSupport::Deprecation.warn("Using `bin/rake dev:cache` is deprecated and will be removed in Rails 6.1. Use `bin/rails dev:cache` instead.\n")
    Rails::Command.invoke "dev:cache"
  end
end