class Object
Constants
- KRB5_SOURCE_URI
- KRB5_VERSION
- OPENSSL_SOURCE_URI
- OPENSSL_VERSION
- POSTGRESQL_SOURCE_URI
- POSTGRESQL_VERSION
Public Instance Methods
camelize(lower_case_and_underscored_word)
click to toggle source
# File ext/errorcodes.rb, line 2 def camelize(lower_case_and_underscored_word) lower_case_and_underscored_word.to_s.gsub(/\/(.?)/) { "::" + $1.upcase }.gsub(/(^|_)(.)/) { $2.upcase } end