class Gravaty::Parsers::Avatar

This class is an implementation of the Parsable duck type that checks for avater or profile URI. The only needed parameter is a boolean, with true for avatar.

Author

Marco Bresciani

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

Public Instance Methods

parse(value = true) click to toggle source

The parsable duck type interface to every parser usage.

   # File lib/gravaty/parsers/avatar.rb
42 def parse(value = true)
43   value ? 'avatar/' : ''
44 end