Method: VoilkRuby::Transaction#operations
- Defined in:
- lib/voilkruby/transaction.rb
#operations ⇒ Object
121 122 123 124 125 126 127 128 |
# File 'lib/voilkruby/transaction.rb', line 121 def operations @operations = @operations.map do |op| case op when Operation then op else; Operation.new(op) end end end |