thepub 0.0.0 → 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +3 -3
- data/VERSION +1 -1
- data/lib/thepub/epub/opf.rb +1 -1
- data/thepub.gemspec +2 -2
- metadata +2 -2
data/README.markdown
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
|
1
|
+
# thepub
|
2
2
|
|
3
3
|
Nothing more than a direct extraction of [Repub's](http://github.com/invisiblellama/repub) epub module and associated tests.
|
4
4
|
|
5
|
-
|
5
|
+
## Note on Patches/Pull Requests
|
6
6
|
|
7
7
|
* Fork the project.
|
8
8
|
* Make your feature addition or bug fix.
|
@@ -13,6 +13,6 @@ Nothing more than a direct extraction of [Repub's](http://github.com/invisiblell
|
|
13
13
|
bump version in a commit by itself I can ignore when I pull)
|
14
14
|
* Send me a pull request. Bonus points for topic branches.
|
15
15
|
|
16
|
-
|
16
|
+
## Copyright
|
17
17
|
|
18
18
|
Copyright (c) 2010 Dmitri Goutnik, Invisible Llama. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
data/lib/thepub/epub/opf.rb
CHANGED
@@ -56,7 +56,7 @@ module Thepub
|
|
56
56
|
builder.dc :relation do
|
57
57
|
builder << self.relation
|
58
58
|
end if self.relation
|
59
|
-
builder.dc :creator do
|
59
|
+
builder.dc :creator, 'opf:role' => "aut" do # TODO: roles
|
60
60
|
builder << self.creator
|
61
61
|
end if self.creator
|
62
62
|
builder.dc :publisher do
|
data/thepub.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{thepub}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Dmitri Goutnik, Invisible Llama", "William Melody"]
|
12
|
-
s.date = %q{2010-02-
|
12
|
+
s.date = %q{2010-02-06}
|
13
13
|
s.description = %q{Extraction of Repub's epub module and associated tests}
|
14
14
|
s.email = %q{hi@williammelody.com}
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thepub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dmitri Goutnik, Invisible Llama
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2010-02-
|
13
|
+
date: 2010-02-06 00:00:00 -06:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|