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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 98900a115a9524e293d62e5314630d7b892afb84bc506257683c0d689c33ed82
4
- data.tar.gz: 1d5286deaed5cf509183e90a320b323e9af4759c8acd1f013de46a8e0cb25e2c
3
+ metadata.gz: 1f7c4110df539eedc718f53610a4ca6784c01a6b6f951f6525341e692ba9bb65
4
+ data.tar.gz: 6269c1a915b7871359c39d83491690f0b2a26310765a8fdee660b646866f1c73
5
5
  SHA512:
6
- metadata.gz: 0313b2a363c52302091ec8b6fd22f9356924cf5f279912265a6da87baca143c42078901f479d32337be8a3d6e58662790fab011b84f00711f8676ecd947f350d
7
- data.tar.gz: d2acf4a46bd929b5e5857c13596c89015ed574b0566ad15f6080842dc1511aca8d4917026fb203006ee2d41ae14e4dd9248a2214ee8e81cfe5a4c4afc98367e0
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://travis-ci.com/DannyBen/rspec_fixtures.svg?branch=master)](https://travis-ci.com/DannyBen/rspec_fixtures)
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` environment variable. You can change this by
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
@@ -1,3 +1,3 @@
1
1
  module RSpecFixtures
2
- VERSION = "0.7.2"
2
+ VERSION = "0.7.3"
3
3
  end
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.2
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-14 00:00:00.000000000 Z
11
+ date: 2020-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colsole