class ShopifyAPI::Inflector
Public Instance Methods
Source
# File lib/shopify_api/inflector.rb, line 9 def camelize(basename, abspath) if basename =~ /\Ashopify_api(.*)/ "ShopifyAPI" + super(Regexp.last_match(1), abspath) else super end end
Calls superclass method