-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathrepub.gemspec
More file actions
52 lines (47 loc) · 3.01 KB
/
repub.gemspec
File metadata and controls
52 lines (47 loc) · 3.01 KB
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
43
44
45
46
47
48
49
50
51
52
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{repub}
s.version = "0.3.5"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dmitri Goutnik"]
s.date = %q{2009-07-17}
s.default_executable = %q{repub}
s.description = %q{Repub is a simple HTML to ePub converter.
It lacks imagination and won't try to guess the source document structure, you will have to describe where to look
for title and table of contents. In return, it provides you with greater control over generated
ePub documents.}
s.email = %q{dg@invisiblellama.net}
s.executables = ["repub"]
s.extra_rdoc_files = ["History.txt", "README.rdoc", "bin/repub"]
s.files = ["History.txt", "README.rdoc", "Rakefile", "TODO", "bin/repub", "lib/repub.rb", "lib/repub/app.rb", "lib/repub/app/builder.rb", "lib/repub/app/fetcher.rb", "lib/repub/app/filter.rb", "lib/repub/app/logger.rb", "lib/repub/app/options.rb", "lib/repub/app/parser.rb", "lib/repub/app/post_filters.rb", "lib/repub/app/pre_filters.rb", "lib/repub/app/profile.rb", "lib/repub/app/utility.rb", "lib/repub/epub.rb", "lib/repub/epub/container_item.rb", "lib/repub/epub/ncx.rb", "lib/repub/epub/ocf.rb", "lib/repub/epub/opf.rb", "repub.gemspec", "test/data/custom.css", "test/data/invisiblellama.png", "test/data/test.css", "test/data/test.html", "test/epub/test_ncx.rb", "test/epub/test_ocf.rb", "test/epub/test_opf.rb", "test/test_builder.rb", "test/test_fetcher.rb", "test/test_filter.rb", "test/test_logger.rb", "test/test_parser.rb"]
s.homepage = %q{http://rubyforge.org/projects/repub/}
s.rdoc_options = ["--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{repub}
s.rubygems_version = %q{1.3.4}
s.summary = %q{Repub is a simple HTML to ePub converter}
s.test_files = ["test/epub/test_ncx.rb", "test/epub/test_ocf.rb", "test/epub/test_opf.rb", "test/test_builder.rb", "test/test_fetcher.rb", "test/test_filter.rb", "test/test_logger.rb", "test/test_parser.rb"]
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<nokogiri>, [">= 1.3.2"])
s.add_runtime_dependency(%q<builder>, [">= 2.1.2"])
s.add_runtime_dependency(%q<chardet>, [">= 0.9.0"])
s.add_runtime_dependency(%q<launchy>, [">= 0.3.3"])
s.add_development_dependency(%q<bones>, [">= 2.5.1"])
else
s.add_dependency(%q<nokogiri>, [">= 1.3.2"])
s.add_dependency(%q<builder>, [">= 2.1.2"])
s.add_dependency(%q<chardet>, [">= 0.9.0"])
s.add_dependency(%q<launchy>, [">= 0.3.3"])
s.add_dependency(%q<bones>, [">= 2.5.1"])
end
else
s.add_dependency(%q<nokogiri>, [">= 1.3.2"])
s.add_dependency(%q<builder>, [">= 2.1.2"])
s.add_dependency(%q<chardet>, [">= 0.9.0"])
s.add_dependency(%q<launchy>, [">= 0.3.3"])
s.add_dependency(%q<bones>, [">= 2.5.1"])
end
end