Class: GemMonitor::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/gem_monitor.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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_pathObject

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_pathObject

Returns the value of attribute gemfile_path.



27
28
29
# File 'lib/gem_monitor.rb', line 27

def gemfile_path
  @gemfile_path
end