class MyInflector

frozen_string_literal: true

Public Instance Methods

camelize(basename, _abspath) click to toggle source
Calls superclass method
# File lib/rswim.rb, line 10
def camelize(basename, _abspath)
  case basename
  when 'rswim' then 'RSwim'
  else super
  end
end