Slide 7
Slide 7 text
class Profile < TomsSchemaGem
plugin LabelPlugin
attribute :name, :label => "Name"
attribute :socials do
label "Social media"
attribute :twitter, :label => "Twitter"
attribute :mastodon, :label => "Mastodon"
end
end
profile = Profile.new(...)
profile.name.label # => "Name"
profile.name.value # => "Tom de Bruijn"
profile.socials.twitter.value # => "@tombruijn"