forked from savonrb/savon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
savon.gemspec
39 lines (32 loc) · 1.24 KB
/
savon.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
30
31
32
33
34
35
36
37
38
39
lib = File.expand_path("../lib", __FILE__)
$:.unshift lib unless $:.include? lib
require "savon/version"
Gem::Specification.new do |s|
s.name = "savon"
s.version = Savon::Version
s.authors = "Daniel Harrington"
s.email = "[email protected]"
s.homepage = "http://github.com/rubiii/#{s.name}"
s.summary = "Heavy metal Ruby SOAP client"
s.description = "Savon is the heavy metal Ruby SOAP client."
s.rubyforge_project = s.name
s.add_dependency "builder", ">= 2.1.2"
s.add_dependency "crack", "~> 0.1.8"
s.add_dependency "httpi", ">= 0.7.8"
s.add_dependency "gyoku", ">= 0.3.0"
# I'd rather use libxml2. Maybe through nokogiri (not yet available) or
# libxml-ruby (also not yet available).
#
# This might be an option:
# http://rubygems.org/gems/coupa-libxml-ruby
# (see http://stackoverflow.com/questions/3038757/canonicalizing-xml-in-ruby)
#
# XMLCanonicalizer did not work for me. See notes in
# lib/savon/wsse/canonicalizer.rb for more information.
# s.add_dependency "XMLCanonicalizer", "~> 1.0.1"
s.add_development_dependency "rspec", "~> 2.4.0"
s.add_development_dependency "mocha", "~> 0.9.8"
s.add_development_dependency "timecop", "~> 0.3.5"
s.files = `git ls-files`.split("\n")
s.require_path = "lib"
end