Module: Bundlebun
- Defined in:
- lib/bundlebun.rb,
lib/bundlebun/runner.rb,
lib/bundlebun/version.rb,
lib/bundlebun/env_path.rb,
lib/bundlebun/platform.rb,
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 bundles Bun, a fast JavaScript runtime, package manager
and builder, with your Ruby and Rails applications.
No Docker, devcontainers, curl | sh
, or brew
needed.
bundlebun includes binary distributions of Bun for each of the supported platforms (macOS, Linux, Windows) and architectures.
Defined Under Namespace
Modules: Integrations Classes: EnvPath, Platform, Runner
Constant Summary collapse
- VERSION =
bundlebun uses the
#{bundlebun.version}.#{bun.version}
versioning scheme. gem bundlebun version0.1.0.1.1.38
is a distribution that includes a gem with its own code version0.1.0
and a Bun runtime with version1.1.38
.This constant always points to the "own" version of the gem.
'0.2.0'
Class Method Summary collapse
- .bun ⇒ Object (also: bun?, bun!)
-
.call ⇒ Integer
Runs the Bun runtime with parameters.
-
.load_integrations ⇒ Object
Detect and load all integrations (monkey-patches).
-
.load_tasks ⇒ Object
Load included Rake tasks (like
bun:install
). -
.prepend_to_path ⇒ Object
Prepend the path to the bundled Bun executable to
PATH
.
Class Method Details
.bun ⇒ Object Also known as: bun?, bun!
65 |
# File 'lib/bundlebun.rb', line 65 def bun = 'Bun' |
.call ⇒ Integer
Runs the Bun runtime with parameters.
A shortcut for Bundlebun::Runner.call.
30 31 32 |
# File 'lib/bundlebun.rb', line 30 def call(...) Runner.call(...) end |
.load_integrations ⇒ Object
Detect and load all integrations (monkey-patches).
61 62 63 |
# File 'lib/bundlebun.rb', line 61 def load_integrations Integrations.bun! end |
.load_tasks ⇒ Object
Load included Rake tasks (like bun:install
).
54 55 56 |
# File 'lib/bundlebun.rb', line 54 def load_tasks Dir[File.('tasks/*.rake', __dir__)].each { |task| load task } end |
.prepend_to_path ⇒ Object
Prepend the path to the bundled Bun executable to PATH
.
49 50 51 |
# File 'lib/bundlebun.rb', line 49 def prepend_to_path EnvPath.prepend(Runner.full_directory) end |