Sha256: 56a04c1aa73d23c6012a2d876e81ef927f6801a3f485528dec0eb04e2df45209
Contents?: true
Size: 603 Bytes
Versions: 7
Compression:
Stored size: 603 Bytes
Contents
# frozen_string_literal: true module GeoblacklightAdmin class Engine < ::Rails::Engine isolate_namespace GeoblacklightAdmin # GeoblacklightAdminHelper is needed by all helpers, so we inject it # into action view base here. initializer "geoblacklight_admin.helpers" do config.after_initialize do ActionView::Base.include GeoblacklightAdminHelper ActionView::Base.include BulkActionsHelper ActionView::Base.include DocumentHelper ActionView::Base.include FormInputHelper ActionView::Base.include MappingsHelper end end end end
Version data entries
7 entries across 7 versions & 1 rubygems