suspenders 1.55.0 → 1.55.1
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/.standard.yml +2 -0
- data/NEWS.md +4 -0
- data/README.md +1 -1
- data/lib/suspenders/version.rb +1 -1
- data/spec/features/new_project_spec.rb +2 -0
- data/templates/partials/db_optimizations_configuration.rb +7 -5
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 61b9cb4553f3ffae97642ec3aa15c218be90a047c89c3ba0373fad360dd942fc
|
|
4
|
+
data.tar.gz: 962cf7626ca047b3a8e414ead6043476778717c5647dd0928efc5fd3b0b65ec6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8905a5aeafa593a8d81430529f5d7bbbe1a532d87da0c7039834aa84122113f817f1ff180c055929146a40c79b772254a5faf4625d4ec49c30bc48983d4c61a2
|
|
7
|
+
data.tar.gz: 39a8250d0f32c5d09990f786625e3864400e8a41ad27fffe44d69bf2d6365c8fe765db2b99eb40d17ecf9ef86daca7a02d851b0ed9f69f6aa927558787ff3894
|
data/.standard.yml
ADDED
data/NEWS.md
CHANGED
data/README.md
CHANGED
|
@@ -155,7 +155,7 @@ bypass this with the `--skip-git` option:
|
|
|
155
155
|
You can optionally create a GitHub repository for the suspended Rails app. It
|
|
156
156
|
requires that you have [Hub](https://github.com/github/hub) on your system:
|
|
157
157
|
|
|
158
|
-
|
|
158
|
+
brew install hub # macOS, for other systems see https://github.com/github/hub#installation
|
|
159
159
|
suspenders app --github organization/project
|
|
160
160
|
|
|
161
161
|
This has the same effect as running:
|
data/lib/suspenders/version.rb
CHANGED
|
@@ -194,6 +194,8 @@ RSpec.describe "Suspend a new project with default configuration" do
|
|
|
194
194
|
expect(development_config).to match(/^ +Bullet.enable = true$/)
|
|
195
195
|
expect(development_config).to match(/^ +Bullet.bullet_logger = true$/)
|
|
196
196
|
expect(development_config).to match(/^ +Bullet.rails_logger = true$/)
|
|
197
|
+
# prevent broken result of standard removing whitespaces
|
|
198
|
+
expect(development_config).to_not match(/trueconfig/)
|
|
197
199
|
end
|
|
198
200
|
|
|
199
201
|
it "configs missing assets to raise in test" do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: suspenders
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.55.
|
|
4
|
+
version: 1.55.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- thoughtbot
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bitters
|
|
@@ -80,6 +80,7 @@ extra_rdoc_files:
|
|
|
80
80
|
files:
|
|
81
81
|
- ".gitignore"
|
|
82
82
|
- ".ruby-version"
|
|
83
|
+
- ".standard.yml"
|
|
83
84
|
- ".travis.yml"
|
|
84
85
|
- CONTRIBUTING.md
|
|
85
86
|
- GOALS.md
|
|
@@ -247,7 +248,7 @@ homepage: http://github.com/thoughtbot/suspenders
|
|
|
247
248
|
licenses:
|
|
248
249
|
- MIT
|
|
249
250
|
metadata: {}
|
|
250
|
-
post_install_message:
|
|
251
|
+
post_install_message:
|
|
251
252
|
rdoc_options:
|
|
252
253
|
- "--charset=UTF-8"
|
|
253
254
|
require_paths:
|
|
@@ -264,7 +265,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
264
265
|
version: 2.7.4
|
|
265
266
|
requirements: []
|
|
266
267
|
rubygems_version: 3.1.2
|
|
267
|
-
signing_key:
|
|
268
|
+
signing_key:
|
|
268
269
|
specification_version: 4
|
|
269
270
|
summary: Generate a Rails app using thoughtbot's best practices.
|
|
270
271
|
test_files:
|