rspec_fixtures 0.1.2 → 0.2.0
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 +5 -5
- data/lib/rspec_fixtures/approval_handler.rb +3 -1
- data/lib/rspec_fixtures/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: de274e56e77ad59b4ae4898927711afedc7982572c23d06a951f01b52df1afbd
|
|
4
|
+
data.tar.gz: e09a74e711b2a0c7a5838453c62da66b2b5355b4742ee60bf402f9bbd64ceaf3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30c6468966b69d2a45874e17abc3d908e24d58ab160d37e0e0759ab929f2d9e7ad934abd7e9862e7693b79781a9680b6d944c8ecb7934bd575da36af57180946
|
|
7
|
+
data.tar.gz: 13c7c6b4db59f6d8523056f6f34a0a076a527b5599934df700b75602107a088734272f887837576d44e7cffe02a9c4e1bbc62ebd5572788d6e36e11a1da59ece
|
|
@@ -33,7 +33,9 @@ module RSpecFixtures
|
|
|
33
33
|
private
|
|
34
34
|
|
|
35
35
|
def user_approves?
|
|
36
|
-
|
|
36
|
+
# NOTE: getc does not work, therefore using gets
|
|
37
|
+
# See: https://stackoverflow.com/questions/48459605/ruby-2-5-0-stdin-getc-does-not-work-on-consecutive-calls
|
|
38
|
+
$stdin.gets =~ /^[Yy]/
|
|
37
39
|
end
|
|
38
40
|
end
|
|
39
41
|
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.
|
|
4
|
+
version: 0.2.0
|
|
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:
|
|
11
|
+
date: 2018-01-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -86,14 +86,14 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0.
|
|
89
|
+
version: '0.9'
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: '0.
|
|
96
|
+
version: '0.9'
|
|
97
97
|
description: Automatic interactive fixtures for rspec
|
|
98
98
|
email: db@dannyben.com
|
|
99
99
|
executables: []
|
|
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
130
130
|
version: '0'
|
|
131
131
|
requirements: []
|
|
132
132
|
rubyforge_project:
|
|
133
|
-
rubygems_version: 2.
|
|
133
|
+
rubygems_version: 2.7.3
|
|
134
134
|
signing_key:
|
|
135
135
|
specification_version: 4
|
|
136
136
|
summary: Interactive RSpec Fixtures
|