Class: GemMonitor::Configuration
- Inherits:
-
Object
- Object
- GemMonitor::Configuration
- Defined in:
- lib/gem_monitor.rb
Instance Attribute Summary collapse
-
#gemfile_lock_path ⇒ Object
Returns the value of attribute gemfile_lock_path.
-
#gemfile_path ⇒ Object
Returns the value of attribute gemfile_path.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
29 30 31 32 |
# File 'lib/gem_monitor.rb', line 29 def initialize @gemfile_path = "Gemfile" @gemfile_lock_path = "Gemfile.lock" end |
Instance Attribute Details
#gemfile_lock_path ⇒ Object
Returns the value of attribute gemfile_lock_path.
27 28 29 |
# File 'lib/gem_monitor.rb', line 27 def gemfile_lock_path @gemfile_lock_path end |
#gemfile_path ⇒ Object
Returns the value of attribute gemfile_path.
27 28 29 |
# File 'lib/gem_monitor.rb', line 27 def gemfile_path @gemfile_path end |