Skip to content

Instantly share code, notes, and snippets.

@juanjo
Created January 21, 2011 13:21
Show Gist options
  • Select an option

  • Save juanjo/789661 to your computer and use it in GitHub Desktop.

Select an option

Save juanjo/789661 to your computer and use it in GitHub Desktop.
Create new class with a block
def create_class(class_name, superclass, &block)
klass = Class.new superclass, &block
Object.const_set class_name, klass
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment