bootstrap4jekyll 0.0.0 → 1.0.1.pre
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/.gitignore +2 -0
- data/.rspec +0 -1
- data/.rubocop.yml +4 -4
- data/History.md +4 -0
- data/README.md +95 -8
- data/bootstrap4jekyll.gemspec +20 -11
- data/lib/bootstrap4jekyll.rb +10 -3
- data/lib/bootstrap4jekyll/plugin.rb +55 -4
- data/lib/bootstrap4jekyll/version.rb +3 -3
- metadata +17 -18
- data/.travis.yml +0 -6
- data/Gemfile.lock +0 -191
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98e6ba376c3bfa506757360bd117765abc8a902e12ff69bd24572181e40ed8f8
|
4
|
+
data.tar.gz: 01ca4281138f0fe6bd01c721b587f91226057168c661f377e0384c48d37dca20
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d121c524fbb029387033e07d8a6acd4bdfc8b2f08fe8070fabe43ab4f16ece0b8a678d5a8011a3a42b8c917101da8a6c28965b3cd33c28df353d7423a9f828d
|
7
|
+
data.tar.gz: 9bc6cf5207f7952cc4d3af4a7bb2cc22856d812d8d489e0f54ec9e42b058661d92b1fa0aebd469634811a2d873adc90467fc3ef1f5898bf9590c66acd448003c
|
data/.gitignore
CHANGED
data/.rspec
CHANGED
data/.rubocop.yml
CHANGED
@@ -4,15 +4,15 @@ AllCops:
|
|
4
4
|
TargetRubyVersion: 2.7
|
5
5
|
NewCops: enable
|
6
6
|
|
7
|
-
Style/Documentation:
|
8
|
-
Exclude:
|
9
|
-
- 'spec/**/*'
|
10
|
-
- 'test/**/*'
|
11
7
|
|
12
8
|
Metrics/BlockLength:
|
13
9
|
Exclude:
|
14
10
|
- 'spec/**/*'
|
15
11
|
- 'test/**/*'
|
12
|
+
- 'bootstrap4jekyll.gemspec'
|
13
|
+
-
|
14
|
+
RSpec/NestedGroups:
|
15
|
+
Max: 4
|
16
16
|
|
17
17
|
Layout/LineLength:
|
18
18
|
Max: 122
|
data/History.md
CHANGED
data/README.md
CHANGED
@@ -5,14 +5,101 @@ framework to your _Jekyll_ site.
|
|
5
5
|
|
6
6
|
Although the
|
7
7
|
[Twitter Bootstrap](https://getbootstrap.com/)
|
8
|
-
framework exists as a GEM, called [
|
9
|
-
it cannot be used directly in a _Jekyll_ site, because it is specifically made for
|
8
|
+
framework 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.
|
10
11
|
|
11
|
-
_bootstrap4jekyll_
|
12
|
-
[
|
13
|
-
|
14
|
-
available to _Jekyll_
|
12
|
+
_bootstrap4jekyll_ integrates the
|
13
|
+
[Bootstrap Ruby Gem][BRG]
|
14
|
+
into _Jekyll_. Thus making the [Bootstrap Ruby Gem][BRG]
|
15
|
+
available to _Jekyll_ users.
|
15
16
|
|
16
|
-
This
|
17
|
+
This GEM is inspired by the
|
17
18
|
[jekyll-bootstrap-sass](https://github.com/benbalter/jekyll-bootstrap-sass) GEM,
|
18
|
-
which has not been maintained
|
19
|
+
which has not been maintained for a while.
|
20
|
+
|
21
|
+
## Installation in a normal Jekyll site
|
22
|
+
|
23
|
+
Add the following to your site's `Gemfile`:
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
group :jekyll_plugins do
|
27
|
+
gem "bootstrap4jekyll"
|
28
|
+
end
|
29
|
+
```
|
30
|
+
Now run Bundler:
|
31
|
+
|
32
|
+
```console
|
33
|
+
$ bundle install
|
34
|
+
```
|
35
|
+
This will add the `bootstrap4jekyll` plugin to your site. Together with the plugin also the _Twitter-
|
36
|
+
Bootstrap framework_ will added to your site.
|
37
|
+
|
38
|
+
## Installation in a Jekyll theme
|
39
|
+
|
40
|
+
When you plan to build a Jekyll theme, instead of declaring the plugin in the `Gemfile` you
|
41
|
+
should declare it in your `*.gemspec` file. Like this:
|
42
|
+
|
43
|
+
```ruby
|
44
|
+
spec.add_runtime_dependency "bootstrap4jekyll", "~> 1.0"
|
45
|
+
```
|
46
|
+
|
47
|
+
And additionally in your `_config.yml` file, like this:
|
48
|
+
```yaml
|
49
|
+
plugins:
|
50
|
+
- bootstrap4jekyll
|
51
|
+
```
|
52
|
+
|
53
|
+
When you use this theme in a Jekyll site the `bootstrap4jekyll` plugin
|
54
|
+
and the _bootstrap framework_ will be automatically loaded
|
55
|
+
together with your theme.
|
56
|
+
|
57
|
+
## Usage
|
58
|
+
|
59
|
+
Create a `.scss` file (e.g., `assets/myStyle.scss`), with the following:
|
60
|
+
|
61
|
+
```scss
|
62
|
+
---
|
63
|
+
---
|
64
|
+
|
65
|
+
@import 'bootstrap';
|
66
|
+
|
67
|
+
// (Your custom SCSS Here)
|
68
|
+
```
|
69
|
+
When your site is built, Jekyll will automatically add the _Bootstrap framework_ before it renders
|
70
|
+
your site's css. In the above example, the resulting file would be `assets/myStyle.css`
|
71
|
+
with Bootstrap's CSS followed by your own.
|
72
|
+
|
73
|
+
## Assets
|
74
|
+
|
75
|
+
By default, `bootstrap4jekyll` will simply make the `@import 'bootstrap';` directive available
|
76
|
+
to your custom stylesheets so that you can more easily include Bootstrap's CSS.
|
77
|
+
|
78
|
+
If you would like to use Bootstrap's javascripts, you'll need to add the
|
79
|
+
following to your site's `_config.yml`:
|
80
|
+
|
81
|
+
```yaml
|
82
|
+
bootstrap:
|
83
|
+
assets: true
|
84
|
+
```
|
85
|
+
This will create `assets/javascripts/bootstrap` folders in the generated site,
|
86
|
+
which you can include in your site's header as you would any other javascript file.
|
87
|
+
|
88
|
+
## Specifying the Bootstrap version
|
89
|
+
|
90
|
+
`bootstrap4jekyll` relies on official [Bootstrap Ruby Gem][BRG].
|
91
|
+
By default, the newest version starting from 4.2 will be used.
|
92
|
+
|
93
|
+
To use a specific version of the [Bootstrap Ruby Gem][BRG], simply specify the desired version in your `Gemfile`.
|
94
|
+
Like this:
|
95
|
+
|
96
|
+
```ruby
|
97
|
+
gem 'bootstrap', '~> 4.5'
|
98
|
+
```
|
99
|
+
|
100
|
+
To see how the version of the [Bootstrap Ruby Gem][BRG] relates to the version of the included
|
101
|
+
_framework_, look into the [GEM's changelog][BRGchangeLog]
|
102
|
+
|
103
|
+
|
104
|
+
[BRG]: https://rubygems.org/gems/bootstrap
|
105
|
+
[BRGchangeLog]: https://github.com/twbs/bootstrap-rubygem/blob/master/CHANGELOG.md
|
data/bootstrap4jekyll.gemspec
CHANGED
@@ -3,13 +3,22 @@
|
|
3
3
|
require_relative 'lib/bootstrap4jekyll/version'
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem_spec|
|
6
|
-
gem_spec.name
|
7
|
-
gem_spec.version
|
8
|
-
gem_spec.authors
|
9
|
-
gem_spec.email
|
6
|
+
gem_spec.name = 'bootstrap4jekyll'
|
7
|
+
gem_spec.version = Bootstrap4jekyll::VERSION
|
8
|
+
gem_spec.authors = ['Harald Postner']
|
9
|
+
gem_spec.email = ['Harald-lb@free-creations.de']
|
10
|
+
|
11
|
+
gem_spec.summary = 'A Jekyll plugin that adds the Twitter Bootstrap framework to your site.'
|
12
|
+
# gem_spec.description = %Q[This plugin requests Bootstrap #{Bootstrap4jekyll::BOOTSTRAP_VERSION}]
|
13
|
+
gem_spec.homepage = 'https://github.com/free-creations/bootstrap4jekyll'
|
14
|
+
|
15
|
+
gem_spec.metadata = {
|
16
|
+
'homepage_uri' => 'https://github.com/free-creations/bootstrap4jekyll',
|
17
|
+
'changelog_uri' => 'https://github.com/free-creations/bootstrap4jekyll.History.md',
|
18
|
+
'source_code_uri' => 'https://github.com/free-creations/bootstrap4jekyll',
|
19
|
+
'bug_tracker_uri' => 'https://github.com/free-creations/bootstrap4jekyll/issues'
|
20
|
+
}
|
10
21
|
|
11
|
-
gem_spec.summary = 'Adds the Twitter Bootstrap framework to your Jekyll site.'
|
12
|
-
gem_spec.homepage = 'https://github.com/free-creations/bootstrap4jekyll'
|
13
22
|
gem_spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
14
23
|
|
15
24
|
gem_spec.metadata['homepage_uri'] = gem_spec.homepage
|
@@ -21,16 +30,16 @@ Gem::Specification.new do |gem_spec|
|
|
21
30
|
gem_spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
22
31
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
32
|
end
|
24
|
-
gem_spec.bindir
|
25
|
-
gem_spec.executables
|
33
|
+
gem_spec.bindir = 'exe'
|
34
|
+
gem_spec.executables = gem_spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
35
|
gem_spec.require_paths = ['lib']
|
27
36
|
|
28
|
-
gem_spec.add_dependency 'bootstrap',
|
29
|
-
gem_spec.add_dependency 'jekyll', '
|
37
|
+
gem_spec.add_dependency 'bootstrap','>= 4.2'
|
38
|
+
gem_spec.add_dependency 'jekyll', '>= 4.0'
|
30
39
|
|
31
40
|
gem_spec.add_development_dependency 'bundler'
|
32
41
|
gem_spec.add_development_dependency 'rake', '~> 12.0'
|
33
|
-
gem_spec.add_development_dependency 'rspec', '~> 3.
|
42
|
+
gem_spec.add_development_dependency 'rspec', '~> 3.9'
|
34
43
|
gem_spec.add_development_dependency 'rubocop', '~> 0.84.0'
|
35
44
|
gem_spec.add_development_dependency 'rubocop-rspec', '~> 1.39.0'
|
36
45
|
gem_spec.add_development_dependency 'simplecov', '~> 0.18.5'
|
data/lib/bootstrap4jekyll.rb
CHANGED
@@ -13,11 +13,18 @@ module Bootstrap4jekyll
|
|
13
13
|
|
14
14
|
#
|
15
15
|
# Register a jekyll-hook that calls our plugin just after the site initializes,
|
16
|
-
# but before setup and render.
|
16
|
+
# but before setup and render. Here we add the bootstrap partials from the
|
17
|
+
# the _Bootstrap Ruby Gem_ to the load path of sass.
|
17
18
|
#
|
18
|
-
# site gives access to the site-wide information
|
19
|
-
# and configuration settings (mainly from _config.yml).
|
20
19
|
Jekyll::Hooks.register :site, :after_init do |site|
|
21
20
|
bootstrap_plugin.complete_load_paths(site)
|
22
21
|
end
|
22
|
+
#
|
23
|
+
# Register a jekyll-hook that calls our plugin after rendering the whole site,
|
24
|
+
# but before writing any files. Here we copy files found in the
|
25
|
+
# the _Bootstrap Ruby Gem_ to the assets of our site.
|
26
|
+
#
|
27
|
+
Jekyll::Hooks.register :site, :post_render do |site|
|
28
|
+
bootstrap_plugin.add_bootstrap_assets(site)
|
29
|
+
end
|
23
30
|
end
|
@@ -9,10 +9,10 @@ module Bootstrap4jekyll
|
|
9
9
|
# Add the paths of _bootstraps scss partials_ to the global _sass-load-path_.
|
10
10
|
# @param [Jekyll::Site] site represents site-wide information and configuration settings.
|
11
11
|
def complete_load_paths(site)
|
12
|
-
|
12
|
+
# fetch the the path to the bootstrap partials.
|
13
|
+
bootstrap_partials = File.expand_path('stylesheets/', ::Bootstrap.assets_path)
|
13
14
|
|
14
15
|
# make sure there is a 'sass' key-entry in the config settings.
|
15
|
-
#noinspection RubyStringKeysInHashInspection
|
16
16
|
site.config['sass'] = { 'load_paths' => [] } unless site.config['sass']
|
17
17
|
sass_config = site.config['sass']
|
18
18
|
|
@@ -20,9 +20,60 @@ module Bootstrap4jekyll
|
|
20
20
|
sass_config['load_paths'] = [] unless sass_config['load_paths']
|
21
21
|
# make sure that the 'load_paths' entry is an array and not just a string
|
22
22
|
sass_config['load_paths'] = Array(sass_config['load_paths'])
|
23
|
-
# add
|
24
|
-
sass_config['load_paths'] <<
|
23
|
+
# add the bootstrap partials to the sass-load-paths
|
24
|
+
sass_config['load_paths'] << bootstrap_partials
|
25
25
|
end
|
26
26
|
|
27
|
+
# The assets delivered together with the bootstrap GEM will be added to the site.
|
28
|
+
def add_bootstrap_assets(site)
|
29
|
+
site.static_files.concat jekyllized_bootstrap_files(site) if assets_enabled?(site)
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
|
34
|
+
# @return [Boolean] true if the user has chosen to include the bootstrap assets to his site.
|
35
|
+
def assets_enabled?(site)
|
36
|
+
return false unless site.config['bootstrap']
|
37
|
+
|
38
|
+
site.config['bootstrap']['assets'] == true
|
39
|
+
end
|
40
|
+
|
41
|
+
# Create a Jekyll::StaticFile for each bootstrap file and assemble them into an array.
|
42
|
+
# @return [Array<Jekyll::StaticFile>] the extra assets that should be included
|
43
|
+
# in the generated site.
|
44
|
+
def jekyllized_bootstrap_files(site)
|
45
|
+
source = File.dirname(bootstrap_assets_path)
|
46
|
+
bootstrap_asset_files.map do |file|
|
47
|
+
dir = File.dirname(file)
|
48
|
+
file_name = File.basename(file)
|
49
|
+
Jekyll::StaticFile.new site, source, dir, file_name
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# Scans the bootstrap GEM and creates an array files-paths that should be included
|
54
|
+
# in the generated site.
|
55
|
+
#
|
56
|
+
# @return [Array<String>] an array files-paths that should be included
|
57
|
+
# in the generated site.
|
58
|
+
def bootstrap_asset_files
|
59
|
+
asset_files = []
|
60
|
+
Find.find(bootstrap_assets_path).each do |path|
|
61
|
+
next if File.directory?(path)
|
62
|
+
next if path.include?(stylesheets_path) # do not include the scss files
|
63
|
+
|
64
|
+
asset_files << path.sub(bootstrap_assets_path, 'assets')
|
65
|
+
end
|
66
|
+
asset_files
|
67
|
+
end
|
68
|
+
|
69
|
+
# @return [String] Absolute path to the assets distributed together with the bootstrap GEM.
|
70
|
+
def bootstrap_assets_path
|
71
|
+
@bootstrap_assets_path ||= ::Bootstrap.assets_path
|
72
|
+
end
|
73
|
+
|
74
|
+
# @return [String] Absolute path to the scss partials distributed together with the bootstrap GEM.
|
75
|
+
def stylesheets_path
|
76
|
+
@stylesheets_path ||= File.expand_path 'stylesheets/', bootstrap_assets_path
|
77
|
+
end
|
27
78
|
end
|
28
79
|
end
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
module Bootstrap4jekyll
|
4
|
-
# The version of this plugin.
|
5
|
-
|
6
|
-
|
4
|
+
# The version of this plugin.
|
5
|
+
VERSION = '1.0.1.pre'
|
6
|
+
|
7
7
|
end
|
metadata
CHANGED
@@ -1,43 +1,43 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap4jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1.pre
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Harald Postner
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bootstrap
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '4.
|
19
|
+
version: '4.2'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '4.
|
26
|
+
version: '4.2'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: jekyll
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '4'
|
33
|
+
version: '4.0'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '4'
|
40
|
+
version: '4.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '3.
|
75
|
+
version: '3.9'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '3.
|
82
|
+
version: '3.9'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rubocop
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -146,10 +146,8 @@ files:
|
|
146
146
|
- ".gitignore"
|
147
147
|
- ".rspec"
|
148
148
|
- ".rubocop.yml"
|
149
|
-
- ".travis.yml"
|
150
149
|
- ".yardopts"
|
151
150
|
- Gemfile
|
152
|
-
- Gemfile.lock
|
153
151
|
- History.md
|
154
152
|
- LICENSE
|
155
153
|
- README.md
|
@@ -162,8 +160,9 @@ homepage: https://github.com/free-creations/bootstrap4jekyll
|
|
162
160
|
licenses: []
|
163
161
|
metadata:
|
164
162
|
homepage_uri: https://github.com/free-creations/bootstrap4jekyll
|
165
|
-
source_code_uri: https://github.com/free-creations/bootstrap4jekyll
|
166
163
|
changelog_uri: https://github.com/free-creations/bootstrap4jekyll
|
164
|
+
source_code_uri: https://github.com/free-creations/bootstrap4jekyll
|
165
|
+
bug_tracker_uri: https://github.com/free-creations/bootstrap4jekyll/issues
|
167
166
|
post_install_message:
|
168
167
|
rdoc_options: []
|
169
168
|
require_paths:
|
@@ -175,12 +174,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
175
174
|
version: 2.3.0
|
176
175
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
176
|
requirements:
|
178
|
-
- - "
|
177
|
+
- - ">"
|
179
178
|
- !ruby/object:Gem::Version
|
180
|
-
version:
|
179
|
+
version: 1.3.1
|
181
180
|
requirements: []
|
182
181
|
rubygems_version: 3.1.2
|
183
182
|
signing_key:
|
184
183
|
specification_version: 4
|
185
|
-
summary:
|
184
|
+
summary: A Jekyll plugin that adds the Twitter Bootstrap framework to your site.
|
186
185
|
test_files: []
|
data/.travis.yml
DELETED
data/Gemfile.lock
DELETED
@@ -1,191 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
bootstrap4jekyll (0.0.0)
|
5
|
-
bootstrap (~> 4.5)
|
6
|
-
jekyll (~> 4)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
actionpack (6.0.3.1)
|
12
|
-
actionview (= 6.0.3.1)
|
13
|
-
activesupport (= 6.0.3.1)
|
14
|
-
rack (~> 2.0, >= 2.0.8)
|
15
|
-
rack-test (>= 0.6.3)
|
16
|
-
rails-dom-testing (~> 2.0)
|
17
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
18
|
-
actionview (6.0.3.1)
|
19
|
-
activesupport (= 6.0.3.1)
|
20
|
-
builder (~> 3.1)
|
21
|
-
erubi (~> 1.4)
|
22
|
-
rails-dom-testing (~> 2.0)
|
23
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
24
|
-
activesupport (6.0.3.1)
|
25
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
26
|
-
i18n (>= 0.7, < 2)
|
27
|
-
minitest (~> 5.1)
|
28
|
-
tzinfo (~> 1.1)
|
29
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
30
|
-
addressable (2.7.0)
|
31
|
-
public_suffix (>= 2.0.2, < 5.0)
|
32
|
-
ast (2.4.0)
|
33
|
-
autoprefixer-rails (9.7.6)
|
34
|
-
execjs
|
35
|
-
bootstrap (4.5.0)
|
36
|
-
autoprefixer-rails (>= 9.1.0)
|
37
|
-
popper_js (>= 1.14.3, < 2)
|
38
|
-
sassc-rails (>= 2.0.0)
|
39
|
-
builder (3.2.4)
|
40
|
-
colorator (1.1.0)
|
41
|
-
concurrent-ruby (1.1.6)
|
42
|
-
crass (1.0.6)
|
43
|
-
diff-lcs (1.3)
|
44
|
-
docile (1.3.2)
|
45
|
-
em-websocket (0.5.1)
|
46
|
-
eventmachine (>= 0.12.9)
|
47
|
-
http_parser.rb (~> 0.6.0)
|
48
|
-
erubi (1.9.0)
|
49
|
-
eventmachine (1.2.7)
|
50
|
-
execjs (2.7.0)
|
51
|
-
ffi (1.12.2)
|
52
|
-
forwardable-extended (2.6.0)
|
53
|
-
http_parser.rb (0.6.0)
|
54
|
-
i18n (1.8.2)
|
55
|
-
concurrent-ruby (~> 1.0)
|
56
|
-
jekyll (4.0.1)
|
57
|
-
addressable (~> 2.4)
|
58
|
-
colorator (~> 1.0)
|
59
|
-
em-websocket (~> 0.5)
|
60
|
-
i18n (>= 0.9.5, < 2)
|
61
|
-
jekyll-sass-converter (~> 2.0)
|
62
|
-
jekyll-watch (~> 2.0)
|
63
|
-
kramdown (~> 2.1)
|
64
|
-
kramdown-parser-gfm (~> 1.0)
|
65
|
-
liquid (~> 4.0)
|
66
|
-
mercenary (~> 0.3.3)
|
67
|
-
pathutil (~> 0.9)
|
68
|
-
rouge (~> 3.0)
|
69
|
-
safe_yaml (~> 1.0)
|
70
|
-
terminal-table (~> 1.8)
|
71
|
-
jekyll-sass-converter (2.1.0)
|
72
|
-
sassc (> 2.0.1, < 3.0)
|
73
|
-
jekyll-watch (2.2.1)
|
74
|
-
listen (~> 3.0)
|
75
|
-
kramdown (2.2.1)
|
76
|
-
rexml
|
77
|
-
kramdown-parser-gfm (1.1.0)
|
78
|
-
kramdown (~> 2.0)
|
79
|
-
liquid (4.0.3)
|
80
|
-
listen (3.2.1)
|
81
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
82
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
83
|
-
loofah (2.5.0)
|
84
|
-
crass (~> 1.0.2)
|
85
|
-
nokogiri (>= 1.5.9)
|
86
|
-
mercenary (0.3.6)
|
87
|
-
method_source (1.0.0)
|
88
|
-
mini_portile2 (2.4.0)
|
89
|
-
minitest (5.13.0)
|
90
|
-
nokogiri (1.10.9)
|
91
|
-
mini_portile2 (~> 2.4.0)
|
92
|
-
parallel (1.19.1)
|
93
|
-
parser (2.7.1.2)
|
94
|
-
ast (~> 2.4.0)
|
95
|
-
pathutil (0.16.2)
|
96
|
-
forwardable-extended (~> 2.6)
|
97
|
-
popper_js (1.16.0)
|
98
|
-
public_suffix (4.0.5)
|
99
|
-
rack (2.2.2)
|
100
|
-
rack-test (1.1.0)
|
101
|
-
rack (>= 1.0, < 3)
|
102
|
-
rails-dom-testing (2.0.3)
|
103
|
-
activesupport (>= 4.2.0)
|
104
|
-
nokogiri (>= 1.6)
|
105
|
-
rails-html-sanitizer (1.3.0)
|
106
|
-
loofah (~> 2.3)
|
107
|
-
railties (6.0.3.1)
|
108
|
-
actionpack (= 6.0.3.1)
|
109
|
-
activesupport (= 6.0.3.1)
|
110
|
-
method_source
|
111
|
-
rake (>= 0.8.7)
|
112
|
-
thor (>= 0.20.3, < 2.0)
|
113
|
-
rainbow (3.0.0)
|
114
|
-
rake (12.3.3)
|
115
|
-
rb-fsevent (0.10.4)
|
116
|
-
rb-inotify (0.10.1)
|
117
|
-
ffi (~> 1.0)
|
118
|
-
rexml (3.2.4)
|
119
|
-
rouge (3.19.0)
|
120
|
-
rspec (3.9.0)
|
121
|
-
rspec-core (~> 3.9.0)
|
122
|
-
rspec-expectations (~> 3.9.0)
|
123
|
-
rspec-mocks (~> 3.9.0)
|
124
|
-
rspec-core (3.9.2)
|
125
|
-
rspec-support (~> 3.9.3)
|
126
|
-
rspec-expectations (3.9.2)
|
127
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
128
|
-
rspec-support (~> 3.9.0)
|
129
|
-
rspec-mocks (3.9.1)
|
130
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
131
|
-
rspec-support (~> 3.9.0)
|
132
|
-
rspec-support (3.9.3)
|
133
|
-
rubocop (0.84.0)
|
134
|
-
parallel (~> 1.10)
|
135
|
-
parser (>= 2.7.0.1)
|
136
|
-
rainbow (>= 2.2.2, < 4.0)
|
137
|
-
rexml
|
138
|
-
rubocop-ast (>= 0.0.3)
|
139
|
-
ruby-progressbar (~> 1.7)
|
140
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
141
|
-
rubocop-ast (0.0.3)
|
142
|
-
parser (>= 2.7.0.1)
|
143
|
-
rubocop-rspec (1.39.0)
|
144
|
-
rubocop (>= 0.68.1)
|
145
|
-
ruby-progressbar (1.10.1)
|
146
|
-
safe_yaml (1.0.5)
|
147
|
-
sassc (2.3.0)
|
148
|
-
ffi (~> 1.9)
|
149
|
-
sassc-rails (2.1.2)
|
150
|
-
railties (>= 4.0.0)
|
151
|
-
sassc (>= 2.0)
|
152
|
-
sprockets (> 3.0)
|
153
|
-
sprockets-rails
|
154
|
-
tilt
|
155
|
-
simplecov (0.18.5)
|
156
|
-
docile (~> 1.1)
|
157
|
-
simplecov-html (~> 0.11)
|
158
|
-
simplecov-html (0.12.2)
|
159
|
-
sprockets (4.0.0)
|
160
|
-
concurrent-ruby (~> 1.0)
|
161
|
-
rack (> 1, < 3)
|
162
|
-
sprockets-rails (3.2.1)
|
163
|
-
actionpack (>= 4.0)
|
164
|
-
activesupport (>= 4.0)
|
165
|
-
sprockets (>= 3.0.0)
|
166
|
-
terminal-table (1.8.0)
|
167
|
-
unicode-display_width (~> 1.1, >= 1.1.1)
|
168
|
-
thor (1.0.1)
|
169
|
-
thread_safe (0.3.6)
|
170
|
-
tilt (2.0.10)
|
171
|
-
tzinfo (1.2.7)
|
172
|
-
thread_safe (~> 0.1)
|
173
|
-
unicode-display_width (1.7.0)
|
174
|
-
yard (0.9.25)
|
175
|
-
zeitwerk (2.3.0)
|
176
|
-
|
177
|
-
PLATFORMS
|
178
|
-
ruby
|
179
|
-
|
180
|
-
DEPENDENCIES
|
181
|
-
bootstrap4jekyll!
|
182
|
-
bundler
|
183
|
-
rake (~> 12.0)
|
184
|
-
rspec (~> 3.0)
|
185
|
-
rubocop (~> 0.84.0)
|
186
|
-
rubocop-rspec (~> 1.39.0)
|
187
|
-
simplecov (~> 0.18.5)
|
188
|
-
yard
|
189
|
-
|
190
|
-
BUNDLED WITH
|
191
|
-
2.1.4
|