Class: StubFile

Inherits:
File
  • Object
show all
Defined in:
lib/yard-sketchup/templates/stubs/fulldoc/text/setup.rb

Instance Method Summary collapse

Instance Method Details

#puts(*args) ⇒ Object



296
297
298
299
300
301
302
303
304
305
# File 'lib/yard-sketchup/templates/stubs/fulldoc/text/setup.rb', line 296

def puts(*args)
  case args.size
  when 0
    super
  when 1
    super trim_trailing_white_space(args[0].to_s)
  else
    raise NotImplementedError
  end
end