Class: Grape::Entity::Exposure::BlockExposure

Inherits:
Base
  • Object
show all
Defined in:
lib/grape_entity/exposure/block_exposure.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#attribute, #conditions, #documentation, #for_merge, #is_safe, #key

Instance Method Summary collapse

Methods inherited from Base

#attr_path, #conditional?, #conditions_met?, #deep_complex_nesting?, #dup_args, #initialize, #nesting?, new, #serializable_value, #should_expose?, #should_return_key?, #valid_value, #with_attr_path

Constructor Details

This class inherits a constructor from Grape::Entity::Exposure::Base

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



5
6
7
# File 'lib/grape_entity/exposure/block_exposure.rb', line 5

def block
  @block
end

Instance Method Details

#==(other) ⇒ Object



15
16
17
# File 'lib/grape_entity/exposure/block_exposure.rb', line 15

def ==(other)
  super && @block == other.block
end

#dupObject



11
12
13
# File 'lib/grape_entity/exposure/block_exposure.rb', line 11

def dup
  super(&@block)
end

#setup(&block) ⇒ Object



23
24
25
# File 'lib/grape_entity/exposure/block_exposure.rb', line 23

def setup(&block)
  @block = block
end

#valid?(_entity) ⇒ Boolean

Returns:

  • (Boolean)


19
20
21
# File 'lib/grape_entity/exposure/block_exposure.rb', line 19

def valid?(_entity)
  true
end

#value(entity, options) ⇒ Object



7
8
9
# File 'lib/grape_entity/exposure/block_exposure.rb', line 7

def value(entity, options)
  entity.exec_with_object(options, &@block)
end