Class: Redmine::Scm::Adapters::Revision
- Inherits:
-
Object
- Object
- Redmine::Scm::Adapters::Revision
- Defined in:
- lib/redmine/scm/adapters/abstract_adapter.rb
Direct Known Subclasses
CvsAdapter::Revision, GitAdapter::Revision, MercurialAdapter::Revision
Instance Attribute Summary collapse
-
#author ⇒ Object
Returns the value of attribute author.
-
#branch ⇒ Object
Returns the value of attribute branch.
-
#identifier ⇒ Object
Returns the value of attribute identifier.
-
#message ⇒ Object
Returns the value of attribute message.
-
#name ⇒ Object
Returns the value of attribute name.
-
#parents ⇒ Object
Returns the value of attribute parents.
-
#paths ⇒ Object
Returns the value of attribute paths.
-
#revision ⇒ Object
Returns the value of attribute revision.
-
#scmid ⇒ Object
Returns the value of attribute scmid.
-
#time ⇒ Object
Returns the value of attribute time.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#format_identifier ⇒ Object
Returns the readable identifier.
-
#initialize(attributes = {}) ⇒ Revision
constructor
A new instance of Revision.
Constructor Details
#initialize(attributes = {}) ⇒ Revision
Returns a new instance of Revision.
381 382 383 384 385 386 387 388 389 390 391 392 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 381 def initialize(attributes={}) self.identifier = attributes[:identifier] self.scmid = attributes[:scmid] self.name = attributes[:name] || self.identifier self. = attributes[:author] self.time = attributes[:time] self. = attributes[:message] || "" self.paths = attributes[:paths] self.revision = attributes[:revision] self.branch = attributes[:branch] self.parents = attributes[:parents] end |
Instance Attribute Details
#author ⇒ Object
Returns the value of attribute author.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def @author end |
#branch ⇒ Object
Returns the value of attribute branch.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def branch @branch end |
#identifier ⇒ Object
Returns the value of attribute identifier.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def identifier @identifier end |
#message ⇒ Object
Returns the value of attribute message.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def @message end |
#name ⇒ Object
Returns the value of attribute name.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def name @name end |
#parents ⇒ Object
Returns the value of attribute parents.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def parents @parents end |
#paths ⇒ Object
Returns the value of attribute paths.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def paths @paths end |
#revision ⇒ Object
Returns the value of attribute revision.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def revision @revision end |
#scmid ⇒ Object
Returns the value of attribute scmid.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def scmid @scmid end |
#time ⇒ Object
Returns the value of attribute time.
377 378 379 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 377 def time @time end |
Instance Method Details
#==(other) ⇒ Object
399 400 401 402 403 404 405 406 407 408 409 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 399 def ==(other) if other.nil? false elsif scmid.present? scmid == other.scmid elsif identifier.present? identifier == other.identifier elsif revision.present? revision == other.revision end end |
#format_identifier ⇒ Object
Returns the readable identifier.
395 396 397 |
# File 'lib/redmine/scm/adapters/abstract_adapter.rb', line 395 def format_identifier self.identifier.to_s end |