class Acme::Smileage::Discography::HelloProjectMusicAward

Attributes

points[R]
rank[R]
votes[R]
year[R]

Public Class Methods

new(year, rank, points, votes) click to toggle source
# File lib/acme/smileage/discography/hello_project_music_award.rb, line 8
def initialize(year, rank, points, votes)
  @year = year
  @rank = rank
  @points = points
  @votes = votes
end

Public Instance Methods

to_a() click to toggle source
# File lib/acme/smileage/discography/hello_project_music_award.rb, line 15
def to_a
  [self.year, self.rank, self.points, self.votes]
end