Method: Bundler::Definition#specs

Defined in:
lib/bundler/definition.rb

#specsBundler::SpecSet

For given dependency list returns a SpecSet with Gemspec of all the required dependencies.

1. The method first resolves the dependencies specified in Gemfile
2. After that it tries and fetches gemspec of resolved dependencies

Returns:

[View source]

236
237
238
# File 'lib/bundler/definition.rb', line 236

def specs
  @specs ||= materialize(requested_dependencies)
end