method
dependencies
ruby latest stable - Class:
Bundler::RemoteSpecification
dependencies()public
No documentation available.
# File lib/bundler/remote_specification.rb, line 76
def dependencies
@dependencies ||= begin
deps = method_missing(:dependencies)
# allow us to handle when the specs dependencies are an array of array of string
# see https://github.com/bundler/bundler/issues/5797
deps = deps.map {|d| d.is_a?(Gem::Dependency) ? d : Gem::Dependency.new(*d) }
deps
end
end