Sha256: a28934ad5ab488e5d26409b73f09fdf7e697f0172bf638634ab9852a6a86822b

Contents?: true

Size: 180 Bytes

Versions: 66

Compression:

Stored size: 180 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()

Version data entries

66 entries across 66 versions & 1 rubygems

Version Path
steep-1.3.2 sample/lib/conference.rb
steep-1.3.1 sample/lib/conference.rb
steep-1.4.0.dev.1 sample/lib/conference.rb
steep-1.3.0 sample/lib/conference.rb
steep-1.3.0.pre.2 sample/lib/conference.rb
steep-1.3.0.pre.1 sample/lib/conference.rb
steep-1.2.1 sample/lib/conference.rb
steep-1.2.0 sample/lib/conference.rb
steep-1.2.0.pre.1 sample/lib/conference.rb
steep-1.1.1 sample/lib/conference.rb
steep-1.1.0 sample/lib/conference.rb
steep-1.1.0.pre.1 sample/lib/conference.rb
steep-1.0.2 sample/lib/conference.rb
steep-1.0.1 sample/lib/conference.rb
steep-1.0.0 sample/lib/conference.rb
steep-0.52.2 sample/lib/conference.rb
steep-0.52.1 sample/lib/conference.rb
steep-0.52.0 sample/lib/conference.rb
steep-0.51.0 sample/lib/conference.rb
steep-0.50.0 sample/lib/conference.rb