mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
1825f6fb60
This adds the rake tasks `cache_digests:dependencies` and `cache_digests:nested_dependencies` from `cache_digests` gem.
17 lines
914 B
Ruby
17 lines
914 B
Ruby
namespace :cache_digests do
|
|
desc 'Lookup nested dependencies for TEMPLATE (like messages/show or comments/_comment.html)'
|
|
task :nested_dependencies => :environment do
|
|
abort 'You must provide TEMPLATE for the task to run' unless ENV['TEMPLATE'].present?
|
|
template, format = ENV['TEMPLATE'].split(".")
|
|
format ||= :html
|
|
puts JSON.pretty_generate ActionView::Digestor.new(template, format, ApplicationController.new.lookup_context).nested_dependencies
|
|
end
|
|
|
|
desc 'Lookup first-level dependencies for TEMPLATE (like messages/show or comments/_comment.html)'
|
|
task :dependencies => :environment do
|
|
abort 'You must provide TEMPLATE for the task to run' unless ENV['TEMPLATE'].present?
|
|
template, format = ENV['TEMPLATE'].split(".")
|
|
format ||= :html
|
|
puts JSON.pretty_generate ActionView::Digestor.new(template, format, ApplicationController.new.lookup_context).dependencies
|
|
end
|
|
end
|