factory_sloth 1.0.0 → 1.0.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: 93e7cdb1f418a30bf140f3b28ce646bcbf9d46302b45bb105948c32ceee042ff
4
- data.tar.gz: b019faddee1c76fa58feb3129df86b6af87087c12f94ce8daddfaa5cfe14408a
3
+ metadata.gz: 80d822847c787a87466a4e359de88dab4838cf0c22f60f93c8d04e236d6d7605
4
+ data.tar.gz: a76d0cc92c138b39d0042ca70c12a2ac44985d18100ceb42d5a9f21b780f50f8
5
5
  SHA512:
6
- metadata.gz: eab4ae49740dc1c9ded502ea5af2558e3edc441bf7a5527f8d382ae7bb71da9dd0bac816beb75572b1c3afdc18d89c7c402e567d90c1302b95b5232f293a43a9
7
- data.tar.gz: 6c184366974c8428d81f800d063c10a243c8c7989154f9c7b5dfcb27651af85723fcd04d2b24d1b84819f62ab5150eb3ee3d52c5bb8bea950c56b5ff744ba484
6
+ metadata.gz: 78a95512cbfe09fc763ba18b4304b8abbc35740af0654459bd9cd6724e3413ad3261f3c1c51aac38b7d31d42dc6c4798fa2dd1e0a8045e6dcc388a1863ecf147
7
+ data.tar.gz: a531d2ef5a770cb73f693d392c9890db5e707297f73c93497170d3b05af666449f810ba46696909673087ef0e103a2ed1434a6d11225825bd92af02cfdd5fa77
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.1] - 2023-05-14
4
+
5
+ ### Fixed
6
+
7
+ - Fixed shelling out on linuxes with simple shells
8
+
3
9
  ## [1.0.0] - 2023-05-14
4
10
 
5
11
  - Initial release
data/README.md CHANGED
@@ -2,6 +2,7 @@
2
2
 
3
3
  [![Gem Version](https://badge.fury.io/rb/factory_sloth.svg)](http://badge.fury.io/rb/factory_sloth)
4
4
  [![Build Status](https://github.com/jaynetics/factory_sloth/actions/workflows/tests.yml/badge.svg)](https://github.com/jaynetics/factory_sloth/actions)
5
+ [![Coverage](https://codecov.io/gh/jaynetics/factory_sloth/branch/main/graph/badge.svg?token=W6UJA0F8WO)](https://codecov.io/gh/jaynetics/factory_sloth)
5
6
 
6
7
  `factory_sloth` is too lazy to write to the database.
7
8
 
@@ -55,7 +55,7 @@ class FactorySloth::CodeMod
55
55
  tempfile.write(spec_code)
56
56
  tempfile.close
57
57
  path = [tempfile.path, line].compact.map(&:to_s).join(':')
58
- result = !!system("bundle exec rspec #{path} --fail-fast &> /dev/null")
58
+ result = !!system("bundle exec rspec #{path} --fail-fast 1>/dev/null 2>&1")
59
59
  tempfile.unlink
60
60
  result
61
61
  end
@@ -1,3 +1,3 @@
1
1
  module FactorySloth
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: factory_sloth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Janosch Müller