module AgapeRedRecipes::Bundler

Public Instance Methods

bundle(command = nil) click to toggle source

Generic bundle command Defaults to “install”

# File lib/agape-red-recipes/modules/bundler.rb, line 5
def bundle(command = nil)
  command ||= "install"
  ::Bundler.with_clean_env do
    run "bundle #{command}"
  end
end