Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Last active December 20, 2016 02:14
Show Gist options
  • Save thiagoa/bcef9b3d054be440057e17606cad95d1 to your computer and use it in GitHub Desktop.
Save thiagoa/bcef9b3d054be440057e17606cad95d1 to your computer and use it in GitHub Desktop.
class ModuleFactory < Module
def initialize
define_a_method
end
private
def define_a_method
module_eval do
def my_method
# Do something...
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment