Sha256: fb1c8b119b2d759d59de8ef778eb22c9cca1ee50d7c799d979c7b9b46762550e

Contents?: true

Size: 369 Bytes

Versions: 72

Compression:

Stored size: 369 Bytes

Contents

class Foo
  # A complicated method
  def complicated(o, i, *args, &block)
    # ... snip ...
  end

  # The problem here is that ...
  #
  # @param *names [Array]
  # @return [String]
  def method_with_splat_parameter(*names)
  end

  # The problem here is that ...
  #
  # @param names [Array]
  # @return [String]
  def method_with_splat_parameter2(*names)
  end
end

Version data entries

72 entries across 72 versions & 1 rubygems

Version Path
inch-0.9.0.rc1 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.8.0 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.8.0.rc2 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.8.0.rc1 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.7.1 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.7.0 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.4 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.3 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.2 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.1 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.0 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.0.rc6 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.0.rc5 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.0.rc4 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.0.rc3 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.0.rc2 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.6.0.rc1 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.5.10 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.5.9 test/fixtures/ruby/parameters/lib/foo.rb
inch-0.5.8 test/fixtures/ruby/parameters/lib/foo.rb