Last active
December 20, 2016 02:13
-
-
Save thiagoa/f115449d7a5cf61ef1073dba34d6d350 to your computer and use it in GitHub Desktop.
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
module Imageable | |
def self.build(methods) | |
mod = Module.new do | |
methods.each do |method| | |
define_method method do | |
images.find { |image| image.kind == 'main_image' } | |
end | |
end | |
end | |
mod.define_singleton_method :included do |model_class| | |
model_class.has_many :images | |
end | |
mod | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment