module Shanty::BundlerPlugin

Public: Bundler plugin for building ruby projects.

Public Instance Methods

bundle_install() click to toggle source
# File lib/shanty/plugins/bundler.rb, line 10
def bundle_install
  # FIXME: Add support for the --jobs argument to parallelise the bundler run.
  system 'bundle install --quiet'
end