Sha256: 09c08dba67b9762cda1d4c9034e742e94beacf25225b89de595f26288864f643

Contents?: true

Size: 617 Bytes

Versions: 90

Compression:

Stored size: 617 Bytes

Contents

# frozen_string_literal: true

module ActionController
  module Railties
    module Helpers
      def inherited(klass)
        super
        return unless klass.respond_to?(:helpers_path=)

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

        klass.helpers_path = paths

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

Version data entries

90 entries across 90 versions & 5 rubygems

Version Path
actionpack-5.2.2.rc1 lib/action_controller/railties/helpers.rb
actionpack-5.2.1.1 lib/action_controller/railties/helpers.rb
actionpack-5.2.1 lib/action_controller/railties/helpers.rb
actionpack-5.2.1.rc1 lib/action_controller/railties/helpers.rb
actionpack-5.2.0 lib/action_controller/railties/helpers.rb
actionpack-5.2.0.rc2 lib/action_controller/railties/helpers.rb
actionpack-5.2.0.rc1 lib/action_controller/railties/helpers.rb
actionpack-5.2.0.beta2 lib/action_controller/railties/helpers.rb
actionpack-5.2.0.beta1 lib/action_controller/railties/helpers.rb
ruby-on-quails-0.1.0 actionpack/lib/action_controller/railties/helpers.rb