Method: Cielli::Utils#sys
- Defined in:
- lib/cielli/utils.rb
#sys(*args, &block) ⇒ Object
205 206 207 208 209 210 211 212 213 214 215 216 |
# File 'lib/cielli/utils.rb', line 205 def sys(*args, &block) opts = (args) opts[:quiet] = true args.push(opts) begin sys!(*args, &block) rescue Object false end end |