Sha256: 01bbe6982522561d4478c48d6470a5f043597cea361059c7a14e4d8bf8305450

Contents?: true

Size: 265 Bytes

Versions: 11

Compression:

Stored size: 265 Bytes

Contents

# frozen_string_literal: true

class InstanceMethod
  def to_s
    'Instance Method fixture'
  end

  def say_default
    'default'
  end

  def say_echo(arg)
    arg.to_s
  end

  def say_kw(kw: 'kw')
    kw.to_s
  end

  def say_block(&block)
    yield
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
appmap-0.34.0 spec/fixtures/hook/instance_method.rb
appmap-0.33.0 spec/fixtures/hook/instance_method.rb
appmap-0.32.0 spec/fixtures/hook/instance_method.rb
appmap-0.31.0 spec/fixtures/hook/instance_method.rb
appmap-0.28.1 spec/fixtures/hook/instance_method.rb
appmap-0.28.0 spec/fixtures/hook/instance_method.rb
appmap-0.27.0 spec/fixtures/hook/instance_method.rb
appmap-0.26.1 spec/fixtures/hook/instance_method.rb
appmap-0.26.0 spec/fixtures/hook/instance_method.rb
appmap-0.25.2 spec/fixtures/hook/instance_method.rb
appmap-0.25.0 spec/fixtures/hook/instance_method.rb