Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/ramaze/snippets/metaid.rb
Overview
Instance Method Summary collapse
- 
  
    
      #class_def(name, &blk)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Defines an instance method within a class. 
- 
  
    
      #meta_def(name, &blk)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Adds methods to a metaclass. 
- #meta_eval(&blk) ⇒ Object
- 
  
    
      #metaclass  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    The hidden singleton lurks behind everyone. 
Instance Method Details
#class_def(name, &blk) ⇒ Object
Defines an instance method within a class
| 14 15 16 | # File 'lib/ramaze/snippets/metaid.rb', line 14 def class_def name, &blk class_eval { define_method name, &blk } end | 
#meta_def(name, &blk) ⇒ Object
Adds methods to a metaclass
| 9 10 11 | # File 'lib/ramaze/snippets/metaid.rb', line 9 def name, &blk { define_method name, &blk } end | 
#meta_eval(&blk) ⇒ Object
| 6 | # File 'lib/ramaze/snippets/metaid.rb', line 6 def &blk; .instance_eval(&blk); end | 
#metaclass ⇒ Object
The hidden singleton lurks behind everyone
| 5 | # File 'lib/ramaze/snippets/metaid.rb', line 5 def ; class << self; self; end; end |