jekyll-spaceship 0.4.2 → 0.5.2
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/.codeclimate.yml +38 -0
- data/.github/FUNDING.yml +12 -0
- data/README.md +117 -8
- data/jekyll-spaceship.gemspec +2 -1
- data/lib/jekyll-spaceship.rb +2 -0
- data/lib/jekyll-spaceship/cores/logger.rb +19 -4
- data/lib/jekyll-spaceship/cores/manager.rb +118 -0
- data/lib/jekyll-spaceship/cores/processor.rb +62 -225
- data/lib/jekyll-spaceship/cores/register.rb +2 -6
- data/lib/jekyll-spaceship/cores/type.rb +41 -0
- data/lib/jekyll-spaceship/processors/emoji-processor.rb +65 -0
- data/lib/jekyll-spaceship/processors/mathjax-processor.rb +9 -3
- data/lib/jekyll-spaceship/processors/plantuml-processor.rb +23 -9
- data/lib/jekyll-spaceship/processors/table-processor.rb +59 -59
- data/lib/jekyll-spaceship/processors/video-processor.rb +13 -7
- data/lib/jekyll-spaceship/utils/.keep +0 -0
- data/lib/jekyll-spaceship/version.rb +1 -1
- data/logos/jekyll-spaceship-logo.png +0 -0
- metadata +24 -4
- data/lib/jekyll-spaceship/utils/plantuml/plantuml.jar +0 -0
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-spaceship
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- jeffreytse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -44,6 +44,20 @@ dependencies:
|
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '1.6'
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rainbow
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - "~>"
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '3.0'
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - "~>"
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '3.0'
|
47
61
|
- !ruby/object:Gem::Dependency
|
48
62
|
name: bundler
|
49
63
|
requirement: !ruby/object:Gem::Requirement
|
@@ -93,6 +107,8 @@ executables: []
|
|
93
107
|
extensions: []
|
94
108
|
extra_rdoc_files: []
|
95
109
|
files:
|
110
|
+
- ".codeclimate.yml"
|
111
|
+
- ".github/FUNDING.yml"
|
96
112
|
- ".gitignore"
|
97
113
|
- ".travis.yml"
|
98
114
|
- Gemfile
|
@@ -102,15 +118,19 @@ files:
|
|
102
118
|
- jekyll-spaceship.gemspec
|
103
119
|
- lib/jekyll-spaceship.rb
|
104
120
|
- lib/jekyll-spaceship/cores/logger.rb
|
121
|
+
- lib/jekyll-spaceship/cores/manager.rb
|
105
122
|
- lib/jekyll-spaceship/cores/processor.rb
|
106
123
|
- lib/jekyll-spaceship/cores/register.rb
|
124
|
+
- lib/jekyll-spaceship/cores/type.rb
|
125
|
+
- lib/jekyll-spaceship/processors/emoji-processor.rb
|
107
126
|
- lib/jekyll-spaceship/processors/mathjax-processor.rb
|
108
127
|
- lib/jekyll-spaceship/processors/plantuml-processor.rb
|
109
128
|
- lib/jekyll-spaceship/processors/polyfill-processor.rb
|
110
129
|
- lib/jekyll-spaceship/processors/table-processor.rb
|
111
130
|
- lib/jekyll-spaceship/processors/video-processor.rb
|
112
|
-
- lib/jekyll-spaceship/utils
|
131
|
+
- lib/jekyll-spaceship/utils/.keep
|
113
132
|
- lib/jekyll-spaceship/version.rb
|
133
|
+
- logos/jekyll-spaceship-logo.png
|
114
134
|
- script/cibuild
|
115
135
|
- script/test
|
116
136
|
homepage: https://github.com/jeffreytse/jekyll-spaceship
|
@@ -137,5 +157,5 @@ rubygems_version: 2.7.7
|
|
137
157
|
signing_key:
|
138
158
|
specification_version: 4
|
139
159
|
summary: A Jekyll plugin to provide powerful supports for table, mathjax, plantuml,
|
140
|
-
youtube, vimeo, dailymotion, etc.
|
160
|
+
emoji, youtube, vimeo, dailymotion, etc.
|
141
161
|
test_files: []
|
Binary file
|