This repository has been archived by the owner on Jun 12, 2021. It is now read-only.
forked from blackwinter/athena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathathena.gemspec
39 lines (35 loc) · 2.01 KB
/
athena.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
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{athena}
s.version = "0.2.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = [%q{Jens Wille}]
s.date = %q{2011-07-27}
s.description = %q{Convert database files to various formats.}
s.email = %q{[email protected]}
s.executables = [%q{athena}]
s.extra_rdoc_files = [%q{README}, %q{COPYING}, %q{ChangeLog}]
s.files = [%q{lib/athena/record.rb}, %q{lib/athena/cli.rb}, %q{lib/athena/formats/xml.rb}, %q{lib/athena/formats/lingo.rb}, %q{lib/athena/formats/ferret.rb}, %q{lib/athena/formats/dbm.rb}, %q{lib/athena/formats/sql.rb}, %q{lib/athena/formats/sisis.rb}, %q{lib/athena/version.rb}, %q{lib/athena/parser.rb}, %q{lib/athena/formats.rb}, %q{lib/athena.rb}, %q{bin/athena}, %q{README}, %q{ChangeLog}, %q{Rakefile}, %q{COPYING}, %q{example/dump-my.sql}, %q{example/config.yaml}, %q{example/dump-pg.sql}, %q{example/example.xml}, %q{example/sisis-ex.txt}]
s.homepage = %q{http://prometheus.rubyforge.org/athena}
s.rdoc_options = [%q{--all}, %q{--main}, %q{README}, %q{--charset}, %q{UTF-8}, %q{--title}, %q{athena Application documentation (v0.2.1)}, %q{--line-numbers}]
s.require_paths = [%q{lib}]
s.rubyforge_project = %q{prometheus}
s.rubygems_version = %q{1.8.6}
s.summary = %q{Convert database files to various formats.}
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<builder>, [">= 0"])
s.add_runtime_dependency(%q<xmlstreamin>, [">= 0"])
s.add_runtime_dependency(%q<ruby-nuggets>, [">= 0.7.4"])
else
s.add_dependency(%q<builder>, [">= 0"])
s.add_dependency(%q<xmlstreamin>, [">= 0"])
s.add_dependency(%q<ruby-nuggets>, [">= 0.7.4"])
end
else
s.add_dependency(%q<builder>, [">= 0"])
s.add_dependency(%q<xmlstreamin>, [">= 0"])
s.add_dependency(%q<ruby-nuggets>, [">= 0.7.4"])
end
end