Top Level Namespace
Defined Under Namespace
Classes: Cmds
Instance Method Summary collapse
- #Cmds(template, *args, **kwds, &input_block) ⇒ Object
- #Cmds!(template, *args, **kwds, &io_block) ⇒ Object
- #Cmds?(template, *args, **kwds, &io_block) ⇒ Boolean
Instance Method Details
#Cmds(template, *args, **kwds, &input_block) ⇒ Object
7 8 9 |
# File 'lib/cmds/sugar.rb', line 7 def Cmds template, *args, **kwds, &input_block Cmds.capture template, *args, **kwds, &input_block end |
#Cmds!(template, *args, **kwds, &io_block) ⇒ Object
19 20 21 |
# File 'lib/cmds/sugar.rb', line 19 def Cmds! template, *args, **kwds, &io_block Cmds.assert template, *args, **kwds, &io_block end |
#Cmds?(template, *args, **kwds, &io_block) ⇒ Boolean
13 14 15 |
# File 'lib/cmds/sugar.rb', line 13 def Cmds? template, *args, **kwds, &io_block Cmds.ok? template, *args, **kwds, &io_block end |