method
add_path_source
ruby latest stable - Class:
Bundler::SourceList
add_path_source(options = {})public
No documentation available.
# File lib/bundler/source_list.rb, line 21
def add_path_source(options = {})
if options["gemspec"]
add_source_to_list Source::Gemspec.new(options), path_sources
else
add_source_to_list Source::Path.new(options), path_sources
end
end