Module: RoSupport::RoGuard::ClassMethods

Defined in:
lib/ro_support/ro_guard.rb

Instance Method Summary collapse

Instance Method Details

#def_meth(meth, &blk) ⇒ Object



116
117
118
119
120
# File 'lib/ro_support/ro_guard.rb', line 116

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