Guest User

Untitled

a guest
Jan 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. class Describe
  2. attr_reader :context_name
  3.  
  4. def initialize(context_name, &block)
  5. @context_name = context_name
  6. instance_eval &block
  7. end
  8. end
Add Comment
Please, Sign In to add comment