Module: Shanty::BundlerPlugin

Extended by:
Plugin
Defined in:
lib/shanty/plugins/bundler.rb

Overview

Public: Bundler plugin for building ruby projects.

Instance Method Summary collapse

Methods included from Plugin

add_to_project, subscribe

Instance Method Details

#bundle_installObject



10
11
12
13
# 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