-
Notifications
You must be signed in to change notification settings - Fork 1
/
gnap.gemspec
27 lines (26 loc) · 995 Bytes
/
gnap.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
Gem::Specification.new do |s|
s.name = "gnap"
s.author = "Ehren Murdick"
s.email = "[email protected]"
s.version = "0.4.5"
s.files = Dir.glob("lib/**/*.rb")
s.require_paths = ["lib"]
s.summary = "Gnap is a interface to the Gnip api"
if s.respond_to? :specification_version
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0')
s.add_runtime_dependency(%q<activesupport>, [">= 2.2.2"])
s.add_runtime_dependency(%q<builder>, [">= 2.1.2"])
s.add_runtime_dependency(%q<hpricot>, [">= 0.8.1"])
else
s.add_dependency(%q<activesupport>, [">= 2.2.2"])
s.add_dependency(%q<builder>, [">= 2.1.2"])
s.add_dependency(%q<hpricot>, [">= 0.8.1"])
end
else
s.add_dependency(%q<activesupport>, [">= 2.2.2"])
s.add_dependency(%q<builder>, [">= 2.1.2"])
s.add_dependency(%q<hpricot>, [">= 0.8.1"])
end
end