Sha256: 27864626579a3c5b4c25c0cde35f287e46d361aadc842b8dd20e3489a00d081e

Contents?: true

Size: 356 Bytes

Versions: 3

Compression:

Stored size: 356 Bytes

Contents

module Lol
  class Talent < Model

    # @!attribute [r] id
    #   @return [Fixnum] id of talent
    attr_reader :id

    # @!attribute [r] name
    #   @return [String] name of talent
    attr_reader :name

    # @!attribute [r] rank
    #   @return [Fixnum] rank of talent
    attr_reader :rank

    private

    attr_writer :id, :name, :rank
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-lol-0.9.4 lib/lol/talent.rb
ruby-lol-0.9.3 lib/lol/talent.rb
ruby-lol-0.9.1 lib/lol/talent.rb