kitabu 0.4.5 → 0.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/kitabu.gemspec +6 -5
- data/lib/kitabu.rb +2 -2
- metadata +3 -3
data/Rakefile
CHANGED
|
@@ -13,7 +13,7 @@ TXT
|
|
|
13
13
|
|
|
14
14
|
gem.authors = ["Nando Vieira"]
|
|
15
15
|
gem.email = "fnando.vieira@gmail.com"
|
|
16
|
-
gem.homepage = "http://fnando.github.com/kitabu.html"
|
|
16
|
+
gem.homepage = "http://fnando.github.com/public/kitabu.html"
|
|
17
17
|
|
|
18
18
|
gem.has_rdoc = false
|
|
19
19
|
gem.files = %w(Rakefile kitabu.gemspec VERSION README.markdown) + Dir["{bin,templates,lib}/**/*"]
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.4.
|
|
1
|
+
0.4.6
|
data/kitabu.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
|
-
# DO NOT EDIT THIS FILE
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{kitabu}
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.6"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Nando Vieira"]
|
|
12
|
-
s.date = %q{
|
|
12
|
+
s.date = %q{2010-01-07}
|
|
13
13
|
s.default_executable = %q{kitabu}
|
|
14
14
|
s.description = %q{A framework for creating e-books from Markdown/Textile text markup using Ruby.
|
|
15
15
|
With Prince PDF generator, you'll be able to get high quality PDFs.
|
|
@@ -465,7 +465,7 @@ With Prince PDF generator, you'll be able to get high quality PDFs.
|
|
|
465
465
|
"templates/themes/sunburst.css",
|
|
466
466
|
"templates/user.css"
|
|
467
467
|
]
|
|
468
|
-
s.homepage = %q{http://fnando.github.com/kitabu.html}
|
|
468
|
+
s.homepage = %q{http://fnando.github.com/public/kitabu.html}
|
|
469
469
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
470
470
|
s.require_paths = ["lib"]
|
|
471
471
|
s.rubygems_version = %q{1.3.5}
|
|
@@ -495,3 +495,4 @@ With Prince PDF generator, you'll be able to get high quality PDFs.
|
|
|
495
495
|
s.add_dependency(%q<activesupport>, [">= 2.3"])
|
|
496
496
|
end
|
|
497
497
|
end
|
|
498
|
+
|
data/lib/kitabu.rb
CHANGED
|
@@ -5,7 +5,7 @@ require "erb"
|
|
|
5
5
|
require "ostruct"
|
|
6
6
|
require "rexml/streamlistener"
|
|
7
7
|
require "rexml/document"
|
|
8
|
-
require "
|
|
8
|
+
require "active_support"
|
|
9
9
|
|
|
10
10
|
$:.unshift File.dirname(__FILE__)
|
|
11
11
|
|
|
@@ -46,5 +46,5 @@ rescue LoadError => e
|
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
module Kitabu
|
|
49
|
-
VERSION = "0.4.
|
|
49
|
+
VERSION = "0.4.6"
|
|
50
50
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitabu
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nando Vieira
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date:
|
|
12
|
+
date: 2010-01-07 00:00:00 -02:00
|
|
13
13
|
default_executable: kitabu
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -479,7 +479,7 @@ files:
|
|
|
479
479
|
- templates/themes/sunburst.css
|
|
480
480
|
- templates/user.css
|
|
481
481
|
has_rdoc: true
|
|
482
|
-
homepage: http://fnando.github.com/kitabu.html
|
|
482
|
+
homepage: http://fnando.github.com/public/kitabu.html
|
|
483
483
|
licenses: []
|
|
484
484
|
|
|
485
485
|
post_install_message:
|