Sha256: 9bf186b068a6ad7ec0e8e780345ac4b5ff427f17c66791848146b278dd9a2f6f
Contents?: true
Size: 1.31 KB
Versions: 20
Compression:
Stored size: 1.31 KB
Contents
module Recurly module Helper def camelize underscored_word underscored_word.to_s.gsub(/(?:^|_)(.)/) { $1.upcase } end def classify table_name camelize singularize(table_name.to_s.sub(/.*\./, '')) end def demodulize class_name_in_module class_name_in_module.to_s.sub(/^.*::/, '') end def pluralize word word.to_s.sub(/([^s])$/, '\1s') end def singularize word word = word.to_s return "shipping_address" if word == "shipping_address" return "shipping_address" if word == "shipping_addresses" word.sub(/s$/, '').sub(/ie$/, 'y') end def underscore camel_cased_word word = camel_cased_word.to_s.dup word.gsub!(/::/, '/') word.gsub!(/([A-Z]+)([A-Z][a-z])/, '\1_\2') word.gsub!(/([a-z\d])([A-Z])/, '\1_\2') word.tr! "-", "_" word.downcase! word end def hash_with_indifferent_read_access base = {} indifferent = Hash.new { |hash, key| hash[key.to_s] if key.is_a? Symbol } base.each_pair { |key, value| indifferent[key.to_s] = value } indifferent end def stringify_keys! hash hash.keys.each do |key| stringify_keys! hash[key] if hash[key].is_a? Hash hash[key.to_s] = hash.delete key if key.is_a? Symbol end end extend self end end
Version data entries
20 entries across 20 versions & 1 rubygems