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.
87 88 89 |
# File 'lib/upkeep/rails/configuration.rb', line 87 def absent_block @absent_block end |
#subscribe_block ⇒ Object (readonly)
Returns the value of attribute subscribe_block.
87 88 89 |
# File 'lib/upkeep/rails/configuration.rb', line 87 def subscribe_block @subscribe_block end |
Instance Method Details
#absent_if(&block) ⇒ Object
89 90 91 |
# File 'lib/upkeep/rails/configuration.rb', line 89 def absent_if(&block) @absent_block = block end |
#subscribe(&block) ⇒ Object
93 94 95 |
# File 'lib/upkeep/rails/configuration.rb', line 93 def subscribe(&block) @subscribe_block = block end |