Class: Upkeep::Rails::Configuration::IdentityBuilder
- Inherits:
-
Object
- Object
- Upkeep::Rails::Configuration::IdentityBuilder
- Defined in:
- lib/upkeep/rails/configuration.rb
Instance Attribute Summary collapse
-
#absent_block ⇒ Object
readonly
Returns the value of attribute absent_block.
-
#subscribe_block ⇒ Object
readonly
Returns the value of attribute subscribe_block.
Instance Method Summary collapse
Instance Attribute Details
#absent_block ⇒ Object (readonly)
Returns the value of attribute absent_block.
88 89 90 |
# File 'lib/upkeep/rails/configuration.rb', line 88 def absent_block @absent_block end |
#subscribe_block ⇒ Object (readonly)
Returns the value of attribute subscribe_block.
88 89 90 |
# File 'lib/upkeep/rails/configuration.rb', line 88 def subscribe_block @subscribe_block end |
Instance Method Details
#absent_if(&block) ⇒ Object
90 91 92 |
# File 'lib/upkeep/rails/configuration.rb', line 90 def absent_if(&block) @absent_block = block end |
#subscribe(&block) ⇒ Object
94 95 96 |
# File 'lib/upkeep/rails/configuration.rb', line 94 def subscribe(&block) @subscribe_block = block end |