Class: Rubycritic::SourceControlSystem::Double

Inherits:
Base
  • Object
show all
Defined in:
lib/rubycritic/source_control_systems/double.rb

Instance Method Summary collapse

Methods inherited from Base

create, #head_reference, register_system, supported?, system_names, systems, #travel_to_head

Instance Method Details

#date_of_last_commit(path) ⇒ Object



13
14
15
# File 'lib/rubycritic/source_control_systems/double.rb', line 13

def date_of_last_commit(path)
  nil
end

#has_revision?Boolean

Returns:

  • (Boolean)


5
6
7
# File 'lib/rubycritic/source_control_systems/double.rb', line 5

def has_revision?
  false
end

#revisions_count(path) ⇒ Object



9
10
11
# File 'lib/rubycritic/source_control_systems/double.rb', line 9

def revisions_count(path)
  "N/A"
end