Sha256: 01a42e54efa2db996a1b35d2c321097ec96f5b40ce5dfe91b1e334d3ddbe995a

Contents?: true

Size: 135 Bytes

Versions: 5

Compression:

Stored size: 135 Bytes

Contents

class MultiplicationCommand
  prepend EasyCommand

  def call
    @a * @b
  end

  def initialize(a,b)
    @a = a
    @b = b
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
easy_command-1.0.1 spec/factories/multiplication_command.rb
easy_command-1.0.0 spec/factories/multiplication_command.rb
easy_command-1.0.0.pre.rc3 spec/factories/multiplication_command.rb
easy_command-1.0.0.pre.rc2 spec/factories/multiplication_command.rb
easy_command-1.0.0.pre.rc1 spec/factories/multiplication_command.rb