This is in response to your question about initializing a new instance of a class, and correspondingly passing in parameters that are initialized with the class. Let's take an example below:
class Person
def initialize(name)
@name = name
end
end