Sha256: 3e73b49e908ceb0230e98a7cdb85085574b0c71f7e1cb6cec91c631a06972d79

Contents?: true

Size: 266 Bytes

Versions: 3

Compression:

Stored size: 266 Bytes

Contents

class Foo

  def penultimate_method
    ultimate_method
  end

  def initial_method
    penultimate_method
    penultimate_method
    penultimate_method
  end

  def external_call
    Bar.new.say_hello
  end

  private

  def ultimate_method
    self.to_s
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
society-0.13.2 spec/fixtures/foo.rb
society-0.13.1 spec/fixtures/foo.rb
society-0.13.0 spec/fixtures/foo.rb