Skip to content

Instantly share code, notes, and snippets.

@vladiim
Created May 19, 2012 00:29
Show Gist options
  • Select an option

  • Save vladiim/2728306 to your computer and use it in GitHub Desktop.

Select an option

Save vladiim/2728306 to your computer and use it in GitHub Desktop.
module Component
def decorate_with(*decorators)
decorators.inject(self) do |object, decorator|
decorator.new(object)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment