module Rails::Application::Decorators

Public Instance Methods

watchable_args() click to toggle source
Calls superclass method
# File lib/rails/decorators/application.rb, line 4
def watchable_args
  result = super

  result.last.keys.each do |path|
    result.last[path] << Rails::Decorators.extension
  end

  result
end