Flowdock
method

write_file

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::SOAP::WSDL2Ruby
write_file(filename) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/wsdl/soap/wsdl2ruby.rb, line 130
  def write_file(filename)
    if @basedir
      filename = File.join(basedir, filename)
    end
    File.open(filename, "w") do |f|
      yield f
    end
  end
Register or log in to add new notes.