mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
18 lines
914 B
Ruby
18 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
|