Module: RoSupport::RoGuard::ClassMethods

Defined in:
lib/ro_support/ro_guard.rb

Instance Method Summary collapse

Instance Method Details

#def_meth(meth, &blk) ⇒ Object



55
56
57
58
59
# File 'lib/ro_support/ro_guard.rb', line 55

def def_meth(meth, &blk)
  define_singleton_method meth, &blk
  define_method meth, &blk
  Pry::Command.send :define_method, meth, &blk
end