-
Notifications
You must be signed in to change notification settings - Fork 7
/
yieldmanager.gemspec
27 lines (24 loc) · 1.1 KB
/
yieldmanager.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "yieldmanager/version"
Gem::Specification.new do |s|
s.name = "yieldmanager"
s.version = Yieldmanager::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Bill Gathen"]
s.email = ["bill@billgathen.com"]
s.homepage = "http://github.com/billgathen/yieldmanager"
s.summary = %q{YieldManager API Tool}
s.description = %q{This gem offers full access to YieldManager's API tools (read/write) as well as ad-hoc reporting through the Reportware tool}
s.license = "MIT"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
s.add_development_dependency("rake")
s.add_development_dependency("rspec")
s.add_development_dependency("rdoc")
s.add_runtime_dependency("nokogiri", [">= 1.5.5"])
s.add_runtime_dependency("mini_portile", [">= 0.6.0"])
s.add_runtime_dependency("soap4r", ["= 1.5.8"])
s.add_runtime_dependency("httpclient", [">= 2.5.3.2"]) # Remove SSLv3 support to prevent POODLE
end