Class: JSONAPI::Consumer::Formatter

Inherits:
Object
  • Object
show all
Defined in:
lib/jsonapi/consumer/formatter.rb

Direct Known Subclasses

KeyFormatter, RouteFormatter, ValueFormatter

Class Method Summary collapse

Class Method Details

.format(arg) ⇒ Object



6
7
8
# File 'lib/jsonapi/consumer/formatter.rb', line 6

def format(arg)
  arg.to_s
end

.formatter_for(format) ⇒ Object



16
17
18
19
# File 'lib/jsonapi/consumer/formatter.rb', line 16

def formatter_for(format)
  formatter_class_name = "JSONAPI::Consumer::#{format.to_s.camelize}Formatter"
  formatter_class_name.safe_constantize
end

.unformat(arg) ⇒ Object



10
11
12
13
14
# File 'lib/jsonapi/consumer/formatter.rb', line 10

def unformat(arg)
   # We call to_s() here so that unformat consistently returns a string
   # (instead of a symbol) regardless which Formatter subclass it is called on
  arg.to_s
end