soap5r 2.0.0.20120130130121 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ pkg
data/lib/soap/version.rb CHANGED
@@ -1,9 +1,4 @@
1
1
  # encoding: ASCII-8BIT
2
2
  module SOAP
3
- module VERSION #:nodoc:
4
- MAJOR = 2
5
- MINOR = 0
6
- TINY = 0
7
- STRING = [MAJOR, MINOR, TINY].join('.')
8
- end
3
+ VERSION = "2.0.1" unless SOAP.const_defined?("VERSION")
9
4
  end
data/lib/soap5r.rb ADDED
@@ -0,0 +1,3 @@
1
+
2
+
3
+ require File.dirname(__FILE__) + "/soap/version"
data/soap5r.gemspec CHANGED
@@ -4,7 +4,7 @@ require File.join(File.dirname(__FILE__), 'lib', 'soap', 'version')
4
4
  SPEC = Gem::Specification.new do |s|
5
5
  s.platform = Gem::Platform::RUBY
6
6
  s.name = 'soap5r'
7
- s.version = SOAP::VERSION::STRING + (ENV['PKG_BUILD'] ? ".#{ENV['PKG_BUILD']}" : ".#{Time.now.strftime('%Y%m%d%H%M%S')}")
7
+ s.version = SOAP::VERSION
8
8
  s.summary = "An updated implementation of SOAP 1.1 for Ruby 1.8 and 1.9."
9
9
  s.description = "An updated implementation of SOAP 1.1 for Ruby 1.8 and 1.9."
10
10
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soap5r
3
3
  version: !ruby/object:Gem::Version
4
- hash: 40240260260349
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
- - 0
10
- - 20120130130121
11
- version: 2.0.0.20120130130121
9
+ - 1
10
+ version: 2.0.1
12
11
  platform: ruby
13
12
  authors:
14
13
  - Andrew Forward
@@ -106,6 +105,7 @@ extensions: []
106
105
  extra_rdoc_files: []
107
106
 
108
107
  files:
108
+ - .gitignore
109
109
  - COPYING
110
110
  - GPL
111
111
  - RELEASE_en.html
@@ -167,6 +167,7 @@ files:
167
167
  - lib/soap/streamHandler.rb
168
168
  - lib/soap/version.rb
169
169
  - lib/soap/wsdlDriver.rb
170
+ - lib/soap5r.rb
170
171
  - lib/wsdl/binding.rb
171
172
  - lib/wsdl/data.rb
172
173
  - lib/wsdl/definitions.rb