Class: Redmine::Scm::Adapters::Info
- Inherits:
-
Object
- Object
- Redmine::Scm::Adapters::Info
- Defined in:
- lib/redmine/scm/adapters/abstract_adapter.rb
Instance Attribute Summary collapse
-
#lastrev ⇒ Object
Returns the value of attribute lastrev.
-
#root_url ⇒ Object
Returns the value of attribute root_url.
Instance Method Summary collapse
-
#initialize(attributes = {}) ⇒ Info
constructor
A new instance of Info.
Constructor Details
#initialize(attributes = {}) ⇒ Info
Returns a new instance of Info
322 323 324 325 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 322 def initialize(attributes={}) self.root_url = attributes[:root_url] if attributes[:root_url] self.lastrev = attributes[:lastrev] end |
Instance Attribute Details
#lastrev ⇒ Object
Returns the value of attribute lastrev
321 322 323 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 321 def lastrev @lastrev end |
#root_url ⇒ Object
Returns the value of attribute root_url
321 322 323 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 321 def root_url @root_url end |