jekyll_bootstrap5_tabs 1.1.1 → 1.1.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/.rubocop.yml +0 -15
- data/README.md +72 -23
- data/Rakefile +5 -2
- data/jekyll_bootstrap5_tabs.gemspec +42 -35
- data/lib/jekyll_bootstrap5_tabs/version.rb +1 -1
- data/lib/jekyll_bootstrap5_tabs.rb +76 -67
- metadata +60 -15
- data/.vscode/launch.json +0 -20
- data/Gemfile +0 -11
- data/Gemfile.lock +0 -82
- data/docs/tabDemo.gif +0 -0
- data/sig/jekyll_bootstrap5_tabs.rbs +0 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28fd4c1bfea6a0eaa6797e534f7d27306b2c5495b2ba0a1d46e9966c62d00a27
|
4
|
+
data.tar.gz: ac3490bae9d5687b9970e3cb1a86a967915d0f144aa3c6cffe886da5121cb4ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 821bee28ac628ac5b21ad3d22318270cc37b95c6807229b636e2e0264069c775cf6f223bd23a6cf3cfb740a7dfb379be5f487cd444fd79c9b9e5d747b376dc82
|
7
|
+
data.tar.gz: f46f84f70228d8f545e25075e942c1d58fd42b1cd29c8dd5130570d80b52b5a7531bee01860aa9a325edbb854705146e8ac956ff7b2bc0ec07c27d24cfbe0a7d
|
data/.rubocop.yml
CHANGED
@@ -12,20 +12,5 @@ AllCops:
|
|
12
12
|
Layout/LineLength:
|
13
13
|
Max: 150
|
14
14
|
|
15
|
-
Layout/MultilineMethodCallIndentation:
|
16
|
-
Enabled: false
|
17
|
-
|
18
|
-
Metrics/BlockLength:
|
19
|
-
Enabled: false
|
20
|
-
|
21
|
-
Style/PercentLiteralDelimiters:
|
22
|
-
Enabled: false
|
23
|
-
|
24
|
-
Style/RegexpLiteral:
|
25
|
-
Enabled: false
|
26
|
-
|
27
15
|
Style/StringLiterals:
|
28
16
|
Enabled: false
|
29
|
-
|
30
|
-
Style/StringLiteralsInInterpolation:
|
31
|
-
Enabled: false
|
data/README.md
CHANGED
@@ -7,6 +7,10 @@ Jekyll Bootstrap 5 Tabs
|
|
7
7
|
The original version, written by Artur Gabitov, expected Markdown and Bootstrap 4.
|
8
8
|
[This version](https://rubygems.org/gems/jekyll_bootstrap5_tabs) requires Bootstrap 5 and HTML, not Markdown.
|
9
9
|
|
10
|
+
More information is available on my web site about
|
11
|
+
[this Jekyll plugin](https://www.mslinn.com/blog/2022/02/13/jekyll-gem.html)
|
12
|
+
and [my other Jekyll plugins](https://www.mslinn.com/blog/2020/10/03/jekyll-plugins.html).
|
13
|
+
|
10
14
|
|
11
15
|
## Installation
|
12
16
|
|
@@ -126,51 +130,96 @@ jekyll_bootstrap5_tabs:
|
|
126
130
|
```
|
127
131
|
|
128
132
|
|
129
|
-
##
|
130
|
-
|
131
|
-
Add this line to your application's Gemfile, within the `jekyll_plugins` group:
|
133
|
+
## Building
|
132
134
|
|
133
|
-
```
|
134
|
-
|
135
|
-
|
136
|
-
end
|
135
|
+
```shell
|
136
|
+
$ rake build jekyll_bootstrap5_tabs.gemspec
|
137
|
+
jekyll_bootstrap5_tabs 1.0.0 built to pkg/jekyll_bootstrap5_tabs-1.0.0.gem.
|
137
138
|
```
|
138
139
|
|
139
|
-
|
140
|
+
The most recently built gem is provided in `pkg/`.
|
141
|
+
|
142
|
+
|
143
|
+
## Installing
|
144
|
+
|
145
|
+
```shell
|
146
|
+
$ gem install pkg/jekyll_bootstrap5_tabs-1.0.0.gem
|
147
|
+
Fetching slim-4.1.0.gem
|
148
|
+
Fetching temple-0.8.2.gem
|
149
|
+
Successfully installed temple-0.8.2
|
150
|
+
Successfully installed slim-4.1.0
|
151
|
+
Successfully installed jekyll_bootstrap5_tabs-1.0.0
|
152
|
+
Parsing documentation for temple-0.8.2
|
153
|
+
Installing ri documentation for temple-0.8.2
|
154
|
+
Parsing documentation for slim-4.1.0
|
155
|
+
Installing ri documentation for slim-4.1.0
|
156
|
+
Parsing documentation for jekyll_bootstrap5_tabs-1.0.0
|
157
|
+
Installing ri documentation for jekyll_bootstrap5_tabs-1.0.0
|
158
|
+
Done installing documentation for temple, slim, jekyll_bootstrap5_tabs after 0 seconds
|
159
|
+
3 gems installed
|
160
|
+
```
|
140
161
|
|
141
|
-
|
162
|
+
Now go use the gem in a Jekyll project!
|
142
163
|
|
143
|
-
|
144
|
-
|
145
|
-
|
164
|
+
## Companion Project: Slim Explorer
|
165
|
+
I (Mike Slinn) wanted to understand more about how Artur Gabitov got the Slim language part to work.
|
166
|
+
He only provided the end result, without any hint of how he had accomplished this.
|
167
|
+
I took on the discovery of implementing a minimal development scaffold for the Slim Language.
|
168
|
+
Check out the [Slim Explorer](https://github.com/mslinn/slim_explorer)!
|
146
169
|
|
147
170
|
|
148
171
|
## Development
|
149
172
|
|
150
173
|
After checking out the repo, run `bin/setup` to install dependencies.
|
174
|
+
|
151
175
|
You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
152
176
|
|
177
|
+
|
178
|
+
### Build and Install Locally
|
153
179
|
To install this gem onto your local machine, run:
|
180
|
+
```shell
|
181
|
+
$ rake install:local
|
154
182
|
```
|
183
|
+
|
184
|
+
The following also does the same thing:
|
185
|
+
```shell
|
155
186
|
$ bundle exec rake install
|
156
187
|
```
|
157
188
|
|
158
|
-
|
189
|
+
Examine the newly built gem:
|
190
|
+
```shell
|
191
|
+
$ gem info jekyll_bootstrap5_tabs
|
192
|
+
|
193
|
+
*** LOCAL GEMS ***
|
194
|
+
|
195
|
+
jekyll_bootstrap5_tabs (1.0.0)
|
196
|
+
Author: Mike Slinn
|
197
|
+
Homepage:
|
198
|
+
https://github.com/mslinn/jekyll_bootstrap5_tabs
|
199
|
+
License: MIT
|
200
|
+
Installed at: /home/mslinn/.gems
|
201
|
+
|
202
|
+
Jekyll plugin that enables Bootstrap 5 tabs in Jekyll 4 websites.
|
203
|
+
```
|
159
204
|
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
205
|
+
### Build and Push to RubyGems
|
206
|
+
To release a new version,
|
207
|
+
1. Update the version number in `version.rb`.
|
208
|
+
2. Commit all changes to git; if you don't the next step might fail with an unexplainable error message.
|
209
|
+
3. Run the following:
|
210
|
+
```shell
|
211
|
+
$ bundle exec rake release
|
212
|
+
```
|
213
|
+
The above creates a git tag for the version, commits the created tag,
|
214
|
+
and pushes the new `.gem` file to [RubyGems.org](https://rubygems.org).
|
169
215
|
|
170
216
|
|
171
217
|
## Contributing
|
172
218
|
|
173
|
-
|
219
|
+
1. Fork the project
|
220
|
+
2. Create a descriptively named feature branch
|
221
|
+
3. Add your feature
|
222
|
+
4. Submit a pull request
|
174
223
|
|
175
224
|
|
176
225
|
## License
|
data/Rakefile
CHANGED
@@ -1,40 +1,47 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require_relative
|
3
|
+
require_relative "lib/jekyll_bootstrap5_tabs/version"
|
4
4
|
|
5
|
+
# rubocop:disable Metrics/BlockLength
|
5
6
|
Gem::Specification.new do |spec|
|
6
|
-
|
7
|
-
|
8
|
-
spec.authors
|
9
|
-
spec.
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
spec.
|
15
|
-
spec.
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
spec.
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
spec.
|
32
|
-
spec.
|
33
|
-
spec.
|
34
|
-
|
35
|
-
|
36
|
-
spec.add_dependency
|
37
|
-
|
38
|
-
|
39
|
-
|
7
|
+
github = "https://github.com/mslinn/jekyll_bootstrap5_tabs"
|
8
|
+
|
9
|
+
spec.authors = ["Artur Gabitov", "Mike Slinn"]
|
10
|
+
spec.bindir = "bin"
|
11
|
+
spec.description = <<~END_DESC
|
12
|
+
This Jekyll plugin enables Bootstrap 5 tabs in Jekyll 4 websites.
|
13
|
+
Two new Liquid tags are provided: tabs and tab.
|
14
|
+
END_DESC
|
15
|
+
spec.email = ["applifort@gmail.com", "mslinn@mslinn.com"]
|
16
|
+
spec.files = Dir[".rubocop.yml", "LICENSE.*", "Rakefile", "{lib,spec}/**/*", "*.gemspec", "*.md"]
|
17
|
+
spec.homepage = "https://mslinn.com/blog/2022/02/13/jekyll-gem.html"
|
18
|
+
spec.license = "MIT"
|
19
|
+
spec.metadata = {
|
20
|
+
"allowed_push_host" => "https://rubygems.org",
|
21
|
+
"bug_tracker_uri" => "#{github}/issues",
|
22
|
+
"changelog_uri" => "#{github}/CHANGELOG.md",
|
23
|
+
"homepage_uri" => spec.homepage,
|
24
|
+
"source_code_uri" => github,
|
25
|
+
}
|
26
|
+
spec.name = "jekyll_bootstrap5_tabs"
|
27
|
+
spec.post_install_message = <<~END_MESSAGE
|
28
|
+
|
29
|
+
Thanks for installing #{spec.name}!
|
30
|
+
|
31
|
+
END_MESSAGE
|
32
|
+
spec.require_paths = ["lib"]
|
33
|
+
spec.required_ruby_version = ">= 2.6.0"
|
34
|
+
spec.summary = "Jekyll plugin that enables Bootstrap 5 tabs in Jekyll 4 websites."
|
35
|
+
spec.version = JekyllBootstrap5Tabs::VERSION
|
36
|
+
|
37
|
+
spec.add_dependency "jekyll", ">= 3.5.0"
|
38
|
+
spec.add_dependency "jekyll_plugin_logger"
|
39
|
+
spec.add_dependency "slim", "~> 3.0"
|
40
|
+
|
41
|
+
spec.add_development_dependency "debase"
|
42
|
+
# spec.add_development_dependency "rubocop-jekyll"
|
43
|
+
# spec.add_development_dependency "rubocop-rake"
|
44
|
+
# spec.add_development_dependency "rubocop-rspec"
|
45
|
+
spec.add_development_dependency "ruby-debug-ide"
|
40
46
|
end
|
47
|
+
# rubocop:enable Metrics/BlockLength
|
@@ -1,92 +1,101 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require
|
4
|
-
|
3
|
+
require "liquid"
|
4
|
+
require "jekyll_plugin_logger"
|
5
|
+
require "slim"
|
6
|
+
require_relative "jekyll_bootstrap5_tabs/version"
|
5
7
|
|
6
8
|
DEFAULT_TEMPLATE = 'template.slim'
|
7
9
|
|
8
|
-
module
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
10
|
+
module JekyllBootstrap5Name
|
11
|
+
PLUGIN_NAME = "jekyll_bootstrap5_tabs"
|
12
|
+
end
|
13
|
+
|
14
|
+
# Handles the outer {% tabs %}{% endtabs %} Liquid block for Bootstrap 5
|
15
|
+
class TabsBlock < Liquid::Block
|
16
|
+
def initialize(tag, args, _)
|
17
|
+
super
|
13
18
|
|
14
|
-
|
19
|
+
raise SyntaxError, "#{tag} requires name" if args.empty?
|
15
20
|
|
16
|
-
|
17
|
-
@tab_name = argv[0]
|
21
|
+
@logger = PluginMetaLogger.instance.new_logger(self)
|
18
22
|
|
19
|
-
|
20
|
-
|
21
|
-
return unless argv.length > 1 && argv[1].downcase == 'pretty'
|
23
|
+
argv = args.strip.split
|
24
|
+
@tab_name = argv[0] # TODO @tab_name is never used. Should act as a namespace.
|
22
25
|
|
26
|
+
# Usage can override default and enable pretty-printing, not possible to disable per-tab
|
27
|
+
@pretty_print = false
|
28
|
+
if argv.length > 1 && argv[1].casecmp('pretty').zero?
|
23
29
|
@pretty_print = true
|
24
|
-
|
30
|
+
@logger.info { "Bootstrap tab pretty-printing is enabled for #{@tab_name}" }
|
25
31
|
end
|
32
|
+
end
|
26
33
|
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
34
|
+
# @param config [YAML] Configuration data that might contain a entry for `jekyll_bootstrap5_tabs`
|
35
|
+
# @param progname [String] The name of the `option:` subentry to look for underneath the `jekyll_bootstrap5_tabs` entry
|
36
|
+
# @return [TrueClass, FalseClass]
|
37
|
+
def check_config_boolean(config, _option)
|
38
|
+
tabs_options = config['jekyll_bootstrap5_tabs']
|
39
|
+
return false if tabs_options.nil?
|
40
|
+
|
41
|
+
hash = tabs_options.detect { |opt| opt["pretty"] }
|
42
|
+
@logger.debug { "tabs_options = #{tabs_options}" }
|
43
|
+
@logger.debug { "hash = #{hash}" }
|
44
|
+
!hash.nil? && hash['pretty']
|
45
|
+
end
|
39
46
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
47
|
+
def template_path(template_name)
|
48
|
+
dir = File.dirname(__FILE__)
|
49
|
+
File.join(dir, template_name.to_s)
|
50
|
+
end
|
44
51
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
end
|
53
|
-
|
54
|
-
@environment = context.environments.first # Has type Jekyll::Drops::UnifiedPayloadDrop
|
55
|
-
Jekyll.logger.debug "TabsBlock.render: @environment = '#{@environment}'"
|
56
|
-
super
|
57
|
-
|
58
|
-
template_file_path = template_path(DEFAULT_TEMPLATE)
|
59
|
-
Slim::Engine.set_options pretty: @pretty_print
|
60
|
-
template = Slim::Template.new(template_file_path)
|
61
|
-
template.render(self)
|
52
|
+
def render(context)
|
53
|
+
site = context.registers[:site]
|
54
|
+
# Set the pretty-print option for the Slim engine
|
55
|
+
# Global configuration provides the default value of @pretty_print
|
56
|
+
if check_config_boolean(site.config, 'pretty')
|
57
|
+
@pretty_print = true
|
58
|
+
@logger.info { "Bootstrap tab pretty-printing is enabled by default for the entire Jekyll site." }
|
62
59
|
end
|
60
|
+
|
61
|
+
@environment = context.environments.first # Has type Jekyll::Drops::UnifiedPayloadDrop
|
62
|
+
@logger.debug { "TabsBlock.render: @environment = '#{@environment}'" }
|
63
|
+
super
|
64
|
+
|
65
|
+
template_file_path = template_path(DEFAULT_TEMPLATE)
|
66
|
+
Slim::Engine.set_options :pretty => @pretty_print
|
67
|
+
template = Slim::Template.new(template_file_path)
|
68
|
+
template.render(self)
|
63
69
|
end
|
70
|
+
end
|
64
71
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
72
|
+
# Handles the inner {% tab %}{% endtab %} Liquid block for Bootstrap 5
|
73
|
+
class TabBlock < Liquid::Block
|
74
|
+
def initialize(tag, args, _)
|
75
|
+
super
|
69
76
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
77
|
+
@logger = PluginMetaLogger.instance.new_logger(self)
|
78
|
+
|
79
|
+
@tabs_group, @tab = split_params(args.strip)
|
80
|
+
@logger.debug { "TabBlock: @tabs_group = '#{@tabs_group}', @tab = '#{@tab}'" }
|
81
|
+
raise SyntaxError, "Block #{tag} requires tabs name" if @tabs_group.empty? || @tab.empty?
|
82
|
+
end
|
74
83
|
|
75
|
-
|
76
|
-
|
84
|
+
def render(context)
|
85
|
+
content = super
|
77
86
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
87
|
+
environment = context.environments.first # Has type Jekyll::Drops::UnifiedPayloadDrop
|
88
|
+
environment["tabs-#{@tabs_group}"] ||= {}
|
89
|
+
environment["tabs-#{@tabs_group}"][@tab] = content
|
90
|
+
end
|
82
91
|
|
83
|
-
|
92
|
+
private
|
84
93
|
|
85
|
-
|
86
|
-
|
87
|
-
end
|
94
|
+
def split_params(params)
|
95
|
+
params.split('#')
|
88
96
|
end
|
89
97
|
end
|
90
98
|
|
91
|
-
|
92
|
-
Liquid::Template.register_tag('
|
99
|
+
PluginMetaLogger.instance.info { "Loaded #{JekyllBootstrap5Name::PLUGIN_NAME} v#{JekyllBootstrap5Tabs::VERSION} plugin." }
|
100
|
+
Liquid::Template.register_tag('tabs', TabsBlock)
|
101
|
+
Liquid::Template.register_tag('tab', TabBlock)
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_bootstrap5_tabs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Artur Gabitov
|
8
8
|
- Mike Slinn
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-03-
|
12
|
+
date: 2022-03-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|
@@ -17,14 +17,28 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: 3.5.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - ">="
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
27
|
+
version: 3.5.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: jekyll_plugin_logger
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ">="
|
33
|
+
- !ruby/object:Gem::Version
|
34
|
+
version: '0'
|
35
|
+
type: :runtime
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ">="
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
28
42
|
- !ruby/object:Gem::Dependency
|
29
43
|
name: slim
|
30
44
|
requirement: !ruby/object:Gem::Requirement
|
@@ -39,7 +53,37 @@ dependencies:
|
|
39
53
|
- - "~>"
|
40
54
|
- !ruby/object:Gem::Version
|
41
55
|
version: '3.0'
|
42
|
-
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: debase
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
- !ruby/object:Gem::Dependency
|
71
|
+
name: ruby-debug-ide
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
type: :development
|
78
|
+
prerelease: false
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
description: |
|
85
|
+
This Jekyll plugin enables Bootstrap 5 tabs in Jekyll 4 websites.
|
86
|
+
Two new Liquid tags are provided: tabs and tab.
|
43
87
|
email:
|
44
88
|
- applifort@gmail.com
|
45
89
|
- mslinn@mslinn.com
|
@@ -48,26 +92,27 @@ extensions: []
|
|
48
92
|
extra_rdoc_files: []
|
49
93
|
files:
|
50
94
|
- ".rubocop.yml"
|
51
|
-
- ".vscode/launch.json"
|
52
95
|
- CHANGELOG.md
|
53
|
-
- Gemfile
|
54
|
-
- Gemfile.lock
|
55
96
|
- LICENSE.txt
|
56
97
|
- README.md
|
57
98
|
- Rakefile
|
58
|
-
- docs/tabDemo.gif
|
59
99
|
- jekyll_bootstrap5_tabs.gemspec
|
60
100
|
- lib/jekyll_bootstrap5_tabs.rb
|
61
101
|
- lib/jekyll_bootstrap5_tabs/version.rb
|
62
102
|
- lib/template.slim
|
63
|
-
- sig/jekyll_bootstrap5_tabs.rbs
|
64
103
|
homepage: https://mslinn.com/blog/2022/02/13/jekyll-gem.html
|
65
104
|
licenses:
|
66
105
|
- MIT
|
67
106
|
metadata:
|
107
|
+
allowed_push_host: https://rubygems.org
|
108
|
+
bug_tracker_uri: https://github.com/mslinn/jekyll_bootstrap5_tabs/issues
|
109
|
+
changelog_uri: https://github.com/mslinn/jekyll_bootstrap5_tabs/CHANGELOG.md
|
68
110
|
homepage_uri: https://mslinn.com/blog/2022/02/13/jekyll-gem.html
|
69
111
|
source_code_uri: https://github.com/mslinn/jekyll_bootstrap5_tabs
|
70
|
-
post_install_message:
|
112
|
+
post_install_message: |2+
|
113
|
+
|
114
|
+
Thanks for installing jekyll_bootstrap5_tabs!
|
115
|
+
|
71
116
|
rdoc_options: []
|
72
117
|
require_paths:
|
73
118
|
- lib
|
@@ -82,8 +127,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
127
|
- !ruby/object:Gem::Version
|
83
128
|
version: '0'
|
84
129
|
requirements: []
|
85
|
-
rubygems_version: 3.
|
86
|
-
signing_key:
|
130
|
+
rubygems_version: 3.1.4
|
131
|
+
signing_key:
|
87
132
|
specification_version: 4
|
88
|
-
summary: Jekyll plugin
|
133
|
+
summary: Jekyll plugin that enables Bootstrap 5 tabs in Jekyll 4 websites.
|
89
134
|
test_files: []
|
data/.vscode/launch.json
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
{
|
2
|
-
// Use IntelliSense to learn about possible attributes.
|
3
|
-
// Hover to view descriptions of existing attributes.
|
4
|
-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5
|
-
"version": "0.2.0",
|
6
|
-
"configurations": [
|
7
|
-
{
|
8
|
-
"name": "Debug test/test3.rb",
|
9
|
-
"type": "Ruby",
|
10
|
-
"request": "launch",
|
11
|
-
"program": "test/test3.rb"
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"name": "Debug test/test.rb",
|
15
|
-
"type": "Ruby",
|
16
|
-
"request": "launch",
|
17
|
-
"program": "${workspaceFolderBasename}/test/test.rb"
|
18
|
-
}
|
19
|
-
]
|
20
|
-
}
|
data/Gemfile
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
source 'https://rubygems.org'
|
4
|
-
|
5
|
-
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
6
|
-
|
7
|
-
# The gem's dependencies are specified in jekyll_bootstrap5_tabs.gemspec
|
8
|
-
gemspec
|
9
|
-
|
10
|
-
gem 'listen'
|
11
|
-
gem 'rake', '~> 13.0'
|
data/Gemfile.lock
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
jekyll_bootstrap5_tabs (1.1.1)
|
5
|
-
jekyll (>= 3.0)
|
6
|
-
slim (~> 3.0)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
addressable (2.8.0)
|
12
|
-
public_suffix (>= 2.0.2, < 5.0)
|
13
|
-
colorator (1.1.0)
|
14
|
-
concurrent-ruby (1.1.9)
|
15
|
-
em-websocket (0.5.3)
|
16
|
-
eventmachine (>= 0.12.9)
|
17
|
-
http_parser.rb (~> 0)
|
18
|
-
eventmachine (1.2.7)
|
19
|
-
ffi (1.15.5)
|
20
|
-
forwardable-extended (2.6.0)
|
21
|
-
http_parser.rb (0.8.0)
|
22
|
-
i18n (1.10.0)
|
23
|
-
concurrent-ruby (~> 1.0)
|
24
|
-
jekyll (4.2.2)
|
25
|
-
addressable (~> 2.4)
|
26
|
-
colorator (~> 1.0)
|
27
|
-
em-websocket (~> 0.5)
|
28
|
-
i18n (~> 1.0)
|
29
|
-
jekyll-sass-converter (~> 2.0)
|
30
|
-
jekyll-watch (~> 2.0)
|
31
|
-
kramdown (~> 2.3)
|
32
|
-
kramdown-parser-gfm (~> 1.0)
|
33
|
-
liquid (~> 4.0)
|
34
|
-
mercenary (~> 0.4.0)
|
35
|
-
pathutil (~> 0.9)
|
36
|
-
rouge (~> 3.0)
|
37
|
-
safe_yaml (~> 1.0)
|
38
|
-
terminal-table (~> 2.0)
|
39
|
-
jekyll-sass-converter (2.2.0)
|
40
|
-
sassc (> 2.0.1, < 3.0)
|
41
|
-
jekyll-watch (2.2.1)
|
42
|
-
listen (~> 3.0)
|
43
|
-
kramdown (2.3.1)
|
44
|
-
rexml
|
45
|
-
kramdown-parser-gfm (1.1.0)
|
46
|
-
kramdown (~> 2.0)
|
47
|
-
liquid (4.0.3)
|
48
|
-
listen (3.7.1)
|
49
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
50
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
51
|
-
mercenary (0.4.0)
|
52
|
-
pathutil (0.16.2)
|
53
|
-
forwardable-extended (~> 2.6)
|
54
|
-
public_suffix (4.0.6)
|
55
|
-
rake (13.0.6)
|
56
|
-
rb-fsevent (0.11.1)
|
57
|
-
rb-inotify (0.10.1)
|
58
|
-
ffi (~> 1.0)
|
59
|
-
rexml (3.2.5)
|
60
|
-
rouge (3.28.0)
|
61
|
-
safe_yaml (1.0.5)
|
62
|
-
sassc (2.4.0)
|
63
|
-
ffi (~> 1.9)
|
64
|
-
slim (3.0.9)
|
65
|
-
temple (>= 0.7.6, < 0.9)
|
66
|
-
tilt (>= 1.3.3, < 2.1)
|
67
|
-
temple (0.8.2)
|
68
|
-
terminal-table (2.0.0)
|
69
|
-
unicode-display_width (~> 1.1, >= 1.1.1)
|
70
|
-
tilt (2.0.10)
|
71
|
-
unicode-display_width (1.8.0)
|
72
|
-
|
73
|
-
PLATFORMS
|
74
|
-
x86_64-linux
|
75
|
-
|
76
|
-
DEPENDENCIES
|
77
|
-
jekyll_bootstrap5_tabs!
|
78
|
-
listen
|
79
|
-
rake (~> 13.0)
|
80
|
-
|
81
|
-
BUNDLED WITH
|
82
|
-
2.3.7
|
data/docs/tabDemo.gif
DELETED
Binary file
|