Skip to content

Instantly share code, notes, and snippets.

@oojikoo-gist
Last active August 29, 2015 14:17
Show Gist options
  • Save oojikoo-gist/76395862240f7d206fb2 to your computer and use it in GitHub Desktop.
Save oojikoo-gist/76395862240f7d206fb2 to your computer and use it in GitHub Desktop.
rails: API acronym

easy fix for api-> API

ActiveSupport::Inflector.inflections(:en) do |inflect|
  inflect.acronym 'API'
end

now You can write as below

class API::PeopleController < ApplicationController

end

Overriding the Singular Form

ActiveSupport::Inflector.inflections do |inflect|
  inflect.irregular 'tooth', 'teeth'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment