Class: Symbol

Inherits:
Object
  • Object
show all
Defined in:
lib/twitter_cldr/resources/readme_renderer.rb

Overview

patch to add compare operator to Symbol (for mri 1.8)

Instance Method Summary collapse

Instance Method Details

#<=>(other) ⇒ Object



10
11
12
# File 'lib/twitter_cldr/resources/readme_renderer.rb', line 10

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