class Pavlov::Inflector

Public Class Methods

camelize(string, first_letter = :upper) click to toggle source
# File lib/pavlov/support/inflector.rb, line 5
def self.camelize(string, first_letter = :upper)
  # Feel free to reimplement if you want to get rid of backports dependency.
  string.camelize
end
constantize(string) click to toggle source
# File lib/pavlov/support/inflector.rb, line 10
def self.constantize(string)
  # Feel free to reimplement if you want to get rid of backports dependency.
  string.constantize
end