Sha256: 609120331738b59d8bc52b34ebe9cbbd9f37e0142439317b00a5c305c8bb4262

Contents?: true

Size: 610 Bytes

Versions: 5

Compression:

Stored size: 610 Bytes

Contents

# frozen_string_literal: true
require "action_view"
require "active_support/dependencies/autoload"

module ViewComponent
  extend ActiveSupport::Autoload

  autoload :Base
  autoload :Conversion
  autoload :Preview
  autoload :Previewable
  autoload :TestHelpers
  autoload :TestCase
  autoload :RenderMonkeyPatch
  autoload :RenderingMonkeyPatch
  autoload :TemplateError
end

module ActionView
  module Component
    extend ActiveSupport::Autoload

    autoload :Base
    autoload :Preview
    autoload :TestCase
    autoload :TestHelpers
  end
end

ActiveModel::Conversion.include ViewComponent::Conversion

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
view_component-1.17.0 lib/view_component.rb
actionview-component-1.17.0 lib/view_component.rb
view_component-1.16.0 lib/view_component.rb
actionview-component-1.16.0 lib/view_component.rb
actionview-component-1.15.0 lib/view_component.rb