Class: StillActive::LockfileDependencyParser::Spec
- Inherits:
-
Struct
- Object
- Struct
- StillActive::LockfileDependencyParser::Spec
- Defined in:
- lib/helpers/lockfile_dependency_parser.rb
Overview
‘dependencies` holds the names listed under this spec in the lockfile (its resolved runtime deps). For a local path gem (a gemspec project or engine) these are the gems it ships, which Bundler does not surface in the DEPENDENCIES section, so they are what #41 needs to reach.
Instance Attribute Summary collapse
-
#dependencies ⇒ Object
Returns the value of attribute dependencies.
-
#name ⇒ Object
Returns the value of attribute name.
-
#source_type ⇒ Object
Returns the value of attribute source_type.
-
#source_uri ⇒ Object
Returns the value of attribute source_uri.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Attribute Details
#dependencies ⇒ Object
Returns the value of attribute dependencies
23 24 25 |
# File 'lib/helpers/lockfile_dependency_parser.rb', line 23 def dependencies @dependencies end |
#name ⇒ Object
Returns the value of attribute name
23 24 25 |
# File 'lib/helpers/lockfile_dependency_parser.rb', line 23 def name @name end |
#source_type ⇒ Object
Returns the value of attribute source_type
23 24 25 |
# File 'lib/helpers/lockfile_dependency_parser.rb', line 23 def source_type @source_type end |
#source_uri ⇒ Object
Returns the value of attribute source_uri
23 24 25 |
# File 'lib/helpers/lockfile_dependency_parser.rb', line 23 def source_uri @source_uri end |
#version ⇒ Object
Returns the value of attribute version
23 24 25 |
# File 'lib/helpers/lockfile_dependency_parser.rb', line 23 def version @version end |