class Movie

Attributes

rank[RW]
title[RW]

Public Class Methods

new(title,rank) click to toggle source
# File lib/mochee/mixins.rb, line 10
def initialize(title,rank)
        @title = title
        @rank = rank

end