Class: Gravaty::Parsers::Format
- Inherits:
-
Object
- Object
- Gravaty::Parsers::Format
- Includes:
- Utils::Raisers
- Defined in:
- lib/gravaty/parsers/format.rb
Overview
This class is an implementation of the Parsable duck type that checks the profile type. The only needed parameter is a valid profile format.
- Author
rubocop:disable Style/AsciiComments
- Copyright
-
Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Marco Bresciani
rubocop:enable Style/AsciiComments
- License
-
GNU General Public License version 3
Instance Method Summary collapse
-
#parse(value = nil) ⇒ Object
The parsable duck type interface to every parser usage.
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.
47 48 49 50 |
# File 'lib/gravaty/parsers/format.rb', line 47 def parse(value = nil) raiser_downcase('error.type', value, PROFILE_FORMATS) value.nil? ? '' : ".#{value.downcase}" end |