class NewYorkFilms::Screening
Attributes
director[RW]
length[RW]
location[RW]
theater[RW]
times[RW]
title[RW]
website[RW]
year[RW]
Public Class Methods
new(attributes = {})
click to toggle source
# File lib/new_york_films/screening.rb, line 3 def initialize(attributes = {}) @theater = attributes[:theater] @title = attributes[:title] @director = attributes[:director] @times = attributes[:times] @year = attributes[:year] @length = attributes[:length] @website = attributes[:website] @location = attributes[:location] end