How can I pass a an array of strings as attributes when creating new instance of a class? Say I want to do something like this:
Person.new(person_attrs) #<= Wrong number of arguments. Expected 3, got 1
where person_attrs.inspect returns ['foo', 'bar', 'baz']