Skip to content

Commit

Permalink
release-0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitri Goutnik committed Jun 30, 2009
1 parent 0fd201a commit adfa3fb
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 52 deletions.
5 changes: 5 additions & 0 deletions History.txt
Expand Up @@ -11,3 +11,8 @@
== 0.3.1 / 2009-06-28

* Fixed App.data_path bug

== 0.3.2 / 2009-06-30

* Improved Win32 support
* Updated documentation
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -17,7 +17,7 @@ task :default => 'test:run'
PROJ.name = 'repub'
PROJ.authors = 'Dmitri Goutnik'
PROJ.email = 'dg@invisiblellama.net'
PROJ.url = 'http://github.com/invisiblellama/repub/tree/master'
PROJ.url = 'http://rubyforge.org/projects/repub/'
PROJ.version = Repub::VERSION
PROJ.rubyforge.name = 'repub'
PROJ.readme_file = 'README.rdoc'
Expand Down
2 changes: 1 addition & 1 deletion TODO
@@ -1,3 +1,3 @@
* add support for rx cleaning/modifying source doc
* make -q/-v actually do something
more parser tokens: author(s) etc
more parser tokens: author(s) etc ?
2 changes: 1 addition & 1 deletion lib/repub.rb
@@ -1,7 +1,7 @@
module Repub

# :stopdoc:
VERSION = '0.3.1'
VERSION = '0.3.2'
LIBPATH = File.expand_path(File.dirname(__FILE__)) + File::SEPARATOR
PATH = File.dirname(LIBPATH) + File::SEPARATOR
# :startdoc:
Expand Down
101 changes: 52 additions & 49 deletions repub.gemspec
@@ -1,49 +1,52 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{repub}
s.version = "0.3.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dmitri Goutnik"]
s.date = %q{2009-06-29}
s.default_executable = %q{repub}
s.description = %q{Repub is a simple HTML to ePub converter.
It doesn't try to guess the source document structure, you'll have to tell it where}
s.email = %q{dg@invisiblellama.net}
s.executables = ["repub"]
s.extra_rdoc_files = ["History.txt", "README.rdoc", "SAMPLES.txt", "bin/repub"]
s.files = [".eprj", "History.txt", "README.rdoc", "Rakefile", "SAMPLES.txt", "TODO", "bin/repub", "lib/repub.rb", "lib/repub/app.rb", "lib/repub/app/builder.rb", "lib/repub/app/fetcher.rb", "lib/repub/app/logger.rb", "lib/repub/app/options.rb", "lib/repub/app/parser.rb", "lib/repub/app/profile.rb", "lib/repub/app/utility.rb", "lib/repub/epub.rb", "lib/repub/epub/container.rb", "lib/repub/epub/content.rb", "lib/repub/epub/toc.rb", "repub.gemspec", "test/epub/test_container.rb", "test/epub/test_content.rb", "test/epub/test_toc.rb", "test/test_builder.rb", "test/test_fetcher.rb", "test/test_logger.rb", "test/test_parser.rb"]
s.homepage = %q{http://github.com/invisiblellama/repub/tree/master}
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_container.rb", "test/epub/test_content.rb", "test/epub/test_toc.rb", "test/test_builder.rb", "test/test_fetcher.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
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{repub}
s.version = "0.3.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Dmitri Goutnik"]
s.date = %q{2009-06-30}
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/logger.rb", "lib/repub/app/options.rb", "lib/repub/app/parser.rb", "lib/repub/app/profile.rb", "lib/repub/app/utility.rb", "lib/repub/epub.rb", "lib/repub/epub/container.rb", "lib/repub/epub/content.rb", "lib/repub/epub/toc.rb", "repub.gemspec", "test/epub/test_container.rb", "test/epub/test_content.rb", "test/epub/test_toc.rb", "test/test_builder.rb", "test/test_fetcher.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_container.rb", "test/epub/test_content.rb", "test/epub/test_toc.rb", "test/test_builder.rb", "test/test_fetcher.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

0 comments on commit adfa3fb

Please sign in to comment.