jekyll-highlight-cards 0.3.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 +7 -0
- data/.cursorignore +1 -0
- data/.github/workflows/ci.yaml +21 -0
- data/.github/workflows/release-please.yaml +69 -0
- data/.github/workflows/update-gemfile-lock.yaml +52 -0
- data/.gitignore +59 -0
- data/.release-please-manifest.json +3 -0
- data/.rspec +5 -0
- data/.rubocop.yml +64 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +54 -0
- data/CONTRIBUTING.md +219 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +196 -0
- data/LICENSE +661 -0
- data/README.md +228 -0
- data/_includes/highlight-cards/linkcard.html +13 -0
- data/_includes/highlight-cards/polaroid.html +22 -0
- data/_sass/_highlight-cards.scss +92 -0
- data/docs/linkcard-example.jpg +0 -0
- data/docs/polaroid-example.jpg +0 -0
- data/docs/polaroid-sidebyside-example.jpg +0 -0
- data/docs/polaroid-stacked-example.jpg +0 -0
- data/jekyll-highlight-cards.gemspec +47 -0
- data/lib/jekyll-highlight-cards/archive_helper.rb +151 -0
- data/lib/jekyll-highlight-cards/dimension_parser.rb +62 -0
- data/lib/jekyll-highlight-cards/expression_evaluator.rb +113 -0
- data/lib/jekyll-highlight-cards/image_sizing_hooks.rb +188 -0
- data/lib/jekyll-highlight-cards/linkcard_tag.rb +211 -0
- data/lib/jekyll-highlight-cards/polaroid_tag.rb +223 -0
- data/lib/jekyll-highlight-cards/template_renderer.rb +113 -0
- data/lib/jekyll-highlight-cards/version.rb +5 -0
- data/lib/jekyll-highlight-cards.rb +57 -0
- data/release-please-config.json +12 -0
- metadata +234 -0
data/Gemfile.lock
ADDED
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
PATH
|
|
2
|
+
remote: .
|
|
3
|
+
specs:
|
|
4
|
+
jekyll-highlight-cards (0.3.1)
|
|
5
|
+
jekyll (>= 4.0, < 5.0)
|
|
6
|
+
liquid (>= 4.0, < 5.0)
|
|
7
|
+
|
|
8
|
+
GEM
|
|
9
|
+
remote: https://rubygems.org/
|
|
10
|
+
specs:
|
|
11
|
+
addressable (2.8.8)
|
|
12
|
+
public_suffix (>= 2.0.2, < 8.0)
|
|
13
|
+
ast (2.4.3)
|
|
14
|
+
base64 (0.3.0)
|
|
15
|
+
bigdecimal (3.3.1)
|
|
16
|
+
colorator (1.1.0)
|
|
17
|
+
concurrent-ruby (1.3.5)
|
|
18
|
+
crack (1.0.1)
|
|
19
|
+
bigdecimal
|
|
20
|
+
rexml
|
|
21
|
+
csv (3.3.5)
|
|
22
|
+
diff-lcs (1.6.2)
|
|
23
|
+
docile (1.4.1)
|
|
24
|
+
em-websocket (0.5.3)
|
|
25
|
+
eventmachine (>= 0.12.9)
|
|
26
|
+
http_parser.rb (~> 0)
|
|
27
|
+
eventmachine (1.2.7)
|
|
28
|
+
ffi (1.17.2)
|
|
29
|
+
ffi (1.17.2-arm64-darwin)
|
|
30
|
+
ffi (1.17.2-x86-linux-gnu)
|
|
31
|
+
ffi (1.17.2-x86-linux-musl)
|
|
32
|
+
ffi (1.17.2-x86_64-darwin)
|
|
33
|
+
ffi (1.17.2-x86_64-linux-gnu)
|
|
34
|
+
forwardable-extended (2.6.0)
|
|
35
|
+
google-protobuf (4.33.2)
|
|
36
|
+
bigdecimal
|
|
37
|
+
rake (>= 13)
|
|
38
|
+
google-protobuf (4.33.2-arm64-darwin)
|
|
39
|
+
bigdecimal
|
|
40
|
+
rake (>= 13)
|
|
41
|
+
google-protobuf (4.33.2-x86-linux-gnu)
|
|
42
|
+
bigdecimal
|
|
43
|
+
rake (>= 13)
|
|
44
|
+
google-protobuf (4.33.2-x86-linux-musl)
|
|
45
|
+
bigdecimal
|
|
46
|
+
rake (>= 13)
|
|
47
|
+
google-protobuf (4.33.2-x86_64-darwin)
|
|
48
|
+
bigdecimal
|
|
49
|
+
rake (>= 13)
|
|
50
|
+
google-protobuf (4.33.2-x86_64-linux-gnu)
|
|
51
|
+
bigdecimal
|
|
52
|
+
rake (>= 13)
|
|
53
|
+
hashdiff (1.2.1)
|
|
54
|
+
http_parser.rb (0.8.0)
|
|
55
|
+
i18n (1.14.7)
|
|
56
|
+
concurrent-ruby (~> 1.0)
|
|
57
|
+
jekyll (4.4.1)
|
|
58
|
+
addressable (~> 2.4)
|
|
59
|
+
base64 (~> 0.2)
|
|
60
|
+
colorator (~> 1.0)
|
|
61
|
+
csv (~> 3.0)
|
|
62
|
+
em-websocket (~> 0.5)
|
|
63
|
+
i18n (~> 1.0)
|
|
64
|
+
jekyll-sass-converter (>= 2.0, < 4.0)
|
|
65
|
+
jekyll-watch (~> 2.0)
|
|
66
|
+
json (~> 2.6)
|
|
67
|
+
kramdown (~> 2.3, >= 2.3.1)
|
|
68
|
+
kramdown-parser-gfm (~> 1.0)
|
|
69
|
+
liquid (~> 4.0)
|
|
70
|
+
mercenary (~> 0.3, >= 0.3.6)
|
|
71
|
+
pathutil (~> 0.9)
|
|
72
|
+
rouge (>= 3.0, < 5.0)
|
|
73
|
+
safe_yaml (~> 1.0)
|
|
74
|
+
terminal-table (>= 1.8, < 4.0)
|
|
75
|
+
webrick (~> 1.7)
|
|
76
|
+
jekyll-sass-converter (3.1.0)
|
|
77
|
+
sass-embedded (~> 1.75)
|
|
78
|
+
jekyll-watch (2.2.1)
|
|
79
|
+
listen (~> 3.0)
|
|
80
|
+
json (2.17.1)
|
|
81
|
+
kramdown (2.5.1)
|
|
82
|
+
rexml (>= 3.3.9)
|
|
83
|
+
kramdown-parser-gfm (1.1.0)
|
|
84
|
+
kramdown (~> 2.0)
|
|
85
|
+
language_server-protocol (3.17.0.5)
|
|
86
|
+
lint_roller (1.1.0)
|
|
87
|
+
liquid (4.0.4)
|
|
88
|
+
listen (3.9.0)
|
|
89
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
90
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
91
|
+
mercenary (0.4.0)
|
|
92
|
+
parallel (1.27.0)
|
|
93
|
+
parser (3.3.10.0)
|
|
94
|
+
ast (~> 2.4.1)
|
|
95
|
+
racc
|
|
96
|
+
pathutil (0.16.2)
|
|
97
|
+
forwardable-extended (~> 2.6)
|
|
98
|
+
prism (1.6.0)
|
|
99
|
+
public_suffix (6.0.2)
|
|
100
|
+
racc (1.8.1)
|
|
101
|
+
rainbow (3.1.1)
|
|
102
|
+
rake (13.3.1)
|
|
103
|
+
rb-fsevent (0.11.2)
|
|
104
|
+
rb-inotify (0.11.1)
|
|
105
|
+
ffi (~> 1.0)
|
|
106
|
+
regexp_parser (2.11.3)
|
|
107
|
+
rexml (3.4.4)
|
|
108
|
+
rouge (4.6.1)
|
|
109
|
+
rspec (3.13.2)
|
|
110
|
+
rspec-core (~> 3.13.0)
|
|
111
|
+
rspec-expectations (~> 3.13.0)
|
|
112
|
+
rspec-mocks (~> 3.13.0)
|
|
113
|
+
rspec-core (3.13.6)
|
|
114
|
+
rspec-support (~> 3.13.0)
|
|
115
|
+
rspec-expectations (3.13.5)
|
|
116
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
117
|
+
rspec-support (~> 3.13.0)
|
|
118
|
+
rspec-mocks (3.13.7)
|
|
119
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
|
120
|
+
rspec-support (~> 3.13.0)
|
|
121
|
+
rspec-support (3.13.6)
|
|
122
|
+
rubocop (1.81.7)
|
|
123
|
+
json (~> 2.3)
|
|
124
|
+
language_server-protocol (~> 3.17.0.2)
|
|
125
|
+
lint_roller (~> 1.1.0)
|
|
126
|
+
parallel (~> 1.10)
|
|
127
|
+
parser (>= 3.3.0.2)
|
|
128
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
129
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
|
130
|
+
rubocop-ast (>= 1.47.1, < 2.0)
|
|
131
|
+
ruby-progressbar (~> 1.7)
|
|
132
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
|
133
|
+
rubocop-ast (1.48.0)
|
|
134
|
+
parser (>= 3.3.7.2)
|
|
135
|
+
prism (~> 1.4)
|
|
136
|
+
rubocop-capybara (2.22.1)
|
|
137
|
+
lint_roller (~> 1.1)
|
|
138
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
139
|
+
rubocop-factory_bot (2.28.0)
|
|
140
|
+
lint_roller (~> 1.1)
|
|
141
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
142
|
+
rubocop-rake (0.7.1)
|
|
143
|
+
lint_roller (~> 1.1)
|
|
144
|
+
rubocop (>= 1.72.1)
|
|
145
|
+
rubocop-rspec (2.31.0)
|
|
146
|
+
rubocop (~> 1.40)
|
|
147
|
+
rubocop-capybara (~> 2.17)
|
|
148
|
+
rubocop-factory_bot (~> 2.22)
|
|
149
|
+
rubocop-rspec_rails (~> 2.28)
|
|
150
|
+
rubocop-rspec_rails (2.29.1)
|
|
151
|
+
rubocop (~> 1.61)
|
|
152
|
+
ruby-progressbar (1.13.0)
|
|
153
|
+
safe_yaml (1.0.5)
|
|
154
|
+
sass-embedded (1.95.0)
|
|
155
|
+
google-protobuf (~> 4.31)
|
|
156
|
+
rake (>= 13)
|
|
157
|
+
sass-embedded (1.95.0-arm64-darwin)
|
|
158
|
+
google-protobuf (~> 4.31)
|
|
159
|
+
sass-embedded (1.95.0-x86_64-darwin)
|
|
160
|
+
google-protobuf (~> 4.31)
|
|
161
|
+
simplecov (0.22.0)
|
|
162
|
+
docile (~> 1.1)
|
|
163
|
+
simplecov-html (~> 0.11)
|
|
164
|
+
simplecov_json_formatter (~> 0.1)
|
|
165
|
+
simplecov-html (0.13.2)
|
|
166
|
+
simplecov_json_formatter (0.1.4)
|
|
167
|
+
terminal-table (3.0.2)
|
|
168
|
+
unicode-display_width (>= 1.1.1, < 3)
|
|
169
|
+
unicode-display_width (2.6.0)
|
|
170
|
+
webmock (3.26.1)
|
|
171
|
+
addressable (>= 2.8.0)
|
|
172
|
+
crack (>= 0.3.2)
|
|
173
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
|
174
|
+
webrick (1.9.2)
|
|
175
|
+
|
|
176
|
+
PLATFORMS
|
|
177
|
+
arm64-darwin
|
|
178
|
+
ruby
|
|
179
|
+
x86-linux-gnu
|
|
180
|
+
x86-linux-musl
|
|
181
|
+
x86_64-darwin
|
|
182
|
+
x86_64-linux
|
|
183
|
+
|
|
184
|
+
DEPENDENCIES
|
|
185
|
+
bundler (~> 2.0)
|
|
186
|
+
jekyll-highlight-cards!
|
|
187
|
+
rake (~> 13.0)
|
|
188
|
+
rspec (~> 3.12)
|
|
189
|
+
rubocop (~> 1.50)
|
|
190
|
+
rubocop-rake (~> 0.6)
|
|
191
|
+
rubocop-rspec (~> 2.20)
|
|
192
|
+
simplecov (~> 0.22)
|
|
193
|
+
webmock (~> 3.18)
|
|
194
|
+
|
|
195
|
+
BUNDLED WITH
|
|
196
|
+
2.6.9
|