bootstrap4jekyll 1.0.1 → 3.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.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +31 -0
- data/.gitignore +135 -0
- data/.rubocop.yml +1 -1
- data/History.md +9 -0
- data/README.md +67 -55
- data/bootstrap4jekyll.gemspec +13 -10
- data/lib/bootstrap4jekyll/version.rb +1 -1
- metadata +51 -23
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67a51c3636d53525c8d48c8908368f87207e020f3d53eb36970248f13101f717
|
|
4
|
+
data.tar.gz: 00d07d49f1b9dfa00b6a6b7bbad4a784568148ea00afb91fbc900fa98eeee21b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 808e2caffc921d58087d8b9360003f6f2430add0a67a7d9e7818de10fbf7bbad44bcaa3df7fce36dc9d907faa09cd9834f47e600f9f97a53330724d5ac1eaf98
|
|
7
|
+
data.tar.gz: c97001b4939150a330de5f5e501219778a13bc5e853b3da102be11ef4bd4d08ebe7532d2035bf7ca3665aa74d7906eeddc9345b3b2d027696cf80acb7db514ab
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [ main, master ]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [ main, master ]
|
|
8
|
+
schedule:
|
|
9
|
+
# Runs at 04:17 on the 17th of every month to avoid the "1st of the month" peak
|
|
10
|
+
- cron: '17 4 17 * *'
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
test:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
strategy:
|
|
16
|
+
fail-fast: false
|
|
17
|
+
matrix:
|
|
18
|
+
# Testing against 3.1, 3.4 and the latest stable release (currently 4.0)
|
|
19
|
+
ruby-version: ['3.2', '3.4', 'ruby']
|
|
20
|
+
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v4
|
|
23
|
+
|
|
24
|
+
- name: Set up Ruby
|
|
25
|
+
uses: ruby/setup-ruby@v1
|
|
26
|
+
with:
|
|
27
|
+
ruby-version: ${{ matrix.ruby-version }}
|
|
28
|
+
bundler-cache: true # Runs 'bundle install' and caches gems automatically
|
|
29
|
+
|
|
30
|
+
- name: Run specs
|
|
31
|
+
run: bundle exec rspec
|
data/.gitignore
CHANGED
|
@@ -15,3 +15,138 @@ _site/
|
|
|
15
15
|
# rspec failure tracking
|
|
16
16
|
.rspec_status
|
|
17
17
|
|
|
18
|
+
### Jekyll template
|
|
19
|
+
# Ignore folders generated by Bundler
|
|
20
|
+
.bundle/
|
|
21
|
+
vendor/
|
|
22
|
+
|
|
23
|
+
### JetBrains template
|
|
24
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
|
25
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
26
|
+
|
|
27
|
+
# User-specific stuff
|
|
28
|
+
.idea/**/workspace.xml
|
|
29
|
+
.idea/**/tasks.xml
|
|
30
|
+
.idea/**/usage.statistics.xml
|
|
31
|
+
.idea/**/dictionaries
|
|
32
|
+
.idea/**/shelf
|
|
33
|
+
|
|
34
|
+
# AWS User-specific
|
|
35
|
+
.idea/**/aws.xml
|
|
36
|
+
|
|
37
|
+
# Generated files
|
|
38
|
+
.idea/**/contentModel.xml
|
|
39
|
+
|
|
40
|
+
# Sensitive or high-churn files
|
|
41
|
+
.idea/**/dataSources/
|
|
42
|
+
.idea/**/dataSources.ids
|
|
43
|
+
.idea/**/dataSources.local.xml
|
|
44
|
+
.idea/**/sqlDataSources.xml
|
|
45
|
+
.idea/**/dynamic.xml
|
|
46
|
+
.idea/**/uiDesigner.xml
|
|
47
|
+
.idea/**/dbnavigator.xml
|
|
48
|
+
|
|
49
|
+
# Gradle
|
|
50
|
+
.idea/**/gradle.xml
|
|
51
|
+
.idea/**/libraries
|
|
52
|
+
|
|
53
|
+
# Gradle and Maven with auto-import
|
|
54
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
|
55
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
|
56
|
+
# auto-import.
|
|
57
|
+
# .idea/artifacts
|
|
58
|
+
# .idea/compiler.xml
|
|
59
|
+
# .idea/jarRepositories.xml
|
|
60
|
+
# .idea/modules.xml
|
|
61
|
+
# .idea/*.iml
|
|
62
|
+
# .idea/modules
|
|
63
|
+
# *.iml
|
|
64
|
+
# *.ipr
|
|
65
|
+
|
|
66
|
+
# CMake
|
|
67
|
+
cmake-build-*/
|
|
68
|
+
|
|
69
|
+
# Mongo Explorer plugin
|
|
70
|
+
.idea/**/mongoSettings.xml
|
|
71
|
+
|
|
72
|
+
# File-based project format
|
|
73
|
+
*.iws
|
|
74
|
+
|
|
75
|
+
# IntelliJ
|
|
76
|
+
out/
|
|
77
|
+
|
|
78
|
+
# mpeltonen/sbt-idea plugin
|
|
79
|
+
.idea_modules/
|
|
80
|
+
|
|
81
|
+
# JIRA plugin
|
|
82
|
+
atlassian-ide-plugin.xml
|
|
83
|
+
|
|
84
|
+
# Cursive Clojure plugin
|
|
85
|
+
.idea/replstate.xml
|
|
86
|
+
|
|
87
|
+
# SonarLint plugin
|
|
88
|
+
.idea/sonarlint/
|
|
89
|
+
|
|
90
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
91
|
+
com_crashlytics_export_strings.xml
|
|
92
|
+
crashlytics.properties
|
|
93
|
+
crashlytics-build.properties
|
|
94
|
+
fabric.properties
|
|
95
|
+
|
|
96
|
+
# Editor-based Rest Client
|
|
97
|
+
.idea/httpRequests
|
|
98
|
+
|
|
99
|
+
# Android studio 3.1+ serialized cache file
|
|
100
|
+
.idea/caches/build_file_checksums.ser
|
|
101
|
+
|
|
102
|
+
### Ruby template
|
|
103
|
+
*.gem
|
|
104
|
+
*.rbc
|
|
105
|
+
/.config
|
|
106
|
+
/InstalledFiles
|
|
107
|
+
/spec/examples.txt
|
|
108
|
+
/test/tmp/
|
|
109
|
+
/test/version_tmp/
|
|
110
|
+
|
|
111
|
+
# Used by dotenv library to load environment variables.
|
|
112
|
+
# .env
|
|
113
|
+
|
|
114
|
+
# Ignore Byebug command history file.
|
|
115
|
+
.byebug_history
|
|
116
|
+
|
|
117
|
+
## Specific to RubyMotion:
|
|
118
|
+
.dat*
|
|
119
|
+
.repl_history
|
|
120
|
+
build/
|
|
121
|
+
*.bridgesupport
|
|
122
|
+
build-iPhoneOS/
|
|
123
|
+
build-iPhoneSimulator/
|
|
124
|
+
|
|
125
|
+
## Specific to RubyMotion (use of CocoaPods):
|
|
126
|
+
#
|
|
127
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
|
128
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
|
129
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
|
130
|
+
#
|
|
131
|
+
# vendor/Pods/
|
|
132
|
+
|
|
133
|
+
## Documentation cache and generated files:
|
|
134
|
+
/.yardoc/
|
|
135
|
+
/rdoc/
|
|
136
|
+
|
|
137
|
+
## Environment normalization:
|
|
138
|
+
/vendor/bundle
|
|
139
|
+
/lib/bundler/man/
|
|
140
|
+
|
|
141
|
+
# for a library or gem, you might want to ignore these files since the code is
|
|
142
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
143
|
+
Gemfile.lock
|
|
144
|
+
.ruby-version
|
|
145
|
+
.ruby-gemset
|
|
146
|
+
|
|
147
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
148
|
+
.rvmrc
|
|
149
|
+
|
|
150
|
+
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
|
151
|
+
# .rubocop-https?--*
|
|
152
|
+
|
data/.rubocop.yml
CHANGED
data/History.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 3.0.0 / 2026-02-12
|
|
2
|
+
* Updated minimum Ruby requirement to 3.1.
|
|
3
|
+
* Upgraded jekyll-sass-converter dependency to version 3.0 or higher.
|
|
4
|
+
* Added support for silencing Sass deprecation warnings via Jekyll configuration.
|
|
5
|
+
* Updated development dependencies and modernised the internal toolchain.
|
|
6
|
+
## 2.0.1 / 2021-11-02
|
|
7
|
+
* Bumped Bootstrap to version 5.1
|
|
8
|
+
## 2.0.0 / 2021-07-14
|
|
9
|
+
* Bumped all gems to their newest version. Especially Bootstrap is now 5.0
|
|
1
10
|
## 1.0.1 / 2020-06-17
|
|
2
11
|
* First official version
|
|
3
12
|
## 1.0.1.pre / 2020-06-08
|
data/README.md
CHANGED
|
@@ -1,66 +1,63 @@
|
|
|
1
1
|
# bootstrap4jekyll
|
|
2
|
-
Adds the
|
|
3
|
-
[Twitter Bootstrap](https://getbootstrap.com/)
|
|
4
|
-
framework to your _Jekyll_ site.
|
|
5
2
|
|
|
6
|
-
|
|
7
|
-
[
|
|
8
|
-
exists as a GEM, called [Bootstrap Ruby Gem][BRG],
|
|
9
|
-
it cannot be used directly in a _Jekyll_ site, because it is specifically made for the
|
|
10
|
-
_Rails_ asset pipeline.
|
|
3
|
+
[](https://badge.fury.io/rb/bootstrap4jekyll)
|
|
4
|
+
[](https://github.com/free-creations/bootstrap4jekyll/actions/workflows/ruby.yml)
|
|
11
5
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
6
|
+
**The modern bridge between Jekyll and Bootstrap 5.**
|
|
7
|
+
|
|
8
|
+
Adds the [Twitter Bootstrap](https://getbootstrap.com/) framework to your _Jekyll_ site.
|
|
9
|
+
|
|
10
|
+
> **Note on Versioning:** Despite the name, `bootstrap4jekyll` fully supports **Bootstrap 5.x** and is a maintained
|
|
11
|
+
> alternative to the now-archived `jekyll-bootstrap-sass`.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
Although the
|
|
15
|
+
[Twitter Bootstrap][TBstrp] framework
|
|
16
|
+
is available as a Ruby gem ([Bootstrap Ruby Gem][BRG]),
|
|
17
|
+
it cannot be used directly in a Jekyll site because it is specifically designed for the Rails asset pipeline.
|
|
16
18
|
|
|
17
|
-
|
|
18
|
-
[
|
|
19
|
-
|
|
19
|
+
_bootstrap4jekyll_ integrates the
|
|
20
|
+
[Bootstrap Ruby Gem][BRG]
|
|
21
|
+
into Jekyll, making the framework available to Jekyll users.
|
|
22
|
+
This gem is inspired by the `jekyll-bootstrap-sass` gem, which is no longer maintained.
|
|
20
23
|
|
|
21
|
-
## Installation
|
|
24
|
+
## Installation for a Standard Jekyll Site
|
|
22
25
|
|
|
23
26
|
Add the following to your site's `Gemfile`:
|
|
24
27
|
|
|
25
28
|
```ruby
|
|
26
29
|
group :jekyll_plugins do
|
|
27
|
-
gem "bootstrap4jekyll", "~>
|
|
30
|
+
gem "bootstrap4jekyll", "~> 3.0"
|
|
28
31
|
end
|
|
29
32
|
```
|
|
30
|
-
|
|
33
|
+
Then run Bundler:
|
|
31
34
|
|
|
32
|
-
```
|
|
35
|
+
```
|
|
33
36
|
$ bundle install
|
|
34
37
|
```
|
|
35
|
-
This will add the `bootstrap4jekyll` plugin to your site. Together with the plugin also the
|
|
36
|
-
[Twitter Bootstrap][TBstrp] - framework
|
|
37
|
-
will added to your site.
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
This will add the `bootstrap4jekyll` plugin to your site, along with the [Twitter Bootstrap][TBstrp] framework.
|
|
40
|
+
|
|
41
|
+
## Installation for a Jekyll Theme
|
|
40
42
|
|
|
41
|
-
|
|
42
|
-
should declare it in your `*.gemspec` file. Like this:
|
|
43
|
+
If you are building a Jekyll theme, declare the plugin in your `*.gemspec` file instead of the `Gemfile`:
|
|
43
44
|
|
|
44
45
|
```ruby
|
|
45
|
-
|
|
46
|
+
spec.add_runtime_dependency "bootstrap4jekyll", "~> 3.0"
|
|
46
47
|
```
|
|
48
|
+
Additionally, add it to your `_config.yml` file:
|
|
47
49
|
|
|
48
|
-
And additionally in your `_config.yml` file, like this:
|
|
49
50
|
```yaml
|
|
50
51
|
plugins:
|
|
51
52
|
- bootstrap4jekyll
|
|
52
53
|
```
|
|
53
54
|
|
|
54
|
-
When
|
|
55
|
-
and the [Twitter Bootstrap][TBstrp] - framework
|
|
56
|
-
will be automatically loaded
|
|
57
|
-
together with your theme.
|
|
55
|
+
When this theme is used in a Jekyll site, the plugin and the Bootstrap framework will be loaded automatically.
|
|
58
56
|
|
|
59
57
|
## Usage
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
Create a `.scss` file (e.g., `assets/myStyle.scss`), with the following:
|
|
58
|
+
|
|
59
|
+
To customise the Bootstrap framework, follow the standard [Jekyll Assets documentation](https://jekyllrb.com/docs/assets/).
|
|
60
|
+
Create a `.scss` file (e.g., `assets/style.scss`) with the following content:
|
|
64
61
|
|
|
65
62
|
```scss
|
|
66
63
|
---
|
|
@@ -68,44 +65,59 @@ Create a `.scss` file (e.g., `assets/myStyle.scss`), with the following:
|
|
|
68
65
|
|
|
69
66
|
@import 'bootstrap';
|
|
70
67
|
|
|
71
|
-
//
|
|
68
|
+
// Your custom SCSS goes here
|
|
72
69
|
```
|
|
73
|
-
When your site is built, Jekyll will automatically add the [Twitter Bootstrap][TBstrp] - framework
|
|
74
|
-
before it renders
|
|
75
|
-
your site's css. In the above example, the resulting file would be `assets/myStyle.css`
|
|
76
|
-
with Bootstrap's CSS followed by your own.
|
|
77
70
|
|
|
78
|
-
|
|
71
|
+
When your site is built, Jekyll will automatically include the Bootstrap framework before rendering your site's CSS.
|
|
72
|
+
In the example above, the resulting file would be `assets/style.css`.
|
|
73
|
+
|
|
74
|
+
## JavaScript Assets
|
|
79
75
|
|
|
80
|
-
By default, `bootstrap4jekyll`
|
|
81
|
-
to your custom stylesheets so that you can more easily include Bootstrap's CSS.
|
|
76
|
+
By default, `bootstrap4jekyll` makes the `@import 'bootstrap';` directive available to your stylesheets.
|
|
82
77
|
|
|
83
|
-
If you
|
|
84
|
-
following to your site's `_config.yml`:
|
|
78
|
+
If you wish to use Bootstrap's JavaScript components, add the following to your site's `_config.yml`:
|
|
85
79
|
|
|
86
80
|
```yaml
|
|
87
81
|
bootstrap:
|
|
88
82
|
assets: true
|
|
89
83
|
```
|
|
90
|
-
This will create `assets/javascripts/bootstrap` folders in the generated site,
|
|
91
|
-
which you can include in your site's header as you would any other javascript file.
|
|
92
84
|
|
|
93
|
-
|
|
85
|
+
This will copy the Bootstrap JavaScript files into the `assets/javascripts/bootstrap` folder of the generated site.
|
|
86
|
+
You can then include them in your layout as you would any other JavaScript file.
|
|
87
|
+
Note that Bootstrap 5.x no longer requires jQuery but may require Popper.js for certain components
|
|
88
|
+
(which is included in the bundle).
|
|
94
89
|
|
|
95
|
-
|
|
96
|
-
By default, the newest version starting from 4.2 will be used.
|
|
90
|
+
## Silencing Sass Deprecation Warnings
|
|
97
91
|
|
|
98
|
-
|
|
99
|
-
|
|
92
|
+
Jekyll uses the [jekyll-sass-converter](https://jekyllrb.com/docs/configuration/sass/) to process stylesheets.
|
|
93
|
+
When using Bootstrap 5.x, you may encounter several deprecation warnings in your console.
|
|
94
|
+
|
|
95
|
+
To silence these, configure the Sass compiler in your `_config.yml`:
|
|
96
|
+
|
|
97
|
+
```yaml
|
|
98
|
+
sass:
|
|
99
|
+
silence_deprecations:
|
|
100
|
+
- global-builtin
|
|
101
|
+
- import
|
|
102
|
+
- color-functions
|
|
103
|
+
- if-function
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
## Specifying the Bootstrap Version
|
|
108
|
+
|
|
109
|
+
`bootstrap4jekyll` relies on the official [Bootstrap Ruby Gem][BRG]. By default, the latest version (5.x) will be used.
|
|
110
|
+
|
|
111
|
+
To use a specific version of Bootstrap, simply specify it in your `Gemfile`:
|
|
100
112
|
|
|
101
113
|
```ruby
|
|
102
|
-
|
|
114
|
+
gem 'bootstrap', '~> 5.3'
|
|
103
115
|
```
|
|
104
116
|
|
|
105
|
-
To see how the version of the [Bootstrap Ruby Gem][BRG] relates to the version of the included
|
|
106
|
-
_framework_, look into the [GEM's changelog][BRGchangeLog]
|
|
107
117
|
|
|
118
|
+
To see how the version of the Bootstrap gem relates to the framework version, please consult the [GEM's changelog][BRGchangeLog].
|
|
108
119
|
|
|
109
120
|
[BRG]: https://rubygems.org/gems/bootstrap
|
|
110
121
|
[BRGchangeLog]: https://github.com/twbs/bootstrap-rubygem/blob/master/CHANGELOG.md
|
|
111
122
|
[TBstrp]: https://getbootstrap.com/
|
|
123
|
+
|
data/bootstrap4jekyll.gemspec
CHANGED
|
@@ -7,9 +7,10 @@ Gem::Specification.new do |gem_spec|
|
|
|
7
7
|
gem_spec.version = Bootstrap4jekyll::VERSION
|
|
8
8
|
gem_spec.authors = ['Harald Postner']
|
|
9
9
|
gem_spec.email = ['Harald-lb@free-creations.de']
|
|
10
|
+
gem_spec.license = 'MIT'
|
|
10
11
|
|
|
11
|
-
gem_spec.summary = 'A Jekyll plugin that adds the Twitter Bootstrap framework to your site.'
|
|
12
|
-
gem_spec.description = '
|
|
12
|
+
gem_spec.summary = 'A Jekyll plugin that adds the Twitter Bootstrap 5 framework to your site.'
|
|
13
|
+
gem_spec.description = 'A maintained and modern replacement for jekyll-bootstrap-sass, supporting Bootstrap 5 and Jekyll 4.'
|
|
13
14
|
gem_spec.homepage = 'https://github.com/free-creations/bootstrap4jekyll'
|
|
14
15
|
|
|
15
16
|
gem_spec.metadata = {
|
|
@@ -19,7 +20,7 @@ Gem::Specification.new do |gem_spec|
|
|
|
19
20
|
'bug_tracker_uri' => 'https://github.com/free-creations/bootstrap4jekyll/issues'
|
|
20
21
|
}
|
|
21
22
|
|
|
22
|
-
gem_spec.required_ruby_version = Gem::Requirement.new('>=
|
|
23
|
+
gem_spec.required_ruby_version = Gem::Requirement.new('>= 3.1')
|
|
23
24
|
|
|
24
25
|
gem_spec.metadata['homepage_uri'] = gem_spec.homepage
|
|
25
26
|
gem_spec.metadata['source_code_uri'] = gem_spec.homepage
|
|
@@ -34,14 +35,16 @@ Gem::Specification.new do |gem_spec|
|
|
|
34
35
|
gem_spec.executables = gem_spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
35
36
|
gem_spec.require_paths = ['lib']
|
|
36
37
|
|
|
37
|
-
gem_spec.add_dependency 'bootstrap', '>=
|
|
38
|
-
gem_spec.add_dependency 'jekyll', '>= 4.
|
|
38
|
+
gem_spec.add_dependency 'bootstrap', '>= 5.1'
|
|
39
|
+
gem_spec.add_dependency 'jekyll', '>= 4.2'
|
|
40
|
+
gem_spec.add_dependency 'jekyll-sass-converter', '>= 3.0' # Required for 'silence_deprecations' support.
|
|
39
41
|
|
|
40
42
|
gem_spec.add_development_dependency 'bundler'
|
|
41
|
-
gem_spec.add_development_dependency 'rake', '~>
|
|
42
|
-
gem_spec.add_development_dependency 'rspec', '~> 3.
|
|
43
|
-
gem_spec.add_development_dependency 'rubocop', '~>
|
|
44
|
-
gem_spec.add_development_dependency 'rubocop-
|
|
45
|
-
gem_spec.add_development_dependency '
|
|
43
|
+
gem_spec.add_development_dependency 'rake', '~> 13.0'
|
|
44
|
+
gem_spec.add_development_dependency 'rspec', '~> 3.10'
|
|
45
|
+
gem_spec.add_development_dependency 'rubocop', '~> 1.18.3'
|
|
46
|
+
gem_spec.add_development_dependency 'rubocop-rake', '~> 0.6.0'
|
|
47
|
+
gem_spec.add_development_dependency 'rubocop-rspec', '~> 2.4'
|
|
48
|
+
gem_spec.add_development_dependency 'simplecov', '~> 0.21'
|
|
46
49
|
gem_spec.add_development_dependency 'yard'
|
|
47
50
|
end
|
metadata
CHANGED
|
@@ -1,17 +1,30 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootstrap4jekyll
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 3.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Harald Postner
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: bootstrap
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '5.1'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - ">="
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '5.1'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: jekyll
|
|
15
28
|
requirement: !ruby/object:Gem::Requirement
|
|
16
29
|
requirements:
|
|
17
30
|
- - ">="
|
|
@@ -25,19 +38,19 @@ dependencies:
|
|
|
25
38
|
- !ruby/object:Gem::Version
|
|
26
39
|
version: '4.2'
|
|
27
40
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: jekyll
|
|
41
|
+
name: jekyll-sass-converter
|
|
29
42
|
requirement: !ruby/object:Gem::Requirement
|
|
30
43
|
requirements:
|
|
31
44
|
- - ">="
|
|
32
45
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
46
|
+
version: '3.0'
|
|
34
47
|
type: :runtime
|
|
35
48
|
prerelease: false
|
|
36
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
50
|
requirements:
|
|
38
51
|
- - ">="
|
|
39
52
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
53
|
+
version: '3.0'
|
|
41
54
|
- !ruby/object:Gem::Dependency
|
|
42
55
|
name: bundler
|
|
43
56
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -58,70 +71,84 @@ dependencies:
|
|
|
58
71
|
requirements:
|
|
59
72
|
- - "~>"
|
|
60
73
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '
|
|
74
|
+
version: '13.0'
|
|
62
75
|
type: :development
|
|
63
76
|
prerelease: false
|
|
64
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
78
|
requirements:
|
|
66
79
|
- - "~>"
|
|
67
80
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '
|
|
81
|
+
version: '13.0'
|
|
69
82
|
- !ruby/object:Gem::Dependency
|
|
70
83
|
name: rspec
|
|
71
84
|
requirement: !ruby/object:Gem::Requirement
|
|
72
85
|
requirements:
|
|
73
86
|
- - "~>"
|
|
74
87
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '3.
|
|
88
|
+
version: '3.10'
|
|
76
89
|
type: :development
|
|
77
90
|
prerelease: false
|
|
78
91
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
92
|
requirements:
|
|
80
93
|
- - "~>"
|
|
81
94
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '3.
|
|
95
|
+
version: '3.10'
|
|
83
96
|
- !ruby/object:Gem::Dependency
|
|
84
97
|
name: rubocop
|
|
85
98
|
requirement: !ruby/object:Gem::Requirement
|
|
86
99
|
requirements:
|
|
87
100
|
- - "~>"
|
|
88
101
|
- !ruby/object:Gem::Version
|
|
89
|
-
version:
|
|
102
|
+
version: 1.18.3
|
|
103
|
+
type: :development
|
|
104
|
+
prerelease: false
|
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
106
|
+
requirements:
|
|
107
|
+
- - "~>"
|
|
108
|
+
- !ruby/object:Gem::Version
|
|
109
|
+
version: 1.18.3
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: rubocop-rake
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "~>"
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: 0.6.0
|
|
90
117
|
type: :development
|
|
91
118
|
prerelease: false
|
|
92
119
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
120
|
requirements:
|
|
94
121
|
- - "~>"
|
|
95
122
|
- !ruby/object:Gem::Version
|
|
96
|
-
version:
|
|
123
|
+
version: 0.6.0
|
|
97
124
|
- !ruby/object:Gem::Dependency
|
|
98
125
|
name: rubocop-rspec
|
|
99
126
|
requirement: !ruby/object:Gem::Requirement
|
|
100
127
|
requirements:
|
|
101
128
|
- - "~>"
|
|
102
129
|
- !ruby/object:Gem::Version
|
|
103
|
-
version:
|
|
130
|
+
version: '2.4'
|
|
104
131
|
type: :development
|
|
105
132
|
prerelease: false
|
|
106
133
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
134
|
requirements:
|
|
108
135
|
- - "~>"
|
|
109
136
|
- !ruby/object:Gem::Version
|
|
110
|
-
version:
|
|
137
|
+
version: '2.4'
|
|
111
138
|
- !ruby/object:Gem::Dependency
|
|
112
139
|
name: simplecov
|
|
113
140
|
requirement: !ruby/object:Gem::Requirement
|
|
114
141
|
requirements:
|
|
115
142
|
- - "~>"
|
|
116
143
|
- !ruby/object:Gem::Version
|
|
117
|
-
version: 0.
|
|
144
|
+
version: '0.21'
|
|
118
145
|
type: :development
|
|
119
146
|
prerelease: false
|
|
120
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
121
148
|
requirements:
|
|
122
149
|
- - "~>"
|
|
123
150
|
- !ruby/object:Gem::Version
|
|
124
|
-
version: 0.
|
|
151
|
+
version: '0.21'
|
|
125
152
|
- !ruby/object:Gem::Dependency
|
|
126
153
|
name: yard
|
|
127
154
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -136,13 +163,15 @@ dependencies:
|
|
|
136
163
|
- - ">="
|
|
137
164
|
- !ruby/object:Gem::Version
|
|
138
165
|
version: '0'
|
|
139
|
-
description:
|
|
166
|
+
description: A maintained and modern replacement for jekyll-bootstrap-sass, supporting
|
|
167
|
+
Bootstrap 5 and Jekyll 4.
|
|
140
168
|
email:
|
|
141
169
|
- Harald-lb@free-creations.de
|
|
142
170
|
executables: []
|
|
143
171
|
extensions: []
|
|
144
172
|
extra_rdoc_files: []
|
|
145
173
|
files:
|
|
174
|
+
- ".github/workflows/ruby.yml"
|
|
146
175
|
- ".gitignore"
|
|
147
176
|
- ".rspec"
|
|
148
177
|
- ".rubocop.yml"
|
|
@@ -157,13 +186,13 @@ files:
|
|
|
157
186
|
- lib/bootstrap4jekyll/plugin.rb
|
|
158
187
|
- lib/bootstrap4jekyll/version.rb
|
|
159
188
|
homepage: https://github.com/free-creations/bootstrap4jekyll
|
|
160
|
-
licenses:
|
|
189
|
+
licenses:
|
|
190
|
+
- MIT
|
|
161
191
|
metadata:
|
|
162
192
|
homepage_uri: https://github.com/free-creations/bootstrap4jekyll
|
|
163
193
|
changelog_uri: https://github.com/free-creations/bootstrap4jekyll
|
|
164
194
|
source_code_uri: https://github.com/free-creations/bootstrap4jekyll
|
|
165
195
|
bug_tracker_uri: https://github.com/free-creations/bootstrap4jekyll/issues
|
|
166
|
-
post_install_message:
|
|
167
196
|
rdoc_options: []
|
|
168
197
|
require_paths:
|
|
169
198
|
- lib
|
|
@@ -171,15 +200,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
171
200
|
requirements:
|
|
172
201
|
- - ">="
|
|
173
202
|
- !ruby/object:Gem::Version
|
|
174
|
-
version:
|
|
203
|
+
version: '3.1'
|
|
175
204
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
176
205
|
requirements:
|
|
177
206
|
- - ">="
|
|
178
207
|
- !ruby/object:Gem::Version
|
|
179
208
|
version: '0'
|
|
180
209
|
requirements: []
|
|
181
|
-
rubygems_version:
|
|
182
|
-
signing_key:
|
|
210
|
+
rubygems_version: 4.0.6
|
|
183
211
|
specification_version: 4
|
|
184
|
-
summary: A Jekyll plugin that adds the Twitter Bootstrap framework to your site.
|
|
212
|
+
summary: A Jekyll plugin that adds the Twitter Bootstrap 5 framework to your site.
|
|
185
213
|
test_files: []
|