Class: Bundler::Environment
- Inherits:
-
Object
- Object
- Bundler::Environment
- Defined in:
- lib/bundler/environment.rb
Instance Attribute Summary collapse
-
#root ⇒ Object
readonly
Returns the value of attribute root.
Instance Method Summary collapse
- #current_dependencies ⇒ Object
- #dependencies ⇒ Object
-
#initialize(root, definition) ⇒ Environment
constructor
A new instance of Environment.
- #inspect ⇒ Object
- #lock(opts = {}) ⇒ Object
- #requested_specs ⇒ Object
- #specs ⇒ Object
- #update(*gems) ⇒ Object
Constructor Details
#initialize(root, definition) ⇒ Environment
Returns a new instance of Environment.
5 6 7 8 9 10 11 |
# File 'lib/bundler/environment.rb', line 5 def initialize(root, definition) @root = root @definition = definition env_file = Bundler.app_config_path.join('environment.rb') env_file.rmtree if env_file.exist? end |
Instance Attribute Details
#root ⇒ Object (readonly)
Returns the value of attribute root.
3 4 5 |
# File 'lib/bundler/environment.rb', line 3 def root @root end |
Instance Method Details
#current_dependencies ⇒ Object
29 30 31 |
# File 'lib/bundler/environment.rb', line 29 def current_dependencies @definition.current_dependencies end |
#dependencies ⇒ Object
25 26 27 |
# File 'lib/bundler/environment.rb', line 25 def dependencies @definition.dependencies end |
#inspect ⇒ Object
13 14 15 |
# File 'lib/bundler/environment.rb', line 13 def inspect @definition.to_lock.inspect end |
#lock(opts = {}) ⇒ Object
33 34 35 |
# File 'lib/bundler/environment.rb', line 33 def lock(opts = {}) @definition.lock(Bundler.default_lockfile, opts[:preserve_bundled_with]) end |
#requested_specs ⇒ Object
17 18 19 |
# File 'lib/bundler/environment.rb', line 17 def requested_specs @definition.requested_specs end |
#specs ⇒ Object
21 22 23 |
# File 'lib/bundler/environment.rb', line 21 def specs @definition.specs end |
#update(*gems) ⇒ Object
37 38 39 |
# File 'lib/bundler/environment.rb', line 37 def update(*gems) # Nothing end |