forked from mtodd/pingdom-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pingdom-client.gemspec
78 lines (72 loc) · 2.69 KB
/
pingdom-client.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Gem::Specification.new do |s|
s.name = %q{pingdom-client}
s.version = "0.0.6.alpha.af2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Matt Todd"]
s.date = %q{2011-03-02}
s.description = %q{Pingdom Ruby Client}
s.email = %q{[email protected]}
s.files = [
"pingdom-client.gemspec",
"Gemfile",
"Gemfile.lock",
"lib/pingdom/base.rb",
"lib/pingdom/check.rb",
"lib/pingdom/client.rb",
"lib/pingdom/contact.rb",
"lib/pingdom/probe.rb",
"lib/pingdom/result.rb",
"lib/pingdom/summary/average.rb",
"lib/pingdom/summary/outage.rb",
"lib/pingdom/summary/performance.rb",
"lib/pingdom/summary.rb",
"lib/pingdom-client.rb",
"lib/pingdom.rb",
"lib/tinder/faraday_response.rb",
"Rakefile",
"Readme.md",
"spec/pingdom-client_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/mtodd/pingdom-client}
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Pingdom Ruby Client}
s.test_files = [
"spec/spec_helper.rb",
"spec/pingdom-client_spec.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency("faraday", ["~> 0.5.7"])
s.add_runtime_dependency("excon", ["~> 0.6.4"])
s.add_runtime_dependency("yajl-ruby", ["~> 0.8.1"])
s.add_runtime_dependency("activesupport", [">= 3.0.4"])
s.add_runtime_dependency("i18n", [">= 0.5.0"])
s.add_development_dependency("bundler", ["~> 1.0.0"])
s.add_development_dependency("rake", ["~> 0.8.7"])
s.add_development_dependency("rspec", ["= 2.1.0"])
else
s.add_dependency("faraday", ["~> 0.5.7"])
s.add_dependency("excon", ["~> 0.6.4"])
s.add_dependency("yajl-ruby", ["~> 0.8.1"])
s.add_dependency("activesupport", [">= 3.0.4"])
s.add_dependency("i18n", [">= 0.5.0"])
s.add_dependency("bundler", ["~> 1.0.0"])
s.add_dependency("rake", ["~> 0.8.7"])
s.add_dependency("rspec", ["= 2.1.0"])
end
else
s.add_dependency("faraday", ["~> 0.5.7"])
s.add_dependency("excon", ["~> 0.6.4"])
s.add_dependency("yajl-ruby", ["~> 0.8.1"])
s.add_dependency("activesupport", [">= 3.0.4"])
s.add_dependency("i18n", [">= 0.5.0"])
s.add_dependency("bundler", ["~> 1.0.0"])
s.add_dependency("rake", ["~> 0.8.7"])
s.add_dependency("rspec", ["= 2.1.0"])
end
end