Class: DomGlancy::Configuration
- Inherits:
-
Object
- Object
- DomGlancy::Configuration
- Defined in:
- lib/dom_glancy/configuration.rb
Instance Attribute Summary collapse
-
#current_file_location ⇒ Object
Returns the value of attribute current_file_location.
-
#diff_file_location ⇒ Object
Returns the value of attribute diff_file_location.
-
#master_file_location ⇒ Object
Returns the value of attribute master_file_location.
-
#similarity ⇒ Object
Returns the value of attribute similarity.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
17 18 19 20 21 22 |
# File 'lib/dom_glancy/configuration.rb', line 17 def initialize @master_file_location = nil @diff_file_location = nil @current_file_location = nil @similarity = 15 end |
Instance Attribute Details
#current_file_location ⇒ Object
Returns the value of attribute current_file_location.
14 15 16 |
# File 'lib/dom_glancy/configuration.rb', line 14 def current_file_location @current_file_location end |
#diff_file_location ⇒ Object
Returns the value of attribute diff_file_location.
13 14 15 |
# File 'lib/dom_glancy/configuration.rb', line 13 def diff_file_location @diff_file_location end |
#master_file_location ⇒ Object
Returns the value of attribute master_file_location.
12 13 14 |
# File 'lib/dom_glancy/configuration.rb', line 12 def master_file_location @master_file_location end |
#similarity ⇒ Object
Returns the value of attribute similarity.
15 16 17 |
# File 'lib/dom_glancy/configuration.rb', line 15 def similarity @similarity end |