Class: Bundler::Source::Path

Inherits:
Object
  • Object
show all
Defined in:
lib/bundle_filter/path.rb

Instance Method Summary collapse

Instance Method Details

#install(spec, options = {}) ⇒ Object



2
3
4
5
6
7
8
# File 'lib/bundle_filter/path.rb', line 2

def install(spec, options = {})
  using_message = "Using #{version_message(spec, options[:previous_spec])} from #{self}"
  using_message += " and installing its executables" unless spec.executables.empty?
  print_using_message using_message unless BundleFilter::Configuration.pretty
  generate_bin(spec, :disable_extensions => true)
  nil # no post-install message
end