vivlio_pack 0.1.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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: dad86168df73b126aca21c4a18ec54215bb2834a7cc16fcb4f81ca1e8b30f7cb
4
+ data.tar.gz: daa84caa01716c9569247a952e21a853a6f63983b250519c62cd928ed11f684d
5
+ SHA512:
6
+ metadata.gz: a5db257fffcea5809516044ffc6e97fdde1bbda0caa85b0032b6b53c1684bd8fa1ac867958b0781c3ff1556e427c189bf1199c34d51fce3e895c11595c394ea7
7
+ data.tar.gz: 1526c89fe9ad367b6c63947faf4107bc7288c82a4f93ec792578045125413dad6b1082007093361b7dcf60d2e8cf54042dafc36912b878d902455b93befe2d66
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 youchan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # VivlioPack
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/vivlio_pack`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ ```bash
14
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
15
+ ```
16
+
17
+ If bundler is not being used to manage dependencies, install the gem by executing:
18
+
19
+ ```bash
20
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/vivlio_pack.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ task default: %i[]
data/exe/vp_viewer ADDED
@@ -0,0 +1,56 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'vivlio_pack'
4
+ require 'rack'
5
+ require 'rack/handler/puma'
6
+
7
+ class App
8
+ CONTENT_TYPES = {
9
+ '.html' => 'text/html',
10
+ '.png' => 'image/png',
11
+ '.jpg' => 'image/jpeg',
12
+ '.jpeg' => 'image/jpeg',
13
+ '.css' => 'text/css',
14
+ '.svg' => 'image/svg+xml',
15
+ '.js' => 'text/javascript'
16
+ }
17
+
18
+ VIEWER_PATH = 'node_modules/@vivliostyle/viewer/lib'
19
+
20
+ def call(env)
21
+ case path = env['REQUEST_PATH']
22
+ when '/'
23
+ content = File.read(VIEWER_PATH + '/index.html')
24
+ [200, { 'Content-Type': 'text/html' }, [content]]
25
+ when /^\/contents/
26
+ if path == '/contents'
27
+ content_path = 'contents/index.html'
28
+ else
29
+ content_path = path.slice(1..)
30
+ end
31
+ if File.exist?(content_path)
32
+ content = File.read(content_path)
33
+ ext = File.extname(path)
34
+ ctype = CONTENT_TYPES[ext]
35
+ [200, { 'Content-Type': ctype }, [content]]
36
+ else
37
+ [404, {}, []]
38
+ end
39
+ else
40
+ if File.exist?(VIEWER_PATH + path)
41
+ content = File.read(VIEWER_PATH + path)
42
+ ext = File.extname(path)
43
+ ctype = CONTENT_TYPES[ext]
44
+ [200, { 'Content-Type': ctype }, [content]]
45
+ else
46
+ [404, {}, []]
47
+ end
48
+ end
49
+ end
50
+ end
51
+
52
+ app = Rack::Builder.new do
53
+ run App.new
54
+ end
55
+
56
+ Rack::Handler::Puma.run app
data/exe/vpack ADDED
@@ -0,0 +1,15 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'vivlio_pack'
4
+
5
+ command = ARGV.shift
6
+ case command
7
+ when 'build'
8
+ generator = VivlioPack::Generator.new('.')
9
+ generator.generate('contents/index.html')
10
+ when 'viewer'
11
+ viewer = VivlioPack::Viewer.new
12
+ viewer.run
13
+ else
14
+ puts 'Usage: vpack [build|viewer]'
15
+ end
@@ -0,0 +1,51 @@
1
+ require "psych"
2
+ require "redcarpet"
3
+
4
+ require_relative "./renderer"
5
+ require_relative "./toc_renderer"
6
+
7
+ module VivlioPack
8
+ class Generator
9
+ def initialize(workdir)
10
+ @workdir = File.expand_path(workdir)
11
+ @names = Psych.load_file("articles.yaml")
12
+ @markdown = Redcarpet::Markdown.new(Renderer, autolink: true, tables: true, fenced_code_blocks: true, footnotes: true)
13
+ end
14
+
15
+ def generate(html_path)
16
+ file_paths = @names.map{|name| "#{@workdir}/articles/#{name}.md"}
17
+ File.open(html_path, "w") do |html|
18
+ html.write <<~HTML
19
+ <!DOCTYPE html>
20
+ <html>
21
+ <head>
22
+ <meta charset="utf-8">
23
+ <link rel="stylesheet" type="text/css" href="contents/css/style.css">
24
+ <link rel="stylesheet" type="text/css" href="contents/css/bw.css">
25
+ <link href="https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c" rel="stylesheet">
26
+ </head>
27
+ <body>
28
+ HTML
29
+
30
+ html.write <<~HTML
31
+ <div class="toc">
32
+ <h1>目次</h1>
33
+ #{TocRenderer.render(file_paths)}
34
+ </div>
35
+ <div class="page-break"></div>
36
+ HTML
37
+
38
+ file_paths.each do |path|
39
+ File.open(path, "r") do |file|
40
+ html.write(@markdown.render(file.read))
41
+ end
42
+ end
43
+
44
+ html.write <<~HTML
45
+ </body>
46
+ </html>
47
+ HTML
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,107 @@
1
+ require "redcarpet"
2
+ require "rouge"
3
+ require "rouge/plugins/redcarpet"
4
+
5
+ module VivlioPack
6
+ class Renderer < Redcarpet::Render::HTML
7
+ include Rouge::Plugins::Redcarpet
8
+
9
+ def initialize
10
+ super
11
+ @sec = 0
12
+ @ch = 0
13
+ @para = 0
14
+ end
15
+
16
+ def header(c, level)
17
+ case level
18
+ when 1
19
+ @sec += 1
20
+ @ch = 0
21
+ @para = 0
22
+ "<h1 id='sec#{@sec}'>#{c}</h1>\n\n"
23
+ when 2
24
+ @ch += 1
25
+ @para = 0
26
+ "<h2 id='ch#{@sec}-#{@ch}'>#{c}</h2>\n\n"
27
+ when 3
28
+ @para += 1
29
+ "<h3 id='para#{@sec}-#{@ch}-#{@para}'>#{c}</h3>\n\n"
30
+ when 4
31
+ "<h4>#{c}</h4>\n\n"
32
+ end
33
+ end
34
+
35
+ def paragraph(text)
36
+ case text.strip
37
+ when "[begin dialog]"
38
+ @in_dialog = true
39
+ return "<div class='dialog'>\n"
40
+ when "[end dialog]"
41
+ @in_dialog = false
42
+ return "</div>\n"
43
+ when "[page break]"
44
+ return "<div class='page-break'></div>\n"
45
+ when "[begin one-point]"
46
+ return "<div><img src='images/onepoint_before.png' class='one-point'>\n"
47
+ when "[end one-point]"
48
+ return "<img src='images/onepoint_after.png' class='one-point'></div>\n"
49
+ when /\A%([a-z][a-z0-9\-]*):(.*)/m
50
+ return "<div class='#{$1}'>#{$2}</div>\n"
51
+ end
52
+
53
+ if @in_dialog
54
+ case text
55
+ when /^わかばちゃん「(.+)」$/
56
+ return <<~HTML
57
+ <div class="speech shinra">
58
+ <div class="icon"></div>
59
+ <div class="baloon">
60
+ <p>#{$1}</p>
61
+ </div>
62
+ </div>
63
+ HTML
64
+ when /^黒猫先生「(.+)」$/
65
+ return <<~HTML
66
+ <div class="speech kuroneko">
67
+ <div class="icon"></div>
68
+ <div class="baloon">
69
+ <p>#{$1}</p>
70
+ </div>
71
+ </div>
72
+ HTML
73
+ end
74
+ end
75
+
76
+ text = text.strip.gsub(/%([a-z][a-z0-9\-]*){(.*)}/, "<span class='\\1'>\\2</span>")
77
+ "<p>#{text.gsub(/ $/, "<br>\n")}</p>\n"
78
+ end
79
+
80
+ def footnotes(content)
81
+ content
82
+ end
83
+
84
+ def footnote_def(content, number)
85
+ "<span class='footnote'>#{content}</span>"
86
+ end
87
+
88
+ def image(link, title, alt_text)
89
+ name = File.basename(link, ".*")
90
+ <<~HTML
91
+ <figure>
92
+ <img src="#{link}" alt="#{alt_text}" />
93
+ <figcaption id="#{name}">#{alt_text}</figcaption>
94
+ </figure>
95
+ HTML
96
+ end
97
+
98
+ def onepoint(text)
99
+ case text.strip
100
+ when "[begin one-point]"
101
+ return "<img src='images/onepoint_before.png' class='onepoint'>\n"
102
+ when "[end one-point]"
103
+ return "<img src='images/onepoint_after.png' class='onepoint'>\n"
104
+ end
105
+ end
106
+ end
107
+ end
@@ -0,0 +1,41 @@
1
+ module VivlioPack
2
+ class TocRenderer < Redcarpet::Render::Base
3
+ def initialize
4
+ super
5
+ @sec = 0
6
+ @ch = 0
7
+ end
8
+
9
+ def header(c, level)
10
+ case level
11
+ when 1
12
+ @sec += 1
13
+ @ch = 0
14
+
15
+ "<a href='#sec#{@sec}'>#{c}</a>\n<ol>"
16
+ when 2
17
+ @ch += 1
18
+ "<li><a href='#ch#{@sec}-#{@ch}'>#{c}</a></li>\n"
19
+ end
20
+ end
21
+
22
+ def self.render(files)
23
+ renderer = TocRenderer.new
24
+ markdown = Redcarpet::Markdown.new(renderer, fenced_code_blocks: true)
25
+
26
+ toc = []
27
+ files.each do |path|
28
+ File.open(path, "r") do |file|
29
+ toc << markdown.render(file.read)
30
+ end
31
+ end
32
+ <<~TOC
33
+ <nav class="toc">
34
+ <ol>
35
+ #{toc.map{|c| "<li>#{c}</li>\n</ol>"}.join("\n")}
36
+ </ol>
37
+ </nav>
38
+ TOC
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module VivlioPack
4
+ VERSION = "0.1.1"
5
+ end
@@ -0,0 +1,61 @@
1
+ require 'rack'
2
+ require 'rack/handler/puma'
3
+
4
+ module VivlioPack
5
+ class Viewer
6
+ class App
7
+ CONTENT_TYPES = {
8
+ '.html' => 'text/html',
9
+ '.png' => 'image/png',
10
+ '.jpg' => 'image/jpeg',
11
+ '.jpeg' => 'image/jpeg',
12
+ '.css' => 'text/css',
13
+ '.svg' => 'image/svg+xml',
14
+ '.js' => 'text/javascript'
15
+ }
16
+
17
+ VIEWER_PATH = 'node_modules/@vivliostyle/viewer/lib'
18
+
19
+ def call(env)
20
+ case path = env['REQUEST_PATH']
21
+ when '/'
22
+ content = File.read(VIEWER_PATH + '/index.html')
23
+ [200, { 'Content-Type': 'text/html' }, [content]]
24
+ when /^\/contents/
25
+ if path == '/contents'
26
+ content_path = 'contents/index.html'
27
+ else
28
+ content_path = path.slice(1..)
29
+ end
30
+ if File.exist?(content_path)
31
+ content = File.read(content_path)
32
+ ext = File.extname(path)
33
+ ctype = CONTENT_TYPES[ext]
34
+ [200, { 'Content-Type': ctype }, [content]]
35
+ else
36
+ [404, {}, []]
37
+ end
38
+ else
39
+ if File.exist?(VIEWER_PATH + path)
40
+ content = File.read(VIEWER_PATH + path)
41
+ ext = File.extname(path)
42
+ ctype = CONTENT_TYPES[ext]
43
+ [200, { 'Content-Type': ctype }, [content]]
44
+ else
45
+ [404, {}, []]
46
+ end
47
+ end
48
+ end
49
+ end
50
+
51
+ def initialize
52
+ @app = Rack::Builder.new do
53
+ run App.new
54
+ end
55
+ end
56
+
57
+ def run
58
+ Rack::Handler::Puma.run @app
59
+ end
60
+ end
61
+ end
@@ -0,0 +1,13 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "vivlio_pack/version"
4
+
5
+ module VivlioPack
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
9
+
10
+ require_relative 'vivlio_pack/generator'
11
+ require_relative 'vivlio_pack/toc_renderer'
12
+ require_relative 'vivlio_pack/renderer'
13
+ require_relative 'vivlio_pack/viewer'
data/package-lock.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "vivlio_pack",
3
+ "lockfileVersion": 3,
4
+ "requires": true,
5
+ "packages": {
6
+ "": {
7
+ "dependencies": {
8
+ "@vivliostyle/viewer": "^2.32.0"
9
+ }
10
+ },
11
+ "node_modules/@vivliostyle/core": {
12
+ "version": "2.32.0",
13
+ "resolved": "https://registry.npmjs.org/@vivliostyle/core/-/core-2.32.0.tgz",
14
+ "integrity": "sha512-P3V/+oFuRT+VFnuJ0G+efslIWlOyaLS2YvY3PJskXAh/JULP9/aFkYCkrqNj1DyH0TIJ60Ty23yK561A4GiyZw==",
15
+ "dependencies": {
16
+ "fast-diff": "^1.2.0"
17
+ },
18
+ "engines": {
19
+ "node": ">=14"
20
+ }
21
+ },
22
+ "node_modules/@vivliostyle/viewer": {
23
+ "version": "2.32.0",
24
+ "resolved": "https://registry.npmjs.org/@vivliostyle/viewer/-/viewer-2.32.0.tgz",
25
+ "integrity": "sha512-ZxQvhzzJNVhCJU+ls3peGsCAoyuwYGUw/RT05Rmy6jHS6KgqM+fmsMj6uDG3X7wiJO+bBqTpXhNZIhAoFoyV2A==",
26
+ "dependencies": {
27
+ "@vivliostyle/core": "^2.32.0",
28
+ "i18next-ko": "^3.0.1",
29
+ "knockout": "^3.5.0"
30
+ },
31
+ "engines": {
32
+ "node": ">=14"
33
+ }
34
+ },
35
+ "node_modules/fast-diff": {
36
+ "version": "1.3.0",
37
+ "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz",
38
+ "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw=="
39
+ },
40
+ "node_modules/i18next": {
41
+ "version": "3.5.2",
42
+ "resolved": "https://registry.npmjs.org/i18next/-/i18next-3.5.2.tgz",
43
+ "integrity": "sha512-42eGG1b56O5NR01Gudod1R3LzPugN6tZ3ZmYtAqOJSmx4V3vD07hLtkkFrv/qu1mRecW1woezyXFZBFnNAgRXw=="
44
+ },
45
+ "node_modules/i18next-ko": {
46
+ "version": "3.0.1",
47
+ "resolved": "https://registry.npmjs.org/i18next-ko/-/i18next-ko-3.0.1.tgz",
48
+ "integrity": "sha512-Z0HMTiJHU1zP+Lgp8H8iZYmOZHrUVu6LaAWAmm5cMuP4y/VFAghEfs9kDuQ86+S+g45TCKzX76MqyNGemlJuMA==",
49
+ "dependencies": {
50
+ "i18next": "^3.4.3"
51
+ }
52
+ },
53
+ "node_modules/knockout": {
54
+ "version": "3.5.1",
55
+ "resolved": "https://registry.npmjs.org/knockout/-/knockout-3.5.1.tgz",
56
+ "integrity": "sha512-wRJ9I4az0QcsH7A4v4l0enUpkS++MBx0BnL/68KaLzJg7x1qmbjSlwEoCNol7KTYZ+pmtI7Eh2J0Nu6/2Z5J/Q=="
57
+ }
58
+ }
59
+ }
data/package.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "dependencies": {
3
+ "@vivliostyle/viewer": "^2.32.0"
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ module VivlioPack
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,115 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vivlio_pack
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - youchan
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: rack
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: puma
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: redcarpet
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ - !ruby/object:Gem::Dependency
55
+ name: rouge
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ type: :runtime
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ description: Let's create books with vivliostyle'
69
+ email:
70
+ - youchan01@gmail.com
71
+ executables:
72
+ - vp_viewer
73
+ - vpack
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - LICENSE.txt
78
+ - README.md
79
+ - Rakefile
80
+ - exe/vp_viewer
81
+ - exe/vpack
82
+ - lib/vivlio_pack.rb
83
+ - lib/vivlio_pack/generator.rb
84
+ - lib/vivlio_pack/renderer.rb
85
+ - lib/vivlio_pack/toc_renderer.rb
86
+ - lib/vivlio_pack/version.rb
87
+ - lib/vivlio_pack/viewer.rb
88
+ - package-lock.json
89
+ - package.json
90
+ - sig/vivlio_pack.rbs
91
+ homepage: https://github.com/youchan/vivlio_pack
92
+ licenses:
93
+ - MIT
94
+ metadata:
95
+ allowed_push_host: https://rubygems.org
96
+ homepage_uri: https://github.com/youchan/vivlio_pack
97
+ source_code_uri: https://github.com/youchan/vivlio_pack
98
+ rdoc_options: []
99
+ require_paths:
100
+ - lib
101
+ required_ruby_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: 3.1.0
106
+ required_rubygems_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ requirements: []
112
+ rubygems_version: 3.6.7
113
+ specification_version: 4
114
+ summary: Create books with vivliostyle.
115
+ test_files: []