cheepub 0.14.0 → 0.14.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1015b4ec48bfa86664b7f668a72577449950595770dadae33c5a5ae3b179ceb6
4
- data.tar.gz: 35098a489d44ab31873a55fa7c570c5a745a576df2f7e8ccc2da7179a708ec41
3
+ metadata.gz: 3ce6692dc7257fef6e9bb9d43c0c6180488677073060f90af2c0108043f8e828
4
+ data.tar.gz: 1e15db80ce4d5d9b949965d4a09a3640bacaa69b7df87911ee6f3d3a2241b826
5
5
  SHA512:
6
- metadata.gz: f997970ac3bf3630ad99307995c2e1f20dc0e4b45a265efe3d19b1ecab791497c3ee528928016feda0d681d132b72b6efbb50bc481ed7795c7fa7104f648ffa0
7
- data.tar.gz: 912c3634e3f2a5023de7ce9474de30e1225a6069578c97313ad636dc6acae895f69e6209edfd077efca3b50f2c09928e782b231f3d6171366b94c98d4b77a780
6
+ metadata.gz: 63ec3b3ca0fd93be86e6406b0bd298b127c333739c8986d6e51cfb0a289186d39ba4427c734ab0acc322fe4f010a45487772a6ed4016087ebba1a00cf13c0869
7
+ data.tar.gz: 2cec7ed3b05311e9b7fea21b9a0dbfad18272b90745666bffaaed50c634200005335738032b1807f2a0a055bf4e2de8c2269b2c40e1252356552fb2a2f195092
@@ -15,19 +15,17 @@ on:
15
15
 
16
16
  jobs:
17
17
  test:
18
-
19
- runs-on: ubuntu-latest
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
- - name: Set up Ruby
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: 2.6
30
- - name: Install dependencies
31
- run: bundle install
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`
@@ -21,7 +21,7 @@ module Cheepub
21
21
  end
22
22
 
23
23
  def add_creator(name, role)
24
- @book.add_creator(name, nil, role)
24
+ @book.add_creator(name, nil, role: role)
25
25
  end
26
26
 
27
27
  def apply_params(params)
@@ -7,7 +7,7 @@ module Cheepub
7
7
  TCY_PATTERN = /\^([\u0020-\u005d\u005f\u007e]+)\^/ ## \u005e is "^"
8
8
 
9
9
  def self.parse(filename, **params)
10
- Markdown.new(File.read(filename), params)
10
+ Markdown.new(File.read(filename), **params)
11
11
  end
12
12
 
13
13
  def initialize(text, **params)
@@ -1,3 +1,3 @@
1
1
  module Cheepub
2
- VERSION = "0.14.0"
2
+ VERSION = "0.14.1"
3
3
  end
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.0
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.2
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: []