mumboe / soap4r forked from swalterd/soap4r

Modified soap4r library to run on Ruby 1.9

This URL has Read+Write access

Xavier Shay (author)
Thu Jul 30 22:41:36 -0700 2009
mumboe (committer)
Fri Jul 31 13:29:46 -0700 2009
commit  65d023eac1061402505887dd7cf8b194332bdd6a
tree    74bcb02efda740d313173d11badaccc5917c4261
parent  66f1eda55f43a6fe2af31b69b569a16735ebb1bd
soap4r / soap4r.gemspec
100644 23 lines (21 sloc) 0.783 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# v0.2 gemspec for soap4r
# Walter Korman (shaper@waywardgeeks.org)
 
require 'rubygems'
SPEC = Gem::Specification.new do |s|
  s.name = "soap4r"
  s.version = "1.5.8.2"
  s.date = "2009-06-24"
  s.author = "Scott Diedrick (modifier: swalterd)"
  s.email = "swalterd@gmail.com"
  s.homepage = "http://dev.ctor.org/soap4r"
  s.platform = Gem::Platform::RUBY
  s.summary = "An implementation of SOAP 1.1 for Ruby."
  s.files = Dir.glob("{bin,lib,test}/**/*")
  s.require_path = "lib"
  s.executables = [ "wsdl2ruby.rb", "xsd2ruby.rb" ]
  # don't reference the test until we see it execute fully and successfully
  s.test_file = "test/runner.rb"
  # disable rdoc generation until we've got more
  s.has_rdoc = false
  s.add_dependency("httpclient", ">= 2.1.1")
end