Skip to content

Instantly share code, notes, and snippets.

@jagira
Created August 3, 2010 13:25
Show Gist options
  • Save jagira/506365 to your computer and use it in GitHub Desktop.
Save jagira/506365 to your computer and use it in GitHub Desktop.
def create_extension_modules(association_id, block_extension, extensions)
if block_extension
extension_module_name = "#{self.to_s.demodulize}#{association_id.to_s.camelize}AssociationExtension"
silence_warnings do
self.parent.const_set(extension_module_name, Module.new(&block_extension))
end
Array.wrap(extensions).push("#{self.parent}::#{extension_module_name}".constantize)
else
Array.wrap(extensions)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment