skellington 0.8.0 → 0.8.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 886c478b322c50a0f3c3a8e29e1bc3ce56dd59e3
4
- data.tar.gz: 705530bf4057bc67968e1606bd7cb13691e622f9
3
+ metadata.gz: 113e8c6cf5e0914cb28a30647331f69579609a97
4
+ data.tar.gz: ea3bd20b869960dd4f9e3362cb1087be2db29ddb
5
5
  SHA512:
6
- metadata.gz: e012948ea968469cf6f322c3808258b6eca2d32ca1e494e7a499019315c02b4f89b3e78b0c7303850df41eea76bc1b58dfafe1a37f926578382436614fde33b1
7
- data.tar.gz: 35ccdd189ca0ddeb9f06f11dc0ac1ca3248aeca35de1b8f8fe5dffec82ab3e4c81ed816d5de295ff90a86f26f7f004cfe1128335b743a16b73280893b3d79568
6
+ metadata.gz: 2c53c3d061340979780bf3e2d28177199ddca62a775915f41ebfc7d983625e85511af9838026574aeca842800b031d0b31a89af3146d6164daa5d201a817e10b
7
+ data.tar.gz: 02f17f219534be565b415fb9166b026423f64786ac8f9b5a8be1da9c98e691cee3f0fa8854e57f57b1732c10f39e1b3de004fae643effd3d5664d8e51966fcc2
data/README.md CHANGED
@@ -18,12 +18,28 @@ Extremely opinionated generator for your [Sinatra](http://www.sinatrarb.com/) a
18
18
  * An MIT License file
19
19
 
20
20
  * Jekyll
21
+ * [Jekyll](https://jekyllrb.com/)
21
22
  * [Bootstrap](http://getbootstrap.com/)
22
23
  * Reasonable default things
23
24
 
24
25
  Should work fine for both RVM- and rbenv-based setups
25
26
 
26
- $ gem install skellington
27
+ ## Installation
28
+
29
+ git clone https://github.com/pikesley/skellington
30
+ cd skellington
31
+ bundle
32
+ rake
33
+ rake install
34
+
35
+ or just
36
+
37
+ gem install skellington
38
+
39
+ ## Usage
40
+
41
+ ### Sinatra
42
+
27
43
  $ skellington generate naming-things-is-hard --licensor 'Beyoncé'
28
44
  Generating <lots of stuff>... done
29
45
 
@@ -52,20 +68,21 @@ Should work fine for both RVM- and rbenv-based setups
52
68
 
53
69
  skellington postinstall
54
70
 
55
- or
71
+ ### Jekyll
56
72
 
57
- skellington generate jekyll-site --framework jekyll
73
+ $ gem install skellington
74
+ $ skellington generate hello-from-the-magic-tavern --framework jekyll
58
75
  Generating <lots of stuff>... done
59
76
 
60
- Your new Jekyll site JekyllSite has been created
77
+ Your new Jekyll site HelloFromTheMagicTavern has been created
61
78
 
62
- (Note that 'jekyll-site' has been changed to 'jekyll_site' because Ruby finds '-'s troubling)
79
+ (Note that 'hello-from-the-magic-tavern' has been changed to 'hello_from_the_magic_tavern' because Ruby finds '-'s troubling)
63
80
 
64
81
  Now do
65
82
 
66
- cd jekyll_site
83
+ cd hello_from_the_magic_tavern
67
84
  bundle
68
- bundle exec jekyll
85
+ bundle exec jekyll serve
69
86
 
70
87
  which will launch the site (at http://localhost:4000)
71
88
 
@@ -74,7 +91,26 @@ or
74
91
  git add .
75
92
  git commit -m 'First commit'
76
93
 
77
- This assumes a bunch of things, at least:
94
+ You should also fill in your name in LICENSE.md
95
+
96
+ ### Options
97
+
98
+ * --framework
99
+ * Framework for which to generate
100
+ * Default: sinatra
101
+ * Possible values: sinatra, jekyll
102
+
103
+ * --bootstrap
104
+ * Bootstrap major version to include
105
+ * Default: 3
106
+ * Possible values: 3, 4
107
+
108
+ * --licensor
109
+ * Name to include in the license file
110
+
111
+ ---
112
+
113
+ This all assumes a bunch of things, at least:
78
114
 
79
115
  * That you have a reasonable git installation
80
116
 
data/Rakefile CHANGED
@@ -3,6 +3,36 @@ require 'rspec/core/rake_task'
3
3
  require 'coveralls/rake/task'
4
4
 
5
5
  Coveralls::RakeTask.new
6
- RSpec::Core::RakeTask.new
7
6
 
8
- task :default => [:spec, 'coveralls:push']
7
+ namespace :specs do
8
+ desc 'run the trustworthy specs'
9
+ task :safe do
10
+ RSpec::Core::RakeTask.new(:spec) do |t|
11
+ t.rspec_opts = "--tag ~troublesome"
12
+ end
13
+ Rake::Task['spec'].execute
14
+ end
15
+
16
+ desc 'run the shonky specs'
17
+ task :shaky do
18
+ RSpec::Core::RakeTask.new(:spec) do |t|
19
+ t.rspec_opts = "--tag troublesome"
20
+ end
21
+ Rake::Task['spec'].execute
22
+ end
23
+
24
+ desc 'run all the specs'
25
+ task :all do
26
+ RSpec::Core::RakeTask.new(:spec) do |t|
27
+ t.rspec_opts = "--tag troublesome"
28
+ end
29
+
30
+ RSpec::Core::RakeTask.new(:spec) do |t|
31
+ t.rspec_opts = "--tag ~troublesome"
32
+ end
33
+
34
+ Rake::Task['spec'].execute
35
+ end
36
+ end
37
+
38
+ task :default => ['specs:all', 'coveralls:push']
data/config/config.yaml CHANGED
@@ -68,7 +68,7 @@ sinatra:
68
68
  jekyll:
69
69
  gems:
70
70
  github-pages:
71
- bootstrap: '4.0.0.alpha4'
71
+ # bootstrap: '4.0.0.alpha4'
72
72
  rake:
73
73
 
74
74
  files:
@@ -9,7 +9,7 @@ Now do
9
9
 
10
10
  cd <%= @gen.wormname %>
11
11
  bundle
12
- bundle exec jekyll
12
+ bundle exec jekyll serve
13
13
 
14
14
  which will launch the site (at http://localhost:4000)
15
15
 
@@ -1,3 +1,7 @@
1
+ <% if @gen.bootstrap == '4' %>
2
+ <% @gen.gems['production'].delete 'bootstrap-sass' %>
3
+ <% @gen.gems['production']['bootstrap'] = '4.0.0.alpha4' %>
4
+ <% end %>
1
5
  source 'https://rubygems.org'
2
6
 
3
7
  ruby '<%= RUBY_VERSION %>'
@@ -1,4 +1,4 @@
1
- require 'bootstrap-sass'
1
+ require 'bootstrap<%= '-sass' if @gen.bootstrap == '3' %>'
2
2
 
3
3
  css_dir = 'public/css'
4
4
  sass_dir = 'public/sass'
@@ -7,6 +7,17 @@ body {
7
7
  margin-bottom: $footer-height;
8
8
  }
9
9
 
10
+ <% if @gen.bootstrap == '4' %>
11
+ .footer {
12
+ position: absolute;
13
+ bottom: 0;
14
+ width: 100%;
15
+ height: $footer-height;
16
+ line-height: $footer-height;
17
+ text-align: center;
18
+ background: $brand-primary;
19
+ }
20
+ <% else %>
10
21
  .footer {
11
22
  position: absolute;
12
23
  bottom: 0;
@@ -23,3 +34,4 @@ body {
23
34
  color: white;
24
35
  }
25
36
  }
37
+ <% end %>
data/lib/skellington.rb CHANGED
@@ -3,7 +3,7 @@ require 'yaml'
3
3
  require 'fileutils'
4
4
  require 'erubis'
5
5
  require 'git'
6
- require 'bootstrap'
6
+ require 'bootstrap-sass'
7
7
 
8
8
  require 'skellington/version'
9
9
  require 'skellington/generator'
@@ -14,6 +14,10 @@ module Skellington
14
14
  'sinatra',
15
15
  'jekyll'
16
16
  ]
17
+ method_option :bootstrap,
18
+ default: '3',
19
+ description: 'Bootstrap major version to use',
20
+ enum: ['3', '4']
17
21
  method_option :licensor,
18
22
  aliases: '-l',
19
23
  description: 'Name to insert into the license file'
@@ -1,10 +1,12 @@
1
1
  module Skellington
2
2
  class Generator
3
- attr_reader :path, :filename, :camelname, :files, :gems, :framework
3
+ attr_reader :path, :filename, :camelname, :files, :gems, :framework, :bootstrap
4
4
  attr_accessor :licensor
5
5
 
6
6
  def initialize path, options = {}
7
- @framework = options[:framework] ? options[:framework] : 'sinatra'
7
+ # @framework = options[:framework] ? options[:framework] : 'sinatra'
8
+ @framework = options.fetch('framework', 'sinatra')
9
+ @bootstrap = options.fetch('bootstrap', 3).to_s
8
10
  @full_path = path
9
11
  @path = File.dirname @full_path
10
12
  @filename = File.basename(@full_path)
@@ -24,6 +26,7 @@ module Skellington
24
26
  end
25
27
 
26
28
  generate
29
+ strap_boots
27
30
  git_init
28
31
  post_run
29
32
  end
@@ -33,8 +36,15 @@ module Skellington
33
36
  t = Template.new k, self
34
37
  t.write
35
38
  end
39
+ end
36
40
 
41
+ def strap_boots
37
42
  if @framework == 'jekyll'
43
+ if @bootstrap == '4'
44
+ Object.send(:remove_const, :Bootstrap)
45
+ require 'bootstrap'
46
+ end
47
+
38
48
  root = "#{self.path}/#{self.wormname}"
39
49
 
40
50
  FileUtils.mkdir_p "#{root}/javascripts"
@@ -1,3 +1,3 @@
1
1
  module Skellington
2
- VERSION = '0.8.0'
2
+ VERSION = '0.8.1'
3
3
  end
data/skellington.gemspec CHANGED
@@ -21,6 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.add_dependency 'thor', '~> 0.19'
22
22
  spec.add_dependency 'erubis', '~> 2.7'
23
23
  spec.add_dependency 'git', '~> 1.2'
24
+ spec.add_dependency 'bootstrap-sass'
24
25
  spec.add_dependency 'bootstrap', '~> 4.0.0.alpha4'
25
26
 
26
27
  spec.add_development_dependency 'coveralls', '~> 0.7'
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'sets us sass' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  subject.generate 'dummy_app'
10
10
 
11
11
  expect('dummy_app/assets/application.scss').to have_content (
@@ -0,0 +1,48 @@
1
+ module Skellington
2
+ describe CLI, troublesome: true do
3
+ let :subject do
4
+ described_class.new
5
+ end
6
+
7
+ it 'installs bootstrap 4' do
8
+ subject.options = { 'framework' => 'jekyll', 'bootstrap' => 4 }
9
+ subject.generate 'dummy_app'
10
+
11
+ expect(Dir).to exist 'dummy_app/javascripts/bootstrap'
12
+ expect('dummy_app/javascripts/bootstrap.min.js').to have_content (
13
+ """
14
+ /*!
15
+ * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)
16
+ * Copyright 2011-2016 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
17
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
18
+ */
19
+ """
20
+ )
21
+
22
+ expect(Dir).to exist 'dummy_app/_sass/bootstrap'
23
+ expect('dummy_app/_sass/bootstrap.scss').to have_content (
24
+ """
25
+ /*!
26
+ * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)
27
+ * Copyright 2011-2016 The Bootstrap Authors
28
+ * Copyright 2011-2016 Twitter, Inc.
29
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
30
+ */
31
+ """
32
+ )
33
+ expect('dummy_app/_sass/bootstrap-custom.scss').to have_content (
34
+ """
35
+ $brand-primary: #fa8100;
36
+ """
37
+ )
38
+ expect('dummy_app/_sass/fonts.scss').to have_content (
39
+ """
40
+ @import url(http://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css);
41
+ @import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono);
42
+
43
+ $font-family-san-serif: 'Ubuntu Mono'
44
+ """
45
+ )
46
+ end
47
+ end
48
+ end
@@ -5,16 +5,16 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'installs bootstrap' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  subject.generate 'dummy_app'
10
10
 
11
11
  expect(Dir).to exist 'dummy_app/javascripts/bootstrap'
12
12
  expect('dummy_app/javascripts/bootstrap.min.js').to have_content (
13
13
  """
14
14
  /*!
15
- * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)
16
- * Copyright 2011-2016 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
17
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
15
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
16
+ * Copyright 2011-2016 Twitter, Inc.
17
+ * Licensed under the MIT license
18
18
  */
19
19
  """
20
20
  )
@@ -23,8 +23,7 @@ module Skellington
23
23
  expect('dummy_app/_sass/bootstrap.scss').to have_content (
24
24
  """
25
25
  /*!
26
- * Bootstrap v4.0.0-alpha.4 (http://getbootstrap.com)
27
- * Copyright 2011-2016 The Bootstrap Authors
26
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
28
27
  * Copyright 2011-2016 Twitter, Inc.
29
28
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
30
29
  */
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'generates a _config.yml file' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  subject.generate 'dummy_app'
10
10
  expect('dummy_app/_config.yml').to have_content (
11
11
  """
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'generates a Gemfile' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  subject.generate 'dummy_app'
10
10
  expect('dummy_app/Gemfile').to have_content (
11
11
  """
@@ -14,7 +14,6 @@ module Skellington
14
14
  /ruby '[0-9]*\\.[0-9]*\\.[0-9]*'/
15
15
 
16
16
  gem 'github-pages'
17
- gem 'bootstrap', '~> 4.0.0.alpha4'
18
17
  gem 'rake'
19
18
  """
20
19
  )
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'initialises a git repo' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  subject.generate 'dummy_app'
10
10
  expect(Dir).to exist 'dummy_app/.git'
11
11
 
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'creates a default index page' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  subject.generate 'dummy_app'
10
10
  expect(Dir).to exist 'dummy_app/index.md'
11
11
 
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'generates a default layout' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  subject.generate 'dummy_app'
10
10
  expect('dummy_app/_layouts/default.html').to have_content (
11
11
  """
@@ -7,7 +7,7 @@ module Skellington
7
7
  context 'generate a LICENSE' do
8
8
  it 'plain license' do
9
9
  Timecop.freeze Time.local 2016, 01, 19
10
- subject.options = { framework: 'jekyll' }
10
+ subject.options = { 'framework' => 'jekyll' }
11
11
  subject.generate 'dummy_app'
12
12
  expect('dummy_app/LICENSE.md').to have_content (
13
13
  """
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'generates a .ruby-version' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  expect { subject.generate 'dummy_app' }.to produce_file 'dummy_app/.ruby-version'
10
10
  expect('dummy_app/.ruby-version').to have_content (
11
11
  """
@@ -5,7 +5,7 @@ module Skellington
5
5
  end
6
6
 
7
7
  it 'generates correct output' do
8
- subject.options = { framework: 'jekyll' }
8
+ subject.options = { 'framework' => 'jekyll' }
9
9
  expect { subject.generate 'dummy_app' }.to output(/
10
10
  Your new Jekyll site DummyApp has been created
11
11
 
@@ -13,7 +13,7 @@ Now do
13
13
 
14
14
  cd dummy_app
15
15
  bundle
16
- bundle exec jekyll
16
+ bundle exec jekyll serve
17
17
 
18
18
  which will launch the site \(at http:\/\/localhost:4000\)
19
19
 
@@ -0,0 +1,20 @@
1
+ module Skellington
2
+ describe CLI do
3
+ let :subject do
4
+ described_class.new
5
+ end
6
+
7
+ it 'generates a config.rb file' do
8
+ subject.options = { 'bootstrap' => '4' }
9
+ subject.generate 'dummy_app'
10
+ expect('dummy_app/config.rb').to have_content (
11
+ """
12
+ require 'bootstrap'
13
+
14
+ css_dir = 'public/css'
15
+ sass_dir = 'public/sass'
16
+ """
17
+ )
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,40 @@
1
+ module Skellington
2
+ describe CLI do
3
+ let :subject do
4
+ described_class.new
5
+ end
6
+
7
+ it 'generates a Gemfile' do
8
+ subject.options = { 'bootstrap' => '4' }
9
+ subject.generate 'dummy_app'
10
+ expect('dummy_app/Gemfile').to have_content (
11
+ """
12
+ source 'https://rubygems.org'
13
+
14
+ /ruby '[0-9]*\\.[0-9]*\\.[0-9]*'/
15
+
16
+ gem 'sinatra', '~> 1.4'
17
+ gem 'rack-conneg'
18
+ gem 'rack-tracker'
19
+ gem 'rake'
20
+ gem 'compass'
21
+ gem 'erubis'
22
+ gem 'puma'
23
+ gem 'bootstrap', '~> 4.0.0.alpha4'
24
+
25
+ group :test do
26
+ gem 'rspec'
27
+ gem 'guard'
28
+ gem 'guard-rspec'
29
+ gem 'guard-jasmine'
30
+ gem 'capybara'
31
+ gem 'coveralls'
32
+ gem 'jasmine'
33
+ gem 'pry'
34
+ gem 'actionpack'
35
+ end
36
+ """
37
+ )
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,35 @@
1
+ module Skellington
2
+ describe CLI do
3
+ let :subject do
4
+ described_class.new
5
+ end
6
+
7
+ it 'generates placeholders for static files' do
8
+ subject.options = { 'bootstrap' => '4' }
9
+ subject.generate 'dummy_app'
10
+
11
+ expect('dummy_app/public/sass/_footer.scss').to have_content (
12
+ """
13
+ html {
14
+ position: relative;
15
+ min-height: 100%;
16
+ }
17
+
18
+ body {
19
+ margin-bottom: $footer-height;
20
+ }
21
+
22
+ .footer {
23
+ position: absolute;
24
+ bottom: 0;
25
+ width: 100%;
26
+ height: $footer-height;
27
+ line-height: $footer-height;
28
+ text-align: center;
29
+ background: $brand-primary;
30
+ }
31
+ """
32
+ )
33
+ end
34
+ end
35
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skellington
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - pikesley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-26 00:00:00.000000000 Z
11
+ date: 2016-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bootstrap-sass
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: bootstrap
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -236,6 +250,7 @@ files:
236
250
  - skellington.gemspec
237
251
  - spec/hyphens_spec.rb
238
252
  - spec/jekyll/cli/assets_css_spec.rb
253
+ - spec/jekyll/cli/bootstrap_4_spec.rb
239
254
  - spec/jekyll/cli/bootstrap_spec.rb
240
255
  - spec/jekyll/cli/config_yml_spec.rb
241
256
  - spec/jekyll/cli/gemfile_spec.rb
@@ -248,9 +263,11 @@ files:
248
263
  - spec/no-clobber_spec.rb
249
264
  - spec/non_local_path_spec.rb
250
265
  - spec/sinatra/cli/app_spec.rb
266
+ - spec/sinatra/cli/config_rb_bootstrap_4_spec.rb
251
267
  - spec/sinatra/cli/config_rb_spec.rb
252
268
  - spec/sinatra/cli/config_ru_spec.rb
253
269
  - spec/sinatra/cli/config_yml_spec.rb
270
+ - spec/sinatra/cli/gemfile_bootstrap_4_spec.rb
254
271
  - spec/sinatra/cli/gemfile_spec.rb
255
272
  - spec/sinatra/cli/git_spec.rb
256
273
  - spec/sinatra/cli/guardfile_spec.rb
@@ -260,6 +277,7 @@ files:
260
277
  - spec/sinatra/cli/layout_spec.rb
261
278
  - spec/sinatra/cli/license_spec.rb
262
279
  - spec/sinatra/cli/procfile_spec.rb
280
+ - spec/sinatra/cli/public_bootstrap_4_spec.rb
263
281
  - spec/sinatra/cli/public_spec.rb
264
282
  - spec/sinatra/cli/racks_spec.rb
265
283
  - spec/sinatra/cli/rakefile_spec.rb
@@ -295,6 +313,7 @@ summary: Opinionated boilerplate skeleton generator for a Sinatra app
295
313
  test_files:
296
314
  - spec/hyphens_spec.rb
297
315
  - spec/jekyll/cli/assets_css_spec.rb
316
+ - spec/jekyll/cli/bootstrap_4_spec.rb
298
317
  - spec/jekyll/cli/bootstrap_spec.rb
299
318
  - spec/jekyll/cli/config_yml_spec.rb
300
319
  - spec/jekyll/cli/gemfile_spec.rb
@@ -307,9 +326,11 @@ test_files:
307
326
  - spec/no-clobber_spec.rb
308
327
  - spec/non_local_path_spec.rb
309
328
  - spec/sinatra/cli/app_spec.rb
329
+ - spec/sinatra/cli/config_rb_bootstrap_4_spec.rb
310
330
  - spec/sinatra/cli/config_rb_spec.rb
311
331
  - spec/sinatra/cli/config_ru_spec.rb
312
332
  - spec/sinatra/cli/config_yml_spec.rb
333
+ - spec/sinatra/cli/gemfile_bootstrap_4_spec.rb
313
334
  - spec/sinatra/cli/gemfile_spec.rb
314
335
  - spec/sinatra/cli/git_spec.rb
315
336
  - spec/sinatra/cli/guardfile_spec.rb
@@ -319,6 +340,7 @@ test_files:
319
340
  - spec/sinatra/cli/layout_spec.rb
320
341
  - spec/sinatra/cli/license_spec.rb
321
342
  - spec/sinatra/cli/procfile_spec.rb
343
+ - spec/sinatra/cli/public_bootstrap_4_spec.rb
322
344
  - spec/sinatra/cli/public_spec.rb
323
345
  - spec/sinatra/cli/racks_spec.rb
324
346
  - spec/sinatra/cli/rakefile_spec.rb