Skip to content

Instantly share code, notes, and snippets.

@ScotterC
Created April 25, 2013 20:57
Show Gist options
  • Save ScotterC/5463107 to your computer and use it in GitHub Desktop.
Save ScotterC/5463107 to your computer and use it in GitHub Desktop.
Meta programming snippet
["x", "y", "w", "h"].each do |coord|
crop = "crop_#{coord}"
define_method crop do
self.coordinates[crop]
end
define_method "#{crop}=" do |int|
self.coordinates[crop] = int
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment