Created
April 25, 2013 20:57
-
-
Save ScotterC/5463107 to your computer and use it in GitHub Desktop.
Meta programming snippet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
["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