Skip to content

Instantly share code, notes, and snippets.

Created June 16, 2015 02:36
Show Gist options
  • Save anonymous/dc0b2c8f995eeed45efd to your computer and use it in GitHub Desktop.
Save anonymous/dc0b2c8f995eeed45efd to your computer and use it in GitHub Desktop.
class Client
extend DSLImplementation
my_objects.each do |item|
define_method(item.name) do
# stuff using the item
end
end
end
c = Client.new
c.my_item_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment