Sha256: 13a4fe087ebc50c2d729ed2fc046aa04d4206a6735341c7a83e53bf7ef625f78

Contents?: true

Size: 914 Bytes

Versions: 38

Compression:

Stored size: 914 Bytes

Contents

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

Version data entries

38 entries across 38 versions & 2 rubygems

Version Path
actionpack-4.0.13 lib/action_view/tasks/dependencies.rake
actionpack-4.0.13.rc1 lib/action_view/tasks/dependencies.rake
actionpack-4.0.11.1 lib/action_view/tasks/dependencies.rake
actionpack-4.0.12 lib/action_view/tasks/dependencies.rake
actionpack-4.0.11 lib/action_view/tasks/dependencies.rake
actionpack-4.0.10 lib/action_view/tasks/dependencies.rake
actionpack-4.0.10.rc2 lib/action_view/tasks/dependencies.rake
actionpack-4.0.10.rc1 lib/action_view/tasks/dependencies.rake
actionpack-4.0.9 lib/action_view/tasks/dependencies.rake
actionview-4.1.5 lib/action_view/tasks/dependencies.rake
actionview-4.1.4 lib/action_view/tasks/dependencies.rake
actionpack-4.0.8 lib/action_view/tasks/dependencies.rake
actionview-4.1.3 lib/action_view/tasks/dependencies.rake
actionpack-4.0.7 lib/action_view/tasks/dependencies.rake
actionpack-4.0.6 lib/action_view/tasks/dependencies.rake
actionview-4.1.2 lib/action_view/tasks/dependencies.rake
actionview-4.1.2.rc3 lib/action_view/tasks/dependencies.rake
actionpack-4.0.6.rc3 lib/action_view/tasks/dependencies.rake
actionview-4.1.2.rc2 lib/action_view/tasks/dependencies.rake
actionpack-4.0.6.rc2 lib/action_view/tasks/dependencies.rake