Module: Bun
- Extended by:
- Bun
- Included in:
- Bun
- Defined in:
- lib/bun.rb,
lib/bun/errors.rb,
lib/bun/runner.rb,
lib/bun/gemfile.rb,
lib/bun/version.rb,
lib/bun/messages.rb,
lib/bun/arguments.rb,
lib/bun/version_fetcher.rb
Defined Under Namespace
Modules: Errors, Messages
Classes: Arguments, Gemfile, Runner, VersionFetcher
Constant Summary
collapse
- VERSION =
"1.2.0"
Instance Method Summary
collapse
Instance Method Details
#add(gems, opts = {}) ⇒ Object
12
13
14
|
# File 'lib/bun.rb', line 12
def add(gems, opts = {})
runner.add(Array(gems), opts)
end
|
#remove(gems, opts = {}) ⇒ Object
16
17
18
|
# File 'lib/bun.rb', line 16
def remove(gems, opts = {})
runner.remove(Array(gems), opts)
end
|