Parent

Methods

Files

File

RubyPlus 0.2 later

Public Class Methods

puts(filename, obj, mode = 'w') click to toggle source

(Not documented)

# File rubyplus/filewrite.rb, line 10
        def self.puts(filename, obj, mode = 'w')
                open(filename, mode){|f|
                        f.puts obj
                }
        end
write(filename, str, mode = 'w') click to toggle source

(Not documented)

# File rubyplus/filewrite.rb, line 4
        def self.write(filename, str, mode = 'w')
                open(filename, mode){|f|
                        f.write str
                }
        end

Disabled; run with $DEBUG to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.