jekyll-pandoc-multiple-formats-jekyll34 0.2.10 → 0.2.12
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.
- checksums.yaml +4 -4
- data/Gemfile +3 -0
- data/LICENSE +22 -0
- data/README.md +190 -0
- data/Rakefile +13 -0
- data/bin/imponer +62 -0
- data/jekyll-pandoc-multiple-formats-jekyll34-0.2.11.gem +0 -0
- data/jekyll-pandoc-multiple-formats-jekyll34.gemspec +29 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34.rb +37 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/binder.rb +45 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/config.rb +40 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/converter.rb +81 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/generator.rb +110 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/imposition.rb +97 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/pandoc_file.rb +276 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/printer.rb +105 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/unite.rb +70 -0
- data/lib/jekyll-pandoc-multiple-formats-jekyll34/version.rb +3 -0
- data/test/fixtures/test.pdf +0 -0
- data/test/source/_layouts/nil.html +1 -0
- data/test/source/_posts/2014-01-01-test.markdown +10 -0
- data/test/source/_posts/2015-01-01-another_post.markdown +11 -0
- data/test/test_helper.rb +37 -0
- data/test/test_pandoc_file.rb +106 -0
- data/test/test_printer.rb +483 -0
- metadata +38 -6
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-pandoc-multiple-formats-jekyll34
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 윤병익
|
@@ -101,11 +101,36 @@ description: |-
|
|
101
101
|
it doesn't require the 'pandoc-ruby' gem.
|
102
102
|
email:
|
103
103
|
- by_yeun@daum.net
|
104
|
-
executables:
|
104
|
+
executables:
|
105
|
+
- imponer
|
105
106
|
extensions: []
|
106
107
|
extra_rdoc_files: []
|
107
|
-
files:
|
108
|
-
|
108
|
+
files:
|
109
|
+
- Gemfile
|
110
|
+
- LICENSE
|
111
|
+
- README.md
|
112
|
+
- Rakefile
|
113
|
+
- bin/imponer
|
114
|
+
- jekyll-pandoc-multiple-formats-jekyll34-0.2.11.gem
|
115
|
+
- jekyll-pandoc-multiple-formats-jekyll34.gemspec
|
116
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34.rb
|
117
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/binder.rb
|
118
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/config.rb
|
119
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/converter.rb
|
120
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/generator.rb
|
121
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/imposition.rb
|
122
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/pandoc_file.rb
|
123
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/printer.rb
|
124
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/unite.rb
|
125
|
+
- lib/jekyll-pandoc-multiple-formats-jekyll34/version.rb
|
126
|
+
- test/fixtures/test.pdf
|
127
|
+
- test/source/_layouts/nil.html
|
128
|
+
- test/source/_posts/2014-01-01-test.markdown
|
129
|
+
- test/source/_posts/2015-01-01-another_post.markdown
|
130
|
+
- test/test_helper.rb
|
131
|
+
- test/test_pandoc_file.rb
|
132
|
+
- test/test_printer.rb
|
133
|
+
homepage:
|
109
134
|
licenses:
|
110
135
|
- MIT
|
111
136
|
metadata: {}
|
@@ -125,8 +150,15 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
125
150
|
version: '0'
|
126
151
|
requirements: []
|
127
152
|
rubyforge_project:
|
128
|
-
rubygems_version: 2.
|
153
|
+
rubygems_version: 2.6.11
|
129
154
|
signing_key:
|
130
155
|
specification_version: 4
|
131
156
|
summary: Use pandoc on jekyll to generate posts in multiple formats
|
132
|
-
test_files:
|
157
|
+
test_files:
|
158
|
+
- test/fixtures/test.pdf
|
159
|
+
- test/source/_layouts/nil.html
|
160
|
+
- test/source/_posts/2014-01-01-test.markdown
|
161
|
+
- test/source/_posts/2015-01-01-another_post.markdown
|
162
|
+
- test/test_helper.rb
|
163
|
+
- test/test_pandoc_file.rb
|
164
|
+
- test/test_printer.rb
|