Module: Geokit::Inflector

Extended by:
Inflector
Included in:
Inflector
Defined in:
lib/geokit/inflector.rb

Instance Method Summary collapse

Instance Method Details

#camelize(str) ⇒ Object



35
36
37
# File 'lib/geokit/inflector.rb', line 35

def camelize(str)
  str.split('_').map {|w| w.capitalize}.join
end

#humanize(lower_case_and_underscored_word) ⇒ Object



18
19
20
# File 'lib/geokit/inflector.rb', line 18

def humanize(lower_case_and_underscored_word)
  lower_case_and_underscored_word.to_s.gsub(/_id$/, "").gsub(/_/, " ").capitalize
end

#snake_case(s) ⇒ Object



22
23
24
25
26
27
# File 'lib/geokit/inflector.rb', line 22

def snake_case(s)
  return s.downcase if s =~ /^[A-Z]+$/u
  s.gsub(/([A-Z]+)(?=[A-Z][a-z]?)|\B[A-Z]/u, '_\&') =~ /_*(.*)/
    return $+.downcase

end

#titleize(word) ⇒ Object



6
7
8
# File 'lib/geokit/inflector.rb', line 6

def titleize(word)
  humanize(underscore(word)).gsub(/\b([a-z])/u) { $1.capitalize }
end

#underscore(camel_cased_word) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/geokit/inflector.rb', line 10

def underscore(camel_cased_word)
  camel_cased_word.to_s.gsub(/::/, '/').
  gsub(/([A-Z]+)([A-Z][a-z])/u,'\1_\2').
  gsub(/([a-z\d])([A-Z])/u,'\1_\2').
  tr("-", "_").
  downcase
end

#url_escape(s) ⇒ Object



29
30
31
32
33
# File 'lib/geokit/inflector.rb', line 29

def url_escape(s)
s.gsub(/([^ a-zA-Z0-9_.-]+)/nu) do
  '%' + $1.unpack('H2' * $1.size).join('%').upcase
  end.tr(' ', '+')
end