-
Notifications
You must be signed in to change notification settings - Fork 1
/
wikibot.gemspec
42 lines (38 loc) · 2.02 KB
/
wikibot.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
# -*- encoding: utf-8 -*-
require 'lib/wikibot/version'
Gem::Specification.new do |s|
s.name = %q{wikibot}
s.version = WikiBot::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Daniel Vandersluis"]
s.description = %q{Mediawiki Bot framework}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README.textile", "lib/wikibot.rb", "lib/wikibot/core/bot.rb", "lib/wikibot/core/category.rb", "lib/wikibot/core/page.rb", "lib/wikibot/ext/hash.rb", "lib/wikibot/vendor/openhash.rb", "lib/wikibot/version.rb"]
s.files = ["README.textile", "Rakefile", "lib/wikibot.rb", "lib/wikibot/core/bot.rb", "lib/wikibot/core/category.rb", "lib/wikibot/core/page.rb", "lib/wikibot/ext/hash.rb", "lib/wikibot/vendor/openhash.rb", "lib/wikibot/version.rb", "wikibot.gemspec", "Manifest"]
s.homepage = %q{http://github.com/dvandersluis/wikibot}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Wikibot", "--main", "README.textile"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{wikibot}
s.rubygems_version = %q{1.3.7}
s.summary = %q{Mediawiki Bot framework}
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(%q<curb>, [">= 0.5.4.0"])
s.add_runtime_dependency(%q<xml-simple>, [">= 1.0.12"])
s.add_runtime_dependency(%q<deep_merge>, [">= 0.1.0"])
s.add_runtime_dependency(%q<andand>, [">= 1.3.1"])
else
s.add_dependency(%q<curb>, [">= 0.5.4.0"])
s.add_dependency(%q<xml-simple>, [">= 1.0.12"])
s.add_dependency(%q<deep_merge>, [">= 0.1.0"])
s.add_dependency(%q<andand>, [">= 1.3.1"])
end
else
s.add_dependency(%q<curb>, [">= 0.5.4.0"])
s.add_dependency(%q<xml-simple>, [">= 1.0.12"])
s.add_dependency(%q<deep_merge>, [">= 0.1.0"])
s.add_dependency(%q<andand>, [">= 1.3.1"])
end
end