public
Description: initially importing soap4r subversion here, later plan to fork it and add features and improve speed
Homepage: http://blog.railsfactory.com
Clone URL: git://github.com/railsfactory/soap4r.git
soap4r / soap4r.gemspec
100644 23 lines (21 sloc) 0.763 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"
  s.date = "2007-09-24"
  s.author = "NAKAMURA, Hiroshi"
  s.email = "nahi@ruby-lang.org"
  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