Module: Bundlebun::Integrations

Defined in:
lib/bundlebun/integrations.rb,
lib/bundlebun/integrations/execjs.rb,
lib/bundlebun/integrations/vite_ruby.rb,
lib/bundlebun/integrations/jsbundling.rb,
lib/bundlebun/integrations/cssbundling.rb

Overview

Bundlebun includes several integrations for frontend-related gems and frameworks.

Usually you would need to run a provided Rake task (see the list at rake -T bun) to install any initializers or binstubs you might need. Then, the provided files will help you to initialize (patch) the code.

Typically, to call an integration / patch the loaded code, you would need to call the bun! method, like Bundlebun::Integrations::Foobar.bun!.

See the documentation to learn about the supported integrations.

Defined Under Namespace

Modules: Cssbundling, ExecJS, Jsbundling, ViteRuby

Class Method Summary collapse

Class Method Details

.bun!Array<Module>

Loads and initializes all available integrations. See specific classes for implementation.

Examples:

Bundlebun::Integrations.bun! # => [Bundlebun::Integrations::Cssbundling, ...]

Returns:

  • (Array<Module>)

    List of initialized integrations



20
21
22
23
24
25
26
27
# File 'lib/bundlebun/integrations.rb', line 20

def self.bun!
  integration_modules = constants.map { |const| const_get(const) }
    .select { |const| const.is_a?(Module) }

  integration_modules.select do |mod|
    mod.respond_to?(:bun!) && mod.bun!
  end
end