forked from rubyjedi/soap4r
-
Notifications
You must be signed in to change notification settings - Fork 1
/
soap4r.gemspec
29 lines (22 loc) · 1.06 KB
/
soap4r.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'rubygems'
require File.join(File.dirname(__FILE__), 'lib', 'soap', 'version')
PKG_NAME = 'rubyjedi-soap4r'
PKG_BUILD = ENV['PKG_BUILD'] ? ".#{ENV['PKG_BUILD']}" : ".#{Time.now.strftime('%Y%m%d%H%M%S')}"
PKG_VERSION = SOAP::VERSION::STRING + PKG_BUILD
SPEC = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = PKG_NAME
s.summary = "An updated implementation of SOAP 1.1 for Ruby 1.8 and 1.9."
s.version = PKG_VERSION
s.author = "Laurence A. Lee, Hiroshi NAKAMURA"
s.email = "[email protected], [email protected]"
s.homepage = "http://wiki.github.com/rubyjedi/soap4r"
s.add_dependency("httpclient", "~> 2.1.5.2")
s.has_rdoc = false # disable rdoc generation until we've got more
s.requirements << 'none'
s.require_path = 'lib'
s.executables = [ "wsdl2ruby.rb", "xsd2ruby.rb" ]
s.files = Dir.glob("{bin,lib,test}/**/*").delete_if { |item| item.match( /\.(svn|git)/ ) }
# don't reference the test until we see it execute fully and successfully
# s.test_file = "test/runner.rb"
end