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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e684d97af6b8cca59865bb7d84045625df2357214bd756f63456435160f49b3
4
- data.tar.gz: b0ae039bf62ed232460bd9f0eb924ccce92555dda231e8fe051401ae647d65c1
3
+ metadata.gz: 61b9cb4553f3ffae97642ec3aa15c218be90a047c89c3ba0373fad360dd942fc
4
+ data.tar.gz: 962cf7626ca047b3a8e414ead6043476778717c5647dd0928efc5fd3b0b65ec6
5
5
  SHA512:
6
- metadata.gz: 653fd7de13544c3081459fa32a85814d85925fe087c027aee63477d691b30179cac09b24172da99bfdd3f6260a38812b9acd55cd483e21d3e1fba91a4ef88ec2
7
- data.tar.gz: 69d4f55ea43380c41e4cee01ace5c15aebcb1840b7ac1310c34299b799fc82bc1673ab0b4deb2c5441289648e493fd0ee2f393a1218fd641d03d3a3406089efb
6
+ metadata.gz: 8905a5aeafa593a8d81430529f5d7bbbe1a532d87da0c7039834aa84122113f817f1ff180c055929146a40c79b772254a5faf4625d4ec49c30bc48983d4c61a2
7
+ data.tar.gz: 39a8250d0f32c5d09990f786625e3864400e8a41ad27fffe44d69bf2d6365c8fe765db2b99eb40d17ecf9ef86daca7a02d851b0ed9f69f6aa927558787ff3894
@@ -0,0 +1,2 @@
1
+ ignore:
2
+ - "templates/partials/db_optimizations_configuration.rb"
data/NEWS.md CHANGED
@@ -1,5 +1,9 @@
1
1
  Unreleased
2
2
 
3
+ 1.55.1 (September 11, 2020)
4
+
5
+ * Fixed: Missing newline in generated development config
6
+
3
7
  1.55.0 (July 15, 2020)
4
8
 
5
9
  * Changed: lint generator to install standard instead of RuboCop
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
- curl https://hub.github.com/standalone -sLo ~/bin/hub && chmod +x ~/bin/hub
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:
@@ -4,5 +4,5 @@ module Suspenders
4
4
  .read("#{File.dirname(__FILE__)}/../../.ruby-version")
5
5
  .strip
6
6
  .freeze
7
- VERSION = "1.55.0".freeze
7
+ VERSION = "1.55.1".freeze
8
8
  end
@@ -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
@@ -1,5 +1,7 @@
1
- config.after_initialize do
2
- Bullet.enable = true
3
- Bullet.bullet_logger = true
4
- Bullet.rails_logger = true
5
- end
1
+
2
+
3
+ config.after_initialize do
4
+ Bullet.enable = true
5
+ Bullet.bullet_logger = true
6
+ Bullet.rails_logger = true
7
+ end
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.0
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-07-15 00:00:00.000000000 Z
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: