module Bun

Constants

VERSION

Public Instance Methods

add(gems, opts = {}) click to toggle source
# File lib/bun.rb, line 12
def add(gems, opts = {})
  runner.add(Array(gems), opts)
end
remove(gems, opts = {}) click to toggle source
# File lib/bun.rb, line 16
def remove(gems, opts = {})
  runner.remove(Array(gems), opts)
end

Private Instance Methods

runner() click to toggle source
# File lib/bun.rb, line 22
def runner
  @runner ||= Runner.new
end