Class: String

Inherits:
Object show all
Defined in:
lib/agent_xmpp/patches/string.rb

Instance Method Summary collapse

Instance Method Details

#classifyObject

.….….….….….….….….….….….….….….….….….….….….….….….….…..



5
6
7
# File 'lib/agent_xmpp/patches/string.rb', line 5

def classify
  split('_').collect{|s| s.capitalize}.join
end

#humanizeObject

.….….….….….….….….….….….….….….….….….….….….….….….….…..



10
11
12
# File 'lib/agent_xmpp/patches/string.rb', line 10

def humanize
  gsub(/_/, ' ')
end