This course will be retired on June 1, 2025.
Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
Start a free Courses trial
to watch this video
In Ruby, a Struct is a shortcut to creating a class with accessor methods. You could create these yourself using simple classes but structs save you a bit of time.
Links
Code Samples
Here is our struct:
Customer = Struct.new(:name, :email) do
def name_with_email
"#{name} <#{email}>"
end
end
We can then create a new instance and iterate through the attributes:
customer = Customer.new("Jason", "jason@teamtreehouse.com")
customer.each_pair do |name, value|
puts "#{name} - #{value}"
end
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign upRelated Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up