rspec_fixtures 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/rspec_fixtures/rspec_config.rb +1 -1
- data/lib/rspec_fixtures/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f7c4110df539eedc718f53610a4ca6784c01a6b6f951f6525341e692ba9bb65
|
4
|
+
data.tar.gz: 6269c1a915b7871359c39d83491690f0b2a26310765a8fdee660b646866f1c73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a51ecef9265447eb36b27eeb316b385eedcf63c90e60c9fb075b92bc91fda1264e930e976914ed2152e49e1cddf1fc18c362bdb1c5df0ee4d5c2a5ee2c437a56
|
7
|
+
data.tar.gz: dfc84f39093c01331977b936de9958c61aff103417518313ae6d3428abd68466d6fb393af8ad342038c9f76125df952b105c7cfffa97d063ec1e7125b129f368
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@ RSpec Fixtures
|
|
2
2
|
==================================================
|
3
3
|
|
4
4
|
[![Gem Version](https://badge.fury.io/rb/rspec_fixtures.svg)](https://badge.fury.io/rb/rspec_fixtures)
|
5
|
-
[![Build Status](https://
|
5
|
+
[![Build Status](https://github.com/DannyBen/rspec_fixtures/workflows/Test/badge.svg)](https://github.com/DannyBen/rspec_fixtures/actions?query=workflow%3ATest)
|
6
6
|
[![Maintainability](https://api.codeclimate.com/v1/badges/a06ed5e30412062c454c/maintainability)](https://codeclimate.com/github/DannyBen/rspec_fixtures/maintainability)
|
7
7
|
|
8
8
|
---
|
@@ -155,8 +155,8 @@ Configuration
|
|
155
155
|
### `interactive_fixtures`
|
156
156
|
|
157
157
|
By default, interactive approvals are enabled in any environment that
|
158
|
-
does not define the `CI`
|
159
|
-
adding this to your `spec_helper`
|
158
|
+
does not define the `CI` or the `GITHUB_ACTIONS` environment variables.
|
159
|
+
You can change this by adding this to your `spec_helper`
|
160
160
|
|
161
161
|
```ruby
|
162
162
|
RSpec.configure do |config|
|
@@ -3,7 +3,7 @@ if defined? RSpec
|
|
3
3
|
RSpec.configure do |config|
|
4
4
|
config.include RSpecFixtures::Matchers
|
5
5
|
config.add_setting :fixtures_path, default: File.expand_path('spec/fixtures')
|
6
|
-
config.add_setting :interactive_fixtures, default: !ENV['CI']
|
6
|
+
config.add_setting :interactive_fixtures, default: (!ENV['CI'] and !ENV['GITHUB_ACTIONS'])
|
7
7
|
config.add_setting :auto_approve, default: ENV['AUTO_APPROVE']
|
8
8
|
config.add_setting :strip_ansi_escape, default: false
|
9
9
|
config.add_setting :before_approval, default: nil
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec_fixtures
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Danny Ben Shitrit
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-01-
|
11
|
+
date: 2020-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colsole
|