Class: Blueprinter::AutoExtractor Private
- Defined in:
- lib/blueprinter/extractors/auto_extractor.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #extract(field_name, object, local_options, options = {}) ⇒ Object private
-
#initialize ⇒ AutoExtractor
constructor
private
A new instance of AutoExtractor.
Methods inherited from Extractor
Constructor Details
#initialize ⇒ AutoExtractor
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of AutoExtractor.
3 4 5 6 |
# File 'lib/blueprinter/extractors/auto_extractor.rb', line 3 def initialize @hash_extractor = HashExtractor.new @public_send_extractor = PublicSendExtractor.new end |
Instance Method Details
#extract(field_name, object, local_options, options = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
8 9 10 11 12 |
# File 'lib/blueprinter/extractors/auto_extractor.rb', line 8 def extract(field_name, object, , = {}) extractor = object.is_a?(Hash) ? @hash_extractor : @public_send_extractor extraction = extractor.extract(field_name, object, , ) .key?(:datetime_format) ? format_datetime(extraction, [:datetime_format]) : extraction end |