forked from shanesveller/webbynode-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webbynode-api.gemspec
87 lines (83 loc) · 2.59 KB
/
webbynode-api.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
79
80
81
82
83
84
85
86
87
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{webbynode-api}
s.version = "0.2.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Shane Sveller"]
s.date = %q{2009-07-22}
s.default_executable = %q{webby}
s.email = %q{[email protected]}
s.executables = ["webby"]
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
".document",
".gitignore",
"LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
"bin/webby",
"lib/webbynode-api.rb",
"lib/webbynode-api/data.rb",
"lib/webbynode-api/dns.rb",
"test/apiobject_test.rb",
"test/bin_test.rb",
"test/client_test.rb",
"test/data/bad-auth.xml",
"test/data/client.xml",
"test/data/dns/activate-zone.xml",
"test/data/dns/deactivate-zone.xml",
"test/data/dns/delete-record.xml",
"test/data/dns/delete-zone.xml",
"test/data/dns/dns-1.xml",
"test/data/dns/dns-records.xml",
"test/data/dns/dns.xml",
"test/data/dns/edit-zone.xml",
"test/data/dns/new-record.xml",
"test/data/dns/new-zone.xml",
"test/data/dns/record-1.xml",
"test/data/webbies.xml",
"test/data/webby-reboot.xml",
"test/data/webby-shutdown.xml",
"test/data/webby-start.xml",
"test/data/webby-status-off.xml",
"test/data/webby-status-reboot.xml",
"test/data/webby-status-shutdown.xml",
"test/data/webby-status.xml",
"test/dns_test.rb",
"test/test_helper.rb",
"test/webby_test.rb",
"webbynode-api.gemspec"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/shanesveller/webbynode-api}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.1}
s.summary = %q{wraps the WebbyNode API into nice Ruby objects}
s.test_files = [
"test/apiobject_test.rb",
"test/bin_test.rb",
"test/client_test.rb",
"test/dns_test.rb",
"test/test_helper.rb",
"test/webby_test.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<httparty>, [">= 0.4.3"])
s.add_runtime_dependency(%q<optiflag>, [">= 0.6.5"])
else
s.add_dependency(%q<httparty>, [">= 0.4.3"])
s.add_dependency(%q<optiflag>, [">= 0.6.5"])
end
else
s.add_dependency(%q<httparty>, [">= 0.4.3"])
s.add_dependency(%q<optiflag>, [">= 0.6.5"])
end
end