Sha256: 5e48e9b80e92e03123669b984160c3cc2a2464e1e1cfbe5a87a82ab998f03bbe

Contents?: true

Size: 375 Bytes

Versions: 11

Compression:

Stored size: 375 Bytes

Contents

class Conference
  # @dynamic title, year
  attr_reader :title
  attr_reader :year

  def initialize(title:, year:)
    @title = title
    @year = year
  end
end

Conference.new()


Konference

Konference.new()


# @type var foo: Konference

foo = Conference.new

class Conference12
  class Integer

  end
end

class HogeHoge
  def foo(...)
    bar(self, ...).to_s
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
steep-1.5.0 sample/lib/conference.rb
steep-1.5.0.pre.6 sample/lib/conference.rb
steep-1.5.0.pre.5 sample/lib/conference.rb
steep-1.5.0.pre.4 sample/lib/conference.rb
steep-1.5.0.pre.3 sample/lib/conference.rb
steep-1.5.0.pre.2 sample/lib/conference.rb
steep-1.5.0.pre.1 sample/lib/conference.rb
steep-1.4.0 sample/lib/conference.rb
steep-1.4.0.dev.5 sample/lib/conference.rb
steep-1.4.0.dev.4 sample/lib/conference.rb
steep-1.4.0.dev.3 sample/lib/conference.rb