Skip to content

Instantly share code, notes, and snippets.

@whalec
Created August 6, 2011 04:32
Show Gist options
  • Save whalec/1129014 to your computer and use it in GitHub Desktop.
Save whalec/1129014 to your computer and use it in GitHub Desktop.
Ruby Module implementation
module Attachments
def attachments
images.map do
{
:id => id,
:styles => styles,
:endpoint => endpoint,
}
end
end
end
#Then in the model you want to use it in... include Attachments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment