-
Notifications
You must be signed in to change notification settings - Fork 6
/
amazon_associate.gemspec
67 lines (63 loc) · 2.23 KB
/
amazon_associate.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{amazon_associate}
s.version = "0.7.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dan Pickett"]
s.date = %q{2009-08-01}
s.description = %q{interfaces with Amazon Associate's API using Hpricot}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
".autotest",
".gitignore",
".project",
"CHANGELOG",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"VERSION.yml",
"amazon_associate.gemspec",
"lib/amazon_associate.rb",
"lib/amazon_associate/cache_factory.rb",
"lib/amazon_associate/caching_strategy.rb",
"lib/amazon_associate/caching_strategy/base.rb",
"lib/amazon_associate/caching_strategy/filesystem.rb",
"lib/amazon_associate/configuration_error.rb",
"lib/amazon_associate/element.rb",
"lib/amazon_associate/request.rb",
"lib/amazon_associate/request_error.rb",
"lib/amazon_associate/response.rb",
"test/amazon_associate/browse_node_lookup_test.rb",
"test/amazon_associate/cache_test.rb",
"test/amazon_associate/caching_strategy/filesystem_test.rb",
"test/amazon_associate/cart_test.rb",
"test/amazon_associate/request_test.rb",
"test/test_helper.rb",
"test/utilities/filesystem_test_helper.rb"
]
s.homepage = %q{http://github.com/dpickett/amazon_associate}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Amazon Associates API Interface using Hpricot}
s.test_files = [
"test/amazon_associate/browse_node_lookup_test.rb",
"test/amazon_associate/cache_test.rb",
"test/amazon_associate/caching_strategy/filesystem_test.rb",
"test/amazon_associate/cart_test.rb",
"test/amazon_associate/request_test.rb",
"test/test_helper.rb",
"test/utilities/filesystem_test_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end