Class: Promise
- Inherits:
-
Object
- Object
- Promise
- Defined in:
- app/browser_irb/lib/promise_ext.rb
Instance Method Summary collapse
- #then_puts ⇒ Object (also: #tp)
Instance Method Details
#then_puts ⇒ Object Also known as: tp
2 3 4 5 6 7 8 |
# File 'app/browser_irb/lib/promise_ext.rb', line 2 def then_puts self.then do |val| puts val.inspect end.fail do |err| puts "Error: #{err.inspect}" end end |