Skip to content

Instantly share code, notes, and snippets.

@joshmcarthur
Created August 1, 2014 06:33
Show Gist options
  • Save joshmcarthur/d6404aa03354447ec6b8 to your computer and use it in GitHub Desktop.
Save joshmcarthur/d6404aa03354447ec6b8 to your computer and use it in GitHub Desktop.
Allow using capital letters in API module
# config/initializers/inflections.rb
ActiveSupport::Inflector.inflections(:en) do |inflect|
inflect.acronym 'API'
end
# app/controllers/api/widgets_controller.rb
module API
class WidgetsController < BaseController
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment