forked from hemanth/xkcd-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xkcd.gemspec
31 lines (27 loc) · 951 Bytes
/
xkcd.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
Gem::Specification.new do |s|
s.name = "xkcd"
s.version = "1.1.1"
s.default_executable = "xkcd"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Hemanth.HM"]
s.date = %q{2012-05-20}
s.description = %q{A simple gem to get random img/comic url from xkcd}
s.email = %q{[email protected]}
s.files = ["Rakefile", "lib/xkcd.rb", "bin/xkcd"]
s.test_files = Dir.glob('test/*.rb')
s.homepage = %q{http://rubygems.org/gems/xkcd}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.6.2}
s.add_dependency('nokogiri', '>= 1.5.0')
s.add_dependency('google-search')
s.summary = %q{XCKD random img urls!}
s.bindir = 'bin'
s.executables = 'xkcd'
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end