Method: Webservice::Base#dump_version

Defined in:
lib/webservice/base/base.rb

#dump_versionObject


105
106
107
108
109
110
111
112
113
# File 'lib/webservice/base/base.rb', line 105

def dump_version
  ## single line version string
  buf = "  "   # note: start with two leading spaces (indent)
  buf << "webservice/#{VERSION} "
  buf << "(#{self.class.environment}), "
  buf << "rack/#{Rack::RELEASE} (#{Rack::VERSION.join('.')}) - "
  buf << "ruby/#{RUBY_VERSION} (#{RUBY_RELEASE_DATE}/#{RUBY_PLATFORM})"
  buf
end