Class: Gravaty::Parsers::Type

Inherits:
Object
  • Object
show all
Includes:
Utils::Raisers
Defined in:
lib/gravaty/parsers/type.rb

Overview

This class is an implementation of the Parsable duck type that checks the avatar type. The only needed parameter is a valid avatar format.

Author

Marco Bresciani

Copyright

Copyright © 2013, 2014, 2015, 2016, 2017, 2018,

2019 Marco Bresciani

License

GNU General Public License version 3

Instance Method Summary collapse

Methods included from Utils::Raisers

#raiser_downcase, #raiser_to_i

Instance Method Details

#parse(value = nil) ⇒ Object

The parsable duck type interface to every parser usage.



39
40
41
42
# File 'lib/gravaty/parsers/type.rb', line 39

def parse(value = nil)
  raiser_downcase('error.type', value, AVATAR_FORMATS)
  value.nil? ? '' : ".#{value.downcase}"
end