cheepub 0.14.0 → 0.14.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +11 -13
- data/README.md +8 -0
- data/lib/cheepub/generator/epub.rb +1 -1
- data/lib/cheepub/markdown.rb +1 -1
- data/lib/cheepub/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ce6692dc7257fef6e9bb9d43c0c6180488677073060f90af2c0108043f8e828
|
4
|
+
data.tar.gz: 1e15db80ce4d5d9b949965d4a09a3640bacaa69b7df87911ee6f3d3a2241b826
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 63ec3b3ca0fd93be86e6406b0bd298b127c333739c8986d6e51cfb0a289186d39ba4427c734ab0acc322fe4f010a45487772a6ed4016087ebba1a00cf13c0869
|
7
|
+
data.tar.gz: 2cec7ed3b05311e9b7fea21b9a0dbfad18272b90745666bffaaed50c634200005335738032b1807f2a0a055bf4e2de8c2269b2c40e1252356552fb2a2f195092
|
data/.github/workflows/ruby.yml
CHANGED
@@ -15,19 +15,17 @@ on:
|
|
15
15
|
|
16
16
|
jobs:
|
17
17
|
test:
|
18
|
-
|
19
|
-
|
20
|
-
|
18
|
+
strategy:
|
19
|
+
fail-fast: false
|
20
|
+
matrix:
|
21
|
+
os: [ubuntu, macos]
|
22
|
+
ruby: [2.5, 2.6, 2.7]
|
23
|
+
runs-on: ${{ matrix.os }}-latest
|
24
|
+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
|
21
25
|
steps:
|
22
26
|
- uses: actions/checkout@v2
|
23
|
-
-
|
24
|
-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
|
25
|
-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
|
26
|
-
# uses: ruby/setup-ruby@v1
|
27
|
-
uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
|
27
|
+
- uses: ruby/setup-ruby@v1
|
28
28
|
with:
|
29
|
-
ruby-version:
|
30
|
-
|
31
|
-
|
32
|
-
- name: Run tests
|
33
|
-
run: bundle exec rake
|
29
|
+
ruby-version: ${{ matrix.ruby }}
|
30
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
31
|
+
- run: bundle exec rake
|
data/README.md
CHANGED
@@ -103,6 +103,14 @@ In a little district west of Washington Square the streets have run crazy and br
|
|
103
103
|
|
104
104
|
## History
|
105
105
|
|
106
|
+
### 0.14.1
|
107
|
+
|
108
|
+
- fix some warnings in Ruby
|
109
|
+
|
110
|
+
### 0.14.0
|
111
|
+
|
112
|
+
- update `kramdown`
|
113
|
+
|
106
114
|
### 0.13.0
|
107
115
|
|
108
116
|
- update `kramdown`, `gepub` and `rb_latex`
|
data/lib/cheepub/markdown.rb
CHANGED
data/lib/cheepub/version.rb
CHANGED
metadata
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cheepub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.14.
|
4
|
+
version: 0.14.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- takahashim
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
11
|
date: 2020-11-17 00:00:00.000000000 Z
|
@@ -293,7 +293,7 @@ files:
|
|
293
293
|
homepage: https://github.com/takahashim/cheepub
|
294
294
|
licenses: []
|
295
295
|
metadata: {}
|
296
|
-
post_install_message:
|
296
|
+
post_install_message:
|
297
297
|
rdoc_options: []
|
298
298
|
require_paths:
|
299
299
|
- lib
|
@@ -308,8 +308,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
308
308
|
- !ruby/object:Gem::Version
|
309
309
|
version: '0'
|
310
310
|
requirements: []
|
311
|
-
rubygems_version: 3.1
|
312
|
-
signing_key:
|
311
|
+
rubygems_version: 3.2.0.rc.1
|
312
|
+
signing_key:
|
313
313
|
specification_version: 4
|
314
314
|
summary: Simple EPUB/PDF generator from Markdown
|
315
315
|
test_files: []
|