-
Notifications
You must be signed in to change notification settings - Fork 0
/
savon_fixes.gemspec
33 lines (26 loc) · 1.02 KB
/
savon_fixes.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
# encoding: utf-8
$:.unshift File.expand_path('../lib', __FILE__)
require 'savon_fixes/version'
Gem::Specification.new do |s|
s.name = 'savon_fixes'
s.version = SavonFixes::VERSION
s.authors = ['Lukas Oberhuber']
s.email = ['lukaso@gmail.com']
s.homepage = 'https://github.com/lukaso/savon_fixes'
s.licenses = ['MIT']
s.summary = 'Patches the Savon gem so fixes are included'
s.description = 'Patches the Savon gem so fixes are included'
s.files = Dir.glob('{bin/*,lib/**/*,[A-Z]*}')
s.platform = Gem::Platform::RUBY
s.require_paths = ['lib']
s.add_runtime_dependency 'savon', '2.12.0'
# from Savon
s.add_development_dependency "rack"
s.add_development_dependency "puma", "~> 3.0"
s.add_development_dependency "rake", "~> 10.1"
s.add_development_dependency "rspec", "~> 2.14"
s.add_development_dependency "mocha", "~> 0.14"
s.add_development_dependency "json", "~> 1.7"
# from Savon fixes
s.add_development_dependency 'pry', '~> 0'
end