jekyll-contentblocks 1.1.0 → 2.0.0

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.
Files changed (53) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ci.yml +110 -0
  3. data/.gitignore +1 -1
  4. data/Appraisals +50 -24
  5. data/Gemfile +15 -5
  6. data/README.md +118 -20
  7. data/gemfiles/jekyll_3.0.5.gemfile +15 -0
  8. data/gemfiles/jekyll_3.1.6.gemfile +15 -0
  9. data/gemfiles/jekyll_3.10.0.gemfile +16 -0
  10. data/gemfiles/jekyll_3.2.1.gemfile +15 -0
  11. data/gemfiles/jekyll_3.3.1.gemfile +15 -0
  12. data/gemfiles/jekyll_3.4.5.gemfile +15 -0
  13. data/gemfiles/jekyll_3.5.2.gemfile +15 -0
  14. data/gemfiles/jekyll_3.6.3.gemfile +15 -0
  15. data/gemfiles/jekyll_3.7.4.gemfile +15 -0
  16. data/gemfiles/jekyll_3.8.7.gemfile +15 -0
  17. data/gemfiles/jekyll_3.9.5.gemfile +16 -0
  18. data/gemfiles/jekyll_4.0.1.gemfile +15 -0
  19. data/gemfiles/jekyll_4.1.1.gemfile +15 -0
  20. data/gemfiles/jekyll_4.2.2.gemfile +15 -0
  21. data/gemfiles/jekyll_4.3.4.gemfile +15 -0
  22. data/gemfiles/jekyll_4.4.1.gemfile +15 -0
  23. data/jekyll-contentblocks.gemspec +7 -2
  24. data/lib/jekyll/content_blocks/content_block_tag.rb +34 -7
  25. data/lib/jekyll/content_blocks/pre_render_hook.rb +11 -0
  26. data/lib/jekyll/content_blocks/version.rb +1 -2
  27. data/lib/jekyll/tags/content_block.rb +2 -9
  28. data/lib/jekyll/tags/content_for.rb +18 -3
  29. data/lib/jekyll-contentblocks.rb +15 -22
  30. data/mise.toml +5 -0
  31. data/spec/jekyll_content_blocks_spec.rb +115 -55
  32. data/spec/spec_helper.rb +11 -12
  33. data/test/_layouts/default.html +14 -0
  34. data/test/_plugins/require.rb +1 -0
  35. data/test/emptyblock.md +8 -0
  36. data/test/page2.md +12 -0
  37. data/test/page3.md +27 -0
  38. metadata +44 -27
  39. data/gemfiles/jekyll_1.0.4.gemfile +0 -12
  40. data/gemfiles/jekyll_1.1.2.gemfile +0 -12
  41. data/gemfiles/jekyll_1.2.1.gemfile +0 -12
  42. data/gemfiles/jekyll_1.3.1.gemfile +0 -12
  43. data/gemfiles/jekyll_1.4.3.gemfile +0 -12
  44. data/gemfiles/jekyll_1.5.1.gemfile +0 -12
  45. data/gemfiles/jekyll_2.0.3.gemfile +0 -12
  46. data/gemfiles/jekyll_2.1.1.gemfile +0 -12
  47. data/gemfiles/jekyll_2.2.0.gemfile +0 -12
  48. data/gemfiles/jekyll_2.3.0.gemfile +0 -12
  49. data/gemfiles/jekyll_2.4.0.gemfile +0 -12
  50. data/gemfiles/jekyll_2.5.3.gemfile +0 -12
  51. data/lib/jekyll/content_blocks/convertible.rb +0 -27
  52. data/lib/jekyll/content_blocks/renderer.rb +0 -11
  53. data/test/_plugins/bundler.rb +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c5fa5ab18f418d6455911cf33dbb9ad6d8e08c52
4
- data.tar.gz: 8da924d203b87c0afb2767872386287b7ad9e4a8
2
+ SHA256:
3
+ metadata.gz: 9bf066a06d395aadfb1ca67328ee4bdb68bdd227799726da53acbbceafa81876
4
+ data.tar.gz: 585dc4dee4e35910d98f9fc756745e8608d79b7d3e52f73c9f893c3f5dd95044
5
5
  SHA512:
6
- metadata.gz: 7247b7a4107c6d88be63576b06ea8dcd320c19e5b8a54509ebd3b2b1aef62bc3e5e756d1eb5269554e1e0c65d71d02bd4ff2238ad74b21a28256883808592112
7
- data.tar.gz: 977e960485aabbc1f811a34561e805ea8fb4cabccab90d70258967b3d73d17e66268a595846c9f1012e1bd8b40ec5418da7bc639365b96fff43d3fb8c8e4374a
6
+ metadata.gz: 6640f56d91abeebc6f6c9c6ed74bfe0c250f921958fa7e0121fa2beb67d6947b64b69d719e202c4d7cd329640c9f1399dd3ae75e48937846b1b4e222b2d01dc4
7
+ data.tar.gz: c75c1b8e77f103916af0ff9f79b7ee25f45a20c232af2617971d0766835f1f4790c3ee457a73dc503f6c05adf4e10ccfc9839b35fb04b36f70a36cb4aec889ff
@@ -0,0 +1,110 @@
1
+ name: CI
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+
8
+ # One job per Ruby version, each with its own list of Jekyll versions.
9
+ # Ruby 2.7 (Jekyll's supported minimum) runs the whole range; Ruby 3.3/3.4/4.0
10
+ # run Jekyll 3.8+ only, since Jekyll 3.0–3.7 use APIs removed in Ruby 3
11
+ # (URI.escape, Fixnum, positional Hash args to File.read). The generated
12
+ # gemfiles carry no `ruby` pin, so each installs on whichever Ruby runs it.
13
+
14
+ jobs:
15
+ # Formatting gate. The test jobs below `needs:` this, so a rubyfmt failure
16
+ # skips the whole matrix instead of burning runners on it.
17
+ rubyfmt:
18
+ name: rubyfmt
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v5
22
+ # mise's github/ubi backends mislocate rubyfmt's oddly-nested release
23
+ # tarball on Linux, so install the standalone binary directly. The version
24
+ # is read from mise.toml, which stays the source of truth (and is what local
25
+ # dev uses via `mise install`). rubyfmt is self-contained — no Ruby needed.
26
+ - name: Install rubyfmt
27
+ run: |
28
+ version="$(grep -oE 'fables-tales/rubyfmt" = "[0-9.]+"' mise.toml | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')"
29
+ echo "Installing rubyfmt $version"
30
+ curl -fsSL "https://github.com/fables-tales/rubyfmt/releases/download/v${version}/rubyfmt-v${version}-Linux-x86_64.tar.gz" \
31
+ | tar -xz -C "$RUNNER_TEMP"
32
+ echo "$RUNNER_TEMP/tmp/releases/v${version}-Linux" >> "$GITHUB_PATH"
33
+ - run: rubyfmt --check .
34
+
35
+ ruby-2-7:
36
+ name: Jekyll ${{ matrix.jekyll }} (Ruby 2.7)
37
+ runs-on: ubuntu-latest
38
+ needs: rubyfmt
39
+ strategy:
40
+ fail-fast: false
41
+ matrix:
42
+ jekyll: ['3.0.5', '3.1.6', '3.2.1', '3.3.1', '3.4.5', '3.5.2',
43
+ '3.6.3', '3.7.4', '3.8.7', '3.9.5', '3.10.0',
44
+ '4.0.1', '4.1.1', '4.2.2', '4.3.4', '4.4.1']
45
+ env:
46
+ BUNDLE_GEMFILE: gemfiles/jekyll_${{ matrix.jekyll }}.gemfile
47
+ steps:
48
+ - uses: actions/checkout@v5
49
+ - uses: ruby/setup-ruby@v1
50
+ with:
51
+ ruby-version: '2.7'
52
+ bundler-cache: true
53
+ - run: bundle exec rspec
54
+
55
+ ruby-3-3:
56
+ name: Jekyll ${{ matrix.jekyll }} (Ruby 3.3)
57
+ runs-on: ubuntu-latest
58
+ needs: rubyfmt
59
+ strategy:
60
+ fail-fast: false
61
+ matrix:
62
+ # The Jekyll 3.8+ list is defined once here (&jekyll_3_8_plus) and reused
63
+ # by the Ruby 3.4 and 4.0 jobs below via the *jekyll_3_8_plus alias.
64
+ jekyll: &jekyll_3_8_plus ['3.8.7', '3.9.5', '3.10.0',
65
+ '4.0.1', '4.1.1', '4.2.2', '4.3.4', '4.4.1']
66
+ env:
67
+ BUNDLE_GEMFILE: gemfiles/jekyll_${{ matrix.jekyll }}.gemfile
68
+ steps:
69
+ - uses: actions/checkout@v5
70
+ - uses: ruby/setup-ruby@v1
71
+ with:
72
+ ruby-version: '3.3'
73
+ bundler-cache: true
74
+ - run: bundle exec rspec
75
+
76
+ ruby-3-4:
77
+ name: Jekyll ${{ matrix.jekyll }} (Ruby 3.4)
78
+ runs-on: ubuntu-latest
79
+ needs: rubyfmt
80
+ strategy:
81
+ fail-fast: false
82
+ matrix:
83
+ jekyll: *jekyll_3_8_plus
84
+ env:
85
+ BUNDLE_GEMFILE: gemfiles/jekyll_${{ matrix.jekyll }}.gemfile
86
+ steps:
87
+ - uses: actions/checkout@v5
88
+ - uses: ruby/setup-ruby@v1
89
+ with:
90
+ ruby-version: '3.4'
91
+ bundler-cache: true
92
+ - run: bundle exec rspec
93
+
94
+ ruby-4-0:
95
+ name: Jekyll ${{ matrix.jekyll }} (Ruby 4.0)
96
+ runs-on: ubuntu-latest
97
+ needs: rubyfmt
98
+ strategy:
99
+ fail-fast: false
100
+ matrix:
101
+ jekyll: *jekyll_3_8_plus
102
+ env:
103
+ BUNDLE_GEMFILE: gemfiles/jekyll_${{ matrix.jekyll }}.gemfile
104
+ steps:
105
+ - uses: actions/checkout@v5
106
+ - uses: ruby/setup-ruby@v1
107
+ with:
108
+ ruby-version: '4.0'
109
+ bundler-cache: true
110
+ - run: bundle exec rspec
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
@@ -16,4 +15,5 @@ test/tmp
16
15
  test/version_tmp
17
16
  tmp
18
17
  test/_site/
18
+ .jekyll-cache/
19
19
  gemfiles/*.lock
data/Appraisals CHANGED
@@ -1,47 +1,73 @@
1
- appraise "jekyll-1.0.4" do
2
- gem "jekyll", "1.0.4"
1
+ # Every version runs against Ruby 2.7 in CI (Jekyll's supported minimum).
2
+ # Jekyll 3.8+ (including 4.x) is additionally tested against Ruby 3.3, 3.4 and 4.0;
3
+ # Jekyll 3.0–3.7 can't run on Ruby 3 (they use APIs removed in it: URI.escape,
4
+ # Fixnum, and positional Hash args to File.read). See .github/workflows/ci.yml.
5
+
6
+ appraise "jekyll-3.0.5" do
7
+ gem "jekyll", "3.0.5"
8
+ end
9
+
10
+ appraise "jekyll-3.1.6" do
11
+ gem "jekyll", "3.1.6"
12
+ end
13
+
14
+ appraise "jekyll-3.2.1" do
15
+ gem "jekyll", "3.2.1"
16
+ end
17
+
18
+ appraise "jekyll-3.3.1" do
19
+ gem "jekyll", "3.3.1"
20
+ end
21
+
22
+ appraise "jekyll-3.4.5" do
23
+ gem "jekyll", "3.4.5"
3
24
  end
4
25
 
5
- appraise "jekyll-1.1.2" do
6
- gem "jekyll", "1.1.2"
26
+ appraise "jekyll-3.5.2" do
27
+ gem "jekyll", "3.5.2"
7
28
  end
8
29
 
9
- appraise "jekyll-1.2.1" do
10
- gem "jekyll", "1.2.1"
30
+ appraise "jekyll-3.6.3" do
31
+ gem "jekyll", "3.6.3"
11
32
  end
12
33
 
13
- appraise "jekyll-1.3.1" do
14
- gem "jekyll", "1.3.1"
34
+ appraise "jekyll-3.7.4" do
35
+ gem "jekyll", "3.7.4"
15
36
  end
16
37
 
17
- appraise "jekyll-1.4.3" do
18
- gem "jekyll", "1.4.3"
38
+ appraise "jekyll-3.8.7" do
39
+ gem "jekyll", "3.8.7"
19
40
  end
20
41
 
21
- appraise "jekyll-1.5.1" do
22
- gem "jekyll", "1.5.1"
42
+ appraise "jekyll-3.9.5" do
43
+ gem "jekyll", "3.9.5"
44
+ # Jekyll 3.9+ uses kramdown 2.x, which extracted the GFM parser into its own gem
45
+ gem "kramdown-parser-gfm"
23
46
  end
24
47
 
25
- appraise "jekyll-2.0.3" do
26
- gem "jekyll", "2.0.3"
48
+ appraise "jekyll-3.10.0" do
49
+ gem "jekyll", "3.10.0"
50
+ # Jekyll 3.9+ uses kramdown 2.x, which extracted the GFM parser into its own gem
51
+ gem "kramdown-parser-gfm"
27
52
  end
28
53
 
29
- appraise "jekyll-2.1.1" do
30
- gem "jekyll", "2.1.1"
54
+ # Jekyll 4 depends on kramdown-parser-gfm itself, so it isn't listed here.
55
+ appraise "jekyll-4.0.1" do
56
+ gem "jekyll", "4.0.1"
31
57
  end
32
58
 
33
- appraise "jekyll-2.2.0" do
34
- gem "jekyll", "2.2.0"
59
+ appraise "jekyll-4.1.1" do
60
+ gem "jekyll", "4.1.1"
35
61
  end
36
62
 
37
- appraise "jekyll-2.3.0" do
38
- gem "jekyll", "2.3.0"
63
+ appraise "jekyll-4.2.2" do
64
+ gem "jekyll", "4.2.2"
39
65
  end
40
66
 
41
- appraise "jekyll-2.4.0" do
42
- gem "jekyll", "2.4.0"
67
+ appraise "jekyll-4.3.4" do
68
+ gem "jekyll", "4.3.4"
43
69
  end
44
70
 
45
- appraise "jekyll-2.5.3" do
46
- gem "jekyll", "2.5.3"
71
+ appraise "jekyll-4.4.1" do
72
+ gem "jekyll", "4.4.1"
47
73
  end
data/Gemfile CHANGED
@@ -1,11 +1,21 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'jekyll', '> 1.0.0'
4
- gem 'appraisal', '1.0.2'
3
+ # No `ruby` pin here on purpose: Appraisal copies this Gemfile's directives into
4
+ # every generated gemfiles/*.gemfile, and those run across a Ruby matrix (all
5
+ # versions on 2.7, plus Jekyll 3.8+ on 3.3/3.4/4.0). See .github/workflows/ci.yml and Appraisals.
6
+ gem 'jekyll', '~> 3.8.0'
7
+ gem 'rexml'
8
+ gem 'appraisal', '~> 2.5.0'
5
9
 
6
10
  gem 'pry'
7
- gem 'pry-byebug'
8
- gem 'rspec', '~> 3.3.0'
9
- gem 'nokogiri', '~> 1.6.6.0'
11
+ gem 'rspec', '~> 3.13.0'
12
+ gem 'nokogiri'
13
+
14
+ # Declared here (not in the gemspec) so they are not forced on consumers of the
15
+ # gem. They silence "loaded from the standard library" warnings that Jekyll's own
16
+ # deps (safe_yaml, liquid) trigger on Ruby 3.3+, where these leave the default gems.
17
+ gem 'base64'
18
+ gem 'bigdecimal'
19
+ gem 'csv'
10
20
 
11
21
  gemspec
data/README.md CHANGED
@@ -1,15 +1,44 @@
1
1
  # jekyll-contentblocks
2
2
 
3
+ [![CI](https://github.com/rustygeldmacher/jekyll-contentblocks/actions/workflows/ci.yml/badge.svg)](https://github.com/rustygeldmacher/jekyll-contentblocks/actions/workflows/ci.yml)
4
+
3
5
  Gives you a mechanism in Jekyll to pass content up from pages into their parent
4
6
  layouts. It's kind of like having Rails' content_for available for Jekyll.
5
7
 
6
8
  ## Installation
7
9
 
10
+ jekyll-contentblocks supports Jekyll 3.0 and above. Jekyll 3.0–3.7 require
11
+ Ruby 2.7 (they use APIs removed in Ruby 3), while Jekyll 3.8 and above run on
12
+ Ruby 2.7 through 4.0. Jekyll versions below 3.0 are no longer supported.
13
+
14
+ The combinations exercised in CI (Ruby across the top, Jekyll down the side):
15
+
16
+ | Jekyll \ Ruby | 2.7.x | 3.3.x | 3.4.x | 4.0.x |
17
+ | --- | :---: | :---: | :---: | :---: |
18
+ | 3.0.x | ✅ | ❌ | ❌ | ❌ |
19
+ | 3.1.x | ✅ | ❌ | ❌ | ❌ |
20
+ | 3.2.x | ✅ | ❌ | ❌ | ❌ |
21
+ | 3.3.x | ✅ | ❌ | ❌ | ❌ |
22
+ | 3.4.x | ✅ | ❌ | ❌ | ❌ |
23
+ | 3.5.x | ✅ | ❌ | ❌ | ❌ |
24
+ | 3.6.x | ✅ | ❌ | ❌ | ❌ |
25
+ | 3.7.x | ✅ | ❌ | ❌ | ❌ |
26
+ | 3.8.x | ✅ | ✅ | ✅ | ✅ |
27
+ | 3.9.x | ✅ | ✅ | ✅ | ✅ |
28
+ | 3.10.x | ✅ | ✅ | ✅ | ✅ |
29
+ | 4.0.x | ✅ | ✅ | ✅ | ✅ |
30
+ | 4.1.x | ✅ | ✅ | ✅ | ✅ |
31
+ | 4.2.x | ✅ | ✅ | ✅ | ✅ |
32
+ | 4.3.x | ✅ | ✅ | ✅ | ✅ |
33
+ | 4.4.x | ✅ | ✅ | ✅ | ✅ |
34
+
8
35
  ### Bundler (recommended)
9
36
 
10
37
  Add this line to your Jekyll project's `Gemfile`:
11
38
  ```ruby
12
- gem 'jekyll-contentblocks'
39
+ group :jekyll_plugins do
40
+ gem 'jekyll-contentblocks'
41
+ end
13
42
  ```
14
43
 
15
44
  Then execute:
@@ -17,15 +46,8 @@ Then execute:
17
46
  $ bundle install
18
47
  ```
19
48
 
20
- Make sure your have a plugin that initializes Bundler:
21
- ```ruby
22
- # _plugins/bundler.rb
23
- require "rubygems"
24
- require "bundler/setup"
25
- Bundler.require(:default)
26
- ```
27
-
28
49
  ### Standalone
50
+
29
51
  Execute:
30
52
  ```bash
31
53
  $ gem install jekyll-contentblocks
@@ -95,27 +117,88 @@ formatting applied.
95
117
 
96
118
  ### Checking if a block has content
97
119
 
98
- We might want to check if the particular contentblock has content before using
99
- it in our template. To do this, use the `ifhascontent` tag:
120
+ We might want to check whether a block has content before using it in our
121
+ template. The simplest way is a plain Liquid `if` — each block name is exposed
122
+ under `contentblocks`:
123
+
124
+ ```liquid
125
+ {% if contentblocks.sidebar %}
126
+ {% contentblock sidebar %}
127
+ {% else %}
128
+ <div>This is our default sidebar.</div>
129
+ {% endif %}
130
+ ```
131
+
132
+ `contentblocks.<name>` is truthy whenever the block was defined on the page, and
133
+ `nil` otherwise. Unlike the tags below, it also composes with other conditions:
134
+
135
+ ```liquid
136
+ {% if contentblocks.sidebar or page.force_sidebar %}
137
+ ...
138
+ {% endif %}
139
+ ```
140
+
141
+ The `ifhascontent` and `ifnothascontent` tags are also available:
100
142
 
101
143
  ```liquid
102
144
  {% ifhascontent javascripts %}
103
- <script type="text/javascript>
104
- {% contentfor javascripts %}
145
+ <script type="text/javascript">
146
+ {% contentblock javascripts %}
105
147
  </script>
106
148
  {% endifhascontent %}
107
149
  ```
108
150
 
109
- Similarly, there's the opposite tag, `ifnothascontent`:
151
+ The difference is subtle: these tags test for **non-empty** content, whereas
152
+ `{% if contentblocks.name %}` tests whether the block was *defined* at all. So a
153
+ block that a page defines but leaves empty counts as "no content" for
154
+ `ifhascontent`, yet is still present in `contentblocks`.
155
+
156
+ ### Repeating a block and reading its front matter
157
+
158
+ You can use the same block name more than once on a page. Each block is
159
+ collected into an array available in the layout at `contentblocks.<name>`,
160
+ so you can loop over the individual blocks instead of rendering them as one
161
+ concatenated chunk.
162
+
163
+ Each block may also start with its own YAML front matter. The front matter is
164
+ parsed into a `data` hash, and the remaining Markdown becomes `content`
165
+ (converted just like a normal block). This lets an author write a few simple
166
+ Markdown blocks while the layout arranges them into something richer.
167
+
168
+ For example, a page with a list of testimonials:
110
169
 
111
170
  ```liquid
112
- {% ifnothascontent sidebar %}
113
- <div>
114
- This is our default sidebar.
115
- </div>
116
- {% endifnothascontent %}
171
+ {% contentfor testimonial %}
172
+ ---
173
+ author: Ada Lovelace
174
+ ---
175
+ A **delightful** plugin.
176
+ {% endcontentfor %}
177
+
178
+ {% contentfor testimonial %}
179
+ ---
180
+ author: Alan Turing
181
+ ---
182
+ Saved us hours of work.
183
+ {% endcontentfor %}
184
+ ```
185
+
186
+ The layout can then loop over them, reading each block's `content` and `data`:
187
+
188
+ ```liquid
189
+ <ul class="testimonials">
190
+ {% for testimonial in contentblocks.testimonial %}
191
+ <li>
192
+ {{ testimonial.content }}
193
+ <cite>{{ testimonial.data.author }}</cite>
194
+ </li>
195
+ {% endfor %}
196
+ </ul>
117
197
  ```
118
198
 
199
+ The original `{% contentblock testimonial %}` tag still works too — it renders
200
+ all of the blocks together.
201
+
119
202
  ## Contributing
120
203
 
121
204
  1. Fork it
@@ -132,5 +215,20 @@ of Jekyll. To do this, run the test suite:
132
215
  ```bash
133
216
  > bundle
134
217
  > bundle exec appraisal install
135
- > bundle exec appraisal rpsec
218
+ > bundle exec appraisal rspec
136
219
  ```
220
+
221
+ ### Formatting
222
+
223
+ Ruby code is formatted with [rubyfmt](https://github.com/fables-tales/rubyfmt),
224
+ which is installed (along with Ruby) via [mise](https://mise.jdx.dev) from the
225
+ versions pinned in `mise.toml`:
226
+
227
+ ```bash
228
+ > mise install # install Ruby + the pinned rubyfmt
229
+ > mise exec -- rubyfmt -i . # format in place
230
+ > mise exec -- rubyfmt --check . # check formatting (what CI runs)
231
+ ```
232
+
233
+ CI runs `rubyfmt --check` as a gate before the test matrix, so unformatted
234
+ code fails the build early.
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.0.5"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.1.6"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.10.0"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+ gem "kramdown-parser-gfm"
15
+
16
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.2.1"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.3.1"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.4.5"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.5.2"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.6.3"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.7.4"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.8.7"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,16 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "3.9.5"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+ gem "kramdown-parser-gfm"
15
+
16
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "4.0.1"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "4.1.1"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"
@@ -0,0 +1,15 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "jekyll", "4.2.2"
6
+ gem "rexml"
7
+ gem "appraisal", "~> 2.5.0"
8
+ gem "pry"
9
+ gem "rspec", "~> 3.13.0"
10
+ gem "nokogiri"
11
+ gem "base64"
12
+ gem "bigdecimal"
13
+ gem "csv"
14
+
15
+ gemspec path: "../"