Class: CamelizedRouteFormatter

Inherits:
JSONAPI::RouteFormatter show all
Defined in:
lib/jsonapi/formatter.rb

Class Method Summary collapse

Methods inherited from JSONAPI::Formatter

formatter_for

Class Method Details

.format(route) ⇒ Object



110
111
112
# File 'lib/jsonapi/formatter.rb', line 110

def format(route)
  super.camelize(:lower)
end

.unformat(formatted_route) ⇒ Object



114
115
116
# File 'lib/jsonapi/formatter.rb', line 114

def unformat(formatted_route)
  formatted_route.to_s.underscore
end