1class Movie 2 attr_reader :title 3 4 def initialize(attributes) 5 @title, @studio = attributes.values_at(:title, :studio) 6 end 7 8 def ==(other) 9 title == other.title 10 end 11end