bootstrap4jekyll 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a6ed91a416b1264e8e45ced6f99ce435a0d2260ebf6b2895861995ce69ed54b9
4
+ data.tar.gz: 5722fcbd84a6b04b5ff7ed1ff6fd1c2b8ff18cd8a51f222262b7d1b15815651b
5
+ SHA512:
6
+ metadata.gz: a5373076dab341acf4c1c7d7a0de4946988dcdeb4475f25e937cce9b8d55383b32cc4b78d7c3c8b40635fd3cf21b90e22b21e10d48a4488a272a2fe037fcb84a
7
+ data.tar.gz: 809702de3c65b823885f72f7dad022212554a61aa0c68c91d545ec0bcb0a99517414b87b3d6aa832809aec7457a3ffdbd73b955a69f55e0321d3df1830d2c034
@@ -0,0 +1,15 @@
1
+ _site/
2
+ .sass-cache/
3
+ .jekyll-cache/
4
+ .jekyll-metadata
5
+ /.bundle/
6
+ /.yardoc
7
+ /_yardoc/
8
+ /coverage/
9
+ /doc/
10
+ /pkg/
11
+ /spec/reports/
12
+ /tmp/
13
+
14
+ # rspec failure tracking
15
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,33 @@
1
+ require: rubocop-rspec
2
+
3
+ AllCops:
4
+ TargetRubyVersion: 2.7
5
+ NewCops: enable
6
+
7
+ Style/Documentation:
8
+ Exclude:
9
+ - 'spec/**/*'
10
+ - 'test/**/*'
11
+
12
+ Metrics/BlockLength:
13
+ Exclude:
14
+ - 'spec/**/*'
15
+ - 'test/**/*'
16
+
17
+ Layout/LineLength:
18
+ Max: 122
19
+
20
+ Metrics/MethodLength:
21
+ Max: 16
22
+
23
+
24
+ Metrics/ModuleLength:
25
+ Enabled: false
26
+
27
+ Style/DocumentationMethod:
28
+ Description: 'Public methods.'
29
+ Enabled: true
30
+ Exclude:
31
+ - 'spec/**/*'
32
+ - 'test/**/*'
33
+
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.7.1
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1 @@
1
+ --markup=markdown
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ source 'https://rubygems.org'
4
+
5
+ # Specify your gem's dependencies in bootstrap4jekyll.gemspec
6
+ gemspec
@@ -0,0 +1,191 @@
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
@@ -0,0 +1,2 @@
1
+ ## 0.0.0 / 2020-05-28
2
+ * This is a proof of concept. Please do not expect a working tool.
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2020 Harald Postner
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,18 @@
1
+ # bootstrap4jekyll
2
+ Adds the
3
+ [Twitter Bootstrap](https://getbootstrap.com/)
4
+ framework to your _Jekyll_ site.
5
+
6
+ Although the
7
+ [Twitter Bootstrap](https://getbootstrap.com/)
8
+ framework exists as a GEM, called [bootstrap rubygem](https://rubygems.org/gems/bootstrap),
9
+ it cannot be used directly in a _Jekyll_ site, because it is specifically made for _rails_.
10
+
11
+ _bootstrap4jekyll_ acts as an intermediate between the original
12
+ [bootstrap rubygem](https://rubygems.org/gems/bootstrap)
13
+ and _Jekyll_. Thus making [bootstrap rubygem](https://rubygems.org/gems/bootstrap)
14
+ available to _Jekyll_ programmers.
15
+
16
+ This gem is inspired by the
17
+ [jekyll-bootstrap-sass](https://github.com/benbalter/jekyll-bootstrap-sass) GEM,
18
+ which has not been maintained the last four years.
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
@@ -0,0 +1,38 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'lib/bootstrap4jekyll/version'
4
+
5
+ Gem::Specification.new do |gem_spec|
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 = 'Adds the Twitter Bootstrap framework to your Jekyll site.'
12
+ gem_spec.homepage = 'https://github.com/free-creations/bootstrap4jekyll'
13
+ gem_spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
14
+
15
+ gem_spec.metadata['homepage_uri'] = gem_spec.homepage
16
+ gem_spec.metadata['source_code_uri'] = gem_spec.homepage
17
+ gem_spec.metadata['changelog_uri'] = gem_spec.homepage
18
+
19
+ # Specify which files should be added to the gem when it is released.
20
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
21
+ gem_spec.files = Dir.chdir(File.expand_path(__dir__)) do
22
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
23
+ end
24
+ gem_spec.bindir = 'exe'
25
+ gem_spec.executables = gem_spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
26
+ gem_spec.require_paths = ['lib']
27
+
28
+ gem_spec.add_dependency 'bootstrap', '~> 4.5'
29
+ gem_spec.add_dependency 'jekyll', '~> 4'
30
+
31
+ gem_spec.add_development_dependency 'bundler'
32
+ gem_spec.add_development_dependency 'rake', '~> 12.0'
33
+ gem_spec.add_development_dependency 'rspec', '~> 3.0'
34
+ gem_spec.add_development_dependency 'rubocop', '~> 0.84.0'
35
+ gem_spec.add_development_dependency 'rubocop-rspec', '~> 1.39.0'
36
+ gem_spec.add_development_dependency 'simplecov', '~> 0.18.5'
37
+ gem_spec.add_development_dependency 'yard'
38
+ end
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'jekyll/hooks'
4
+ require 'bootstrap4jekyll/version'
5
+ require 'bootstrap4jekyll/plugin'
6
+
7
+ #
8
+ # Adds the
9
+ # [Twitter Bootstrap](https://getbootstrap.com/)
10
+ # framework to your __Jekyll__ site.
11
+ module Bootstrap4jekyll
12
+ bootstrap_plugin = Plugin.new
13
+
14
+ #
15
+ # Register a jekyll-hook that calls our plugin just after the site initializes,
16
+ # but before setup and render.
17
+ #
18
+ # site gives access to the site-wide information
19
+ # and configuration settings (mainly from _config.yml).
20
+ Jekyll::Hooks.register :site, :after_init do |site|
21
+ bootstrap_plugin.complete_load_paths(site)
22
+ end
23
+ end
@@ -0,0 +1,28 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Require bootstrap to add bootstrap to SaSS's load path
4
+ require 'bootstrap'
5
+
6
+ module Bootstrap4jekyll
7
+ # The plugin functionality that adds the _Twitter-Bootstrap-framework_ to the _Jekyll_ site.
8
+ class Plugin
9
+ # Add the paths of _bootstraps scss partials_ to the global _sass-load-path_.
10
+ # @param [Jekyll::Site] site represents site-wide information and configuration settings.
11
+ def complete_load_paths(site)
12
+ sass_load_paths = File.expand_path('stylesheets/', ::Bootstrap.assets_path)
13
+
14
+ # make sure there is a 'sass' key-entry in the config settings.
15
+ #noinspection RubyStringKeysInHashInspection
16
+ site.config['sass'] = { 'load_paths' => [] } unless site.config['sass']
17
+ sass_config = site.config['sass']
18
+
19
+ # make sure that the sass_config has a 'load_paths' key-entry.
20
+ sass_config['load_paths'] = [] unless sass_config['load_paths']
21
+ # make sure that the 'load_paths' entry is an array and not just a string
22
+ sass_config['load_paths'] = Array(sass_config['load_paths'])
23
+ # add bootstraps to load the paths
24
+ sass_config['load_paths'] << sass_load_paths
25
+ end
26
+
27
+ end
28
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Bootstrap4jekyll
4
+ # The version of this plugin. For official releases this is identical to the version of the
5
+ # [bootstrap framework](https://getbootstrap.com/).
6
+ VERSION = '0.0.0'
7
+ end
metadata ADDED
@@ -0,0 +1,186 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bootstrap4jekyll
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Harald Postner
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-05-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bootstrap
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '4.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '4.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '12.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '12.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.84.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.84.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop-rspec
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 1.39.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 1.39.0
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: 0.18.5
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: 0.18.5
125
+ - !ruby/object:Gem::Dependency
126
+ name: yard
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description:
140
+ email:
141
+ - Harald-lb@free-creations.de
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".rspec"
148
+ - ".rubocop.yml"
149
+ - ".travis.yml"
150
+ - ".yardopts"
151
+ - Gemfile
152
+ - Gemfile.lock
153
+ - History.md
154
+ - LICENSE
155
+ - README.md
156
+ - Rakefile
157
+ - bootstrap4jekyll.gemspec
158
+ - lib/bootstrap4jekyll.rb
159
+ - lib/bootstrap4jekyll/plugin.rb
160
+ - lib/bootstrap4jekyll/version.rb
161
+ homepage: https://github.com/free-creations/bootstrap4jekyll
162
+ licenses: []
163
+ metadata:
164
+ homepage_uri: https://github.com/free-creations/bootstrap4jekyll
165
+ source_code_uri: https://github.com/free-creations/bootstrap4jekyll
166
+ changelog_uri: https://github.com/free-creations/bootstrap4jekyll
167
+ post_install_message:
168
+ rdoc_options: []
169
+ require_paths:
170
+ - lib
171
+ required_ruby_version: !ruby/object:Gem::Requirement
172
+ requirements:
173
+ - - ">="
174
+ - !ruby/object:Gem::Version
175
+ version: 2.3.0
176
+ required_rubygems_version: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: '0'
181
+ requirements: []
182
+ rubygems_version: 3.1.2
183
+ signing_key:
184
+ specification_version: 4
185
+ summary: Adds the Twitter Bootstrap framework to your Jekyll site.
186
+ test_files: []