Sha256: d3bf7bbb7e713723b302d1671e5e2ecad57b4cf679c1f4e3612703d4a92e5b63

Contents?: true

Size: 647 Bytes

Versions: 153

Compression:

Stored size: 647 Bytes

Contents

module ActionController
  module Railties
    module Paths
      def self.with(app)
        Module.new do
          define_method(:inherited) do |klass|
            super(klass)

            if namespace = klass.parents.detect { |m| m.respond_to?(:railtie_helpers_paths) }
              paths = namespace.railtie_helpers_paths
            else
              paths = app.helpers_paths
            end

            klass.helpers_path = paths

            if klass.superclass == ActionController::Base && ActionController::Base.include_all_helpers
              klass.helper :all
            end
          end
        end
      end
    end
  end
end

Version data entries

153 entries across 114 versions & 18 rubygems

Version Path
actionpack-3.2.9.rc3 lib/action_controller/railties/paths.rb
actionpack-3.2.9.rc2 lib/action_controller/railties/paths.rb
actionpack-3.2.9.rc1 lib/action_controller/railties/paths.rb
challah-0.8.1 vendor/bundle/gems/actionpack-3.2.8/lib/action_controller/railties/paths.rb
challah-rolls-0.1.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/railties/paths.rb
challah-rolls-0.1.0 vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/railties/paths.rb
challah-rolls-0.1.0 vendor/bundle/gems/actionpack-3.2.8/lib/action_controller/railties/paths.rb
challah-0.8.0.pre vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/railties/paths.rb
challah-0.7.1 vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/railties/paths.rb
challah-0.7.0 vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/railties/paths.rb
challah-0.7.0.pre2 vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/railties/paths.rb
actionpack-3.2.8 lib/action_controller/railties/paths.rb
actionpack-3.2.8.rc2 lib/action_controller/railties/paths.rb
challah-0.7.0.pre vendor/bundle/gems/actionpack-3.2.7/lib/action_controller/railties/paths.rb
actionpack-3.2.8.rc1 lib/action_controller/railties/paths.rb
actionpack-3.2.7 lib/action_controller/railties/paths.rb
actionpack-3.2.7.rc1 lib/action_controller/railties/paths.rb
challah-0.6.2 vendor/bundle/gems/actionpack-3.2.6/lib/action_controller/railties/paths.rb
challah-0.6.2 vendor/bundle/gems/actionpack-3.2.5/lib/action_controller/railties/paths.rb
challah-0.6.2 vendor/bundle/gems/actionpack-3.2.3/lib/action_controller/railties/paths.rb