-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroo-tools.gemspec
38 lines (34 loc) · 1.36 KB
/
roo-tools.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{roo-tools}
s.version = "0.2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Hugh McGowan"]
s.date = %q{2009-07-21}
s.default_executable = %q{oogrep}
s.description = %q{Tools using roo to performa actions on multiple spreadsheets}
s.email = %q{hugh_mcgowan@yahoo.com}
s.executables = ["oogrep"]
s.extra_rdoc_files = ["README"]
s.files = ["lib/roo-tools", "lib/roo-tools/grep.rb", "lib/roo-tools.rb", "bin/oogrep", "README"]
s.homepage = %q{}
s.rdoc_options = ["--main", "README", "--inline-source", "--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{roo-tools}
s.rubygems_version = %q{1.3.3}
s.summary = %q{roo-tools}
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
s.add_runtime_dependency(%q<roo>, [">= 1.2.3"])
s.add_runtime_dependency(%q<user-choices>, [">= 1.1.6"])
else
s.add_dependency(%q<roo>, [">= 1.2.3"])
s.add_dependency(%q<user-choices>, [">= 1.1.6"])
end
else
s.add_dependency(%q<roo>, [">= 1.2.3"])
s.add_dependency(%q<user-choices>, [">= 1.1.6"])
end
end