Changeset 1365
- Timestamp:
- 12/13/04 22:53:50 (4 years ago)
- Files:
-
- trunk/bin/wsdl2ruby.rb (modified) (4 diffs)
- trunk/bin/xsd2ruby.rb (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/bin/wsdl2ruby.rb
r1241 r1365 2 2 3 3 require 'getoptlong' 4 require 'logger' 4 5 require 'xsd/qname' 5 6 require 'wsdl/parser' … … 11 12 require 'wsdl/soap/standaloneServerStubCreator' 12 13 require 'wsdl/soap/cgiStubCreator' 13 14 require 'logger'15 14 16 15 class WSDL2RubyApp < Logger::Application … … 28 27 ['--force','-f', GetoptLong::NO_ARGUMENT], 29 28 ['--quiet','-q', GetoptLong::NO_ARGUMENT], 30 ]29 ] 31 30 32 31 def initialize … … 34 33 STDERR.sync = true 35 34 @wsdl_location = nil 36 @opt = {}35 @opt = nil 37 36 @wsdl = nil 38 37 @name = nil