Class: Rubycritic::Location

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, line) ⇒ Location

Returns a new instance of Location.



8
9
10
11
# File 'lib/rubycritic/location.rb', line 8

def initialize(path, line)
  @pathname = Pathname.new(path)
  @line = line
end

Instance Attribute Details

#lineObject (readonly)

Returns the value of attribute line.



6
7
8
# File 'lib/rubycritic/location.rb', line 6

def line
  @line
end

#pathnameObject (readonly)

Returns the value of attribute pathname.



6
7
8
# File 'lib/rubycritic/location.rb', line 6

def pathname
  @pathname
end

Instance Method Details

#<=>(other) ⇒ Object



21
22
23
# File 'lib/rubycritic/location.rb', line 21

def <=>(other)
  state <=> other.state
end

#==(other) ⇒ Object



17
18
19
# File 'lib/rubycritic/location.rb', line 17

def ==(other)
  self.class == other.class && state == other.state
end

#to_sObject



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

def to_s
  "#{pathname}:#{line}"
end