rspec-block_is_expected 1.0.1 → 1.0.2

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: 1401c6877d1258a54b88931a172e7c4f08f89bc992580f8d8cd839c3a82293dc
4
- data.tar.gz: c255d18e22d757a6a84d37f039c2441649a16c26a45458f35154e3cb2b2af34b
3
+ metadata.gz: 3cef7bf00bb24e2c3c60293d3b3229485f9fc1703735ffab461d33a915ef4cfb
4
+ data.tar.gz: 8693ea1be1ed6b7e44d13e39efac3fc2ec5ce2bfba65d1def223fbec452e5c5c
5
5
  SHA512:
6
- metadata.gz: 145e81443fa65ff2d9482c17bf49d437e42107a18383c55b0bac18483d49b25674e9d2c0a7805e80f307379fd5352819d446612f571e19fe295c54d0a8305dca
7
- data.tar.gz: 820e476a3997581a2dcd5bf554b90fff25511b3b84e79d46d1a1f1c1662410f08813518177a3dfa1dac15468ebeb9c30b21fd1322f0ce7f3bdd0a6c333edbaff
6
+ metadata.gz: e922be0317291a31990767fd9c681fd8fd8095086e1bbae2de3b386a4e94b6aaead26ac79240ee0d068d93d42c526d8f6ec39ed40c1c13c411c53027ee9f74bf
7
+ data.tar.gz: e2bc845a0f4b2b816801518eae6255d0c55a21ad01613cc49b447187c0402be5ad2df74e3379e771e6e831ec698974907c5bf2a26686fd2d07c84a042e559691
data/.gitignore CHANGED
@@ -11,3 +11,6 @@
11
11
 
12
12
  # rspec failure tracking
13
13
  .rspec_status
14
+
15
+ # gemfiles for CI
16
+ /gemfiles/*.gemfile.lock
@@ -33,8 +33,8 @@ matrix:
33
33
  - rvm: ruby-head
34
34
  fast_finish: true
35
35
  include:
36
- - rvm: 1.8.7-p371
37
- gemfile: gemfiles/ruby_1.8.7_p371.gemfile
36
+ - rvm: 1.8.7-p374
37
+ gemfile: gemfiles/ruby_1.8.7_p374.gemfile
38
38
  - rvm: 1.9.3-p551
39
39
  gemfile: gemfiles/ruby_1.9.3_p551.gemfile
40
40
  - rvm: 2.0.0-p648
data/Gemfile CHANGED
@@ -9,11 +9,12 @@ group :test do
9
9
  gem 'rubocop-rspec', '~> 1.24.0'
10
10
  end
11
11
  if ruby_version >= Gem::Version.new('2.0')
12
- gem 'byebug', '~> 10', platform: :mri, require: false
13
- gem 'pry', '~> 0', platform: :mri, require: false
14
- gem 'pry-byebug', '~> 3', platform: :mri, require: false
12
+ gem 'byebug', '~> 10', :platform => :mri, :require => false
13
+ gem 'pry', '~> 0', :platform => :mri, :require => false
14
+ gem 'pry-byebug', '~> 3', :platform => :mri, :require => false
15
15
  end
16
- gem 'simplecov', '~> 0', require: false
16
+ gem 'rspec-pending_for', '~> 0.1', :require => false
17
+ gem 'simplecov', '~> 0', :require => false
17
18
  end
18
19
 
19
20
  # Specify your gem's dependencies in rspec-block_is_expected.gemspec
@@ -1,5 +1,5 @@
1
1
  module Rspec
2
2
  module BlockIsExpected
3
- VERSION = '1.0.1'.freeze
3
+ VERSION = '1.0.2'.freeze
4
4
  end
5
5
  end
@@ -26,5 +26,6 @@ Gem::Specification.new do |spec|
26
26
  spec.add_development_dependency 'bundler', '~> 1.16'
27
27
  spec.add_development_dependency 'rake', ['>= 10.0', '<= 13']
28
28
  spec.add_development_dependency 'rspec', '~> 3.8'
29
+ spec.add_development_dependency 'rspec-pending_for', '~> 0.1'
29
30
  spec.add_development_dependency 'wwtd'
30
31
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-block_is_expected
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-10-01 00:00:00.000000000 Z
11
+ date: 2018-10-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-core
@@ -86,6 +86,20 @@ dependencies:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
88
  version: '3.8'
89
+ - !ruby/object:Gem::Dependency
90
+ name: rspec-pending_for
91
+ requirement: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: '0.1'
96
+ type: :development
97
+ prerelease: false
98
+ version_requirements: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: '0.1'
89
103
  - !ruby/object:Gem::Dependency
90
104
  name: wwtd
91
105
  requirement: !ruby/object:Gem::Requirement
@@ -122,27 +136,17 @@ files:
122
136
  - bin/setup
123
137
  - gemfiles/jruby_1.7.26.gemfile
124
138
  - gemfiles/jruby_9.1.9.0.gemfile
125
- - gemfiles/jruby_9.1.9.0.gemfile.lock
126
139
  - gemfiles/jruby_9.2.0.0.gemfile
127
- - gemfiles/jruby_9.2.0.0.gemfile.lock
128
140
  - gemfiles/jruby_head.gemfile
129
- - gemfiles/jruby_head.gemfile.lock
130
- - gemfiles/ruby_1.8.7_p371.gemfile
141
+ - gemfiles/ruby_1.8.7_p374.gemfile
131
142
  - gemfiles/ruby_1.9.3_p551.gemfile
132
143
  - gemfiles/ruby_2.0.0_p648.gemfile
133
- - gemfiles/ruby_2.0.0_p648.gemfile.lock
134
144
  - gemfiles/ruby_2.1.10.gemfile
135
- - gemfiles/ruby_2.1.10.gemfile.lock
136
145
  - gemfiles/ruby_2.2.10.gemfile
137
- - gemfiles/ruby_2.2.10.gemfile.lock
138
146
  - gemfiles/ruby_2.3.7.gemfile
139
- - gemfiles/ruby_2.3.7.gemfile.lock
140
147
  - gemfiles/ruby_2.4.4.gemfile
141
- - gemfiles/ruby_2.4.4.gemfile.lock
142
148
  - gemfiles/ruby_2.5.1.gemfile
143
- - gemfiles/ruby_2.5.1.gemfile.lock
144
149
  - gemfiles/ruby_head.gemfile
145
- - gemfiles/ruby_head.gemfile.lock
146
150
  - lib/rspec/block_is_expected.rb
147
151
  - lib/rspec/block_is_expected/rspec.rb
148
152
  - lib/rspec/block_is_expected/version.rb
@@ -167,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
167
171
  version: '0'
168
172
  requirements: []
169
173
  rubyforge_project:
170
- rubygems_version: 2.7.7
174
+ rubygems_version: 2.7.6
171
175
  signing_key:
172
176
  specification_version: 4
173
177
  summary: Simplify testing of blocks in RSpec via block_is_expected
@@ -1,70 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- ffi (1.9.25-java)
18
- method_source (0.9.0)
19
- parallel (1.12.1)
20
- parser (2.5.1.2)
21
- ast (~> 2.4.0)
22
- powerpack (0.1.2)
23
- pry (0.11.3-java)
24
- coderay (~> 1.1.0)
25
- method_source (~> 0.9.0)
26
- spoon (~> 0.0)
27
- rainbow (3.0.0)
28
- rake (12.3.1)
29
- rspec (3.8.0)
30
- rspec-core (~> 3.8.0)
31
- rspec-expectations (~> 3.8.0)
32
- rspec-mocks (~> 3.8.0)
33
- rspec-core (3.8.0)
34
- rspec-support (~> 3.8.0)
35
- rspec-expectations (3.8.1)
36
- diff-lcs (>= 1.2.0, < 2.0)
37
- rspec-support (~> 3.8.0)
38
- rspec-mocks (3.8.0)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.8.0)
41
- rspec-support (3.8.0)
42
- rubocop (0.52.1)
43
- parallel (~> 1.10)
44
- parser (>= 2.4.0.2, < 3.0)
45
- powerpack (~> 0.1)
46
- rainbow (>= 2.2.2, < 4.0)
47
- ruby-progressbar (~> 1.7)
48
- unicode-display_width (~> 1.0, >= 1.0.1)
49
- ruby-progressbar (1.10.0)
50
- spoon (0.0.6)
51
- ffi
52
- thor (0.20.0)
53
- unicode-display_width (1.4.0)
54
- wwtd (1.3.0)
55
-
56
- PLATFORMS
57
- java
58
-
59
- DEPENDENCIES
60
- appraisal
61
- bundler (~> 1.16)
62
- pry
63
- rake
64
- rspec
65
- rspec-block_is_expected!
66
- rubocop (~> 0.52.1)
67
- wwtd
68
-
69
- BUNDLED WITH
70
- 1.16.4
@@ -1,70 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- ffi (1.9.25-java)
18
- method_source (0.9.0)
19
- parallel (1.12.1)
20
- parser (2.5.1.2)
21
- ast (~> 2.4.0)
22
- powerpack (0.1.2)
23
- pry (0.11.3-java)
24
- coderay (~> 1.1.0)
25
- method_source (~> 0.9.0)
26
- spoon (~> 0.0)
27
- rainbow (3.0.0)
28
- rake (12.3.1)
29
- rspec (3.8.0)
30
- rspec-core (~> 3.8.0)
31
- rspec-expectations (~> 3.8.0)
32
- rspec-mocks (~> 3.8.0)
33
- rspec-core (3.8.0)
34
- rspec-support (~> 3.8.0)
35
- rspec-expectations (3.8.1)
36
- diff-lcs (>= 1.2.0, < 2.0)
37
- rspec-support (~> 3.8.0)
38
- rspec-mocks (3.8.0)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.8.0)
41
- rspec-support (3.8.0)
42
- rubocop (0.52.1)
43
- parallel (~> 1.10)
44
- parser (>= 2.4.0.2, < 3.0)
45
- powerpack (~> 0.1)
46
- rainbow (>= 2.2.2, < 4.0)
47
- ruby-progressbar (~> 1.7)
48
- unicode-display_width (~> 1.0, >= 1.0.1)
49
- ruby-progressbar (1.10.0)
50
- spoon (0.0.6)
51
- ffi
52
- thor (0.20.0)
53
- unicode-display_width (1.4.0)
54
- wwtd (1.3.0)
55
-
56
- PLATFORMS
57
- java
58
-
59
- DEPENDENCIES
60
- appraisal
61
- bundler (~> 1.16)
62
- pry
63
- rake
64
- rspec
65
- rspec-block_is_expected!
66
- rubocop (~> 0.52.1)
67
- wwtd
68
-
69
- BUNDLED WITH
70
- 1.16.4
@@ -1,70 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- ffi (1.9.25-java)
18
- method_source (0.9.0)
19
- parallel (1.12.1)
20
- parser (2.5.1.2)
21
- ast (~> 2.4.0)
22
- powerpack (0.1.2)
23
- pry (0.11.3-java)
24
- coderay (~> 1.1.0)
25
- method_source (~> 0.9.0)
26
- spoon (~> 0.0)
27
- rainbow (3.0.0)
28
- rake (12.3.1)
29
- rspec (3.8.0)
30
- rspec-core (~> 3.8.0)
31
- rspec-expectations (~> 3.8.0)
32
- rspec-mocks (~> 3.8.0)
33
- rspec-core (3.8.0)
34
- rspec-support (~> 3.8.0)
35
- rspec-expectations (3.8.1)
36
- diff-lcs (>= 1.2.0, < 2.0)
37
- rspec-support (~> 3.8.0)
38
- rspec-mocks (3.8.0)
39
- diff-lcs (>= 1.2.0, < 2.0)
40
- rspec-support (~> 3.8.0)
41
- rspec-support (3.8.0)
42
- rubocop (0.52.1)
43
- parallel (~> 1.10)
44
- parser (>= 2.4.0.2, < 3.0)
45
- powerpack (~> 0.1)
46
- rainbow (>= 2.2.2, < 4.0)
47
- ruby-progressbar (~> 1.7)
48
- unicode-display_width (~> 1.0, >= 1.0.1)
49
- ruby-progressbar (1.10.0)
50
- spoon (0.0.6)
51
- ffi
52
- thor (0.20.0)
53
- unicode-display_width (1.4.0)
54
- wwtd (1.3.0)
55
-
56
- PLATFORMS
57
- java
58
-
59
- DEPENDENCIES
60
- appraisal
61
- bundler (~> 1.16)
62
- pry
63
- rake
64
- rspec
65
- rspec-block_is_expected!
66
- rubocop (~> 0.52.1)
67
- wwtd
68
-
69
- BUNDLED WITH
70
- 1.16.4
@@ -1,50 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- coderay (1.1.2)
15
- diff-lcs (1.3)
16
- method_source (0.9.0)
17
- pry (0.11.3)
18
- coderay (~> 1.1.0)
19
- method_source (~> 0.9.0)
20
- rake (12.3.1)
21
- rspec (3.8.0)
22
- rspec-core (~> 3.8.0)
23
- rspec-expectations (~> 3.8.0)
24
- rspec-mocks (~> 3.8.0)
25
- rspec-core (3.8.0)
26
- rspec-support (~> 3.8.0)
27
- rspec-expectations (3.8.1)
28
- diff-lcs (>= 1.2.0, < 2.0)
29
- rspec-support (~> 3.8.0)
30
- rspec-mocks (3.8.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-support (3.8.0)
34
- thor (0.20.0)
35
- wwtd (1.3.0)
36
-
37
- PLATFORMS
38
- ruby
39
-
40
- DEPENDENCIES
41
- appraisal
42
- bundler (~> 1.16)
43
- pry
44
- rake
45
- rspec
46
- rspec-block_is_expected!
47
- wwtd
48
-
49
- BUNDLED WITH
50
- 1.16.2
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- method_source (0.9.0)
18
- parallel (1.12.1)
19
- parser (2.5.1.2)
20
- ast (~> 2.4.0)
21
- powerpack (0.1.2)
22
- pry (0.11.3)
23
- coderay (~> 1.1.0)
24
- method_source (~> 0.9.0)
25
- rainbow (3.0.0)
26
- rake (12.3.1)
27
- rspec (3.8.0)
28
- rspec-core (~> 3.8.0)
29
- rspec-expectations (~> 3.8.0)
30
- rspec-mocks (~> 3.8.0)
31
- rspec-core (3.8.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-expectations (3.8.1)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-mocks (3.8.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-support (3.8.0)
40
- rubocop (0.52.1)
41
- parallel (~> 1.10)
42
- parser (>= 2.4.0.2, < 3.0)
43
- powerpack (~> 0.1)
44
- rainbow (>= 2.2.2, < 4.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- ruby-progressbar (1.10.0)
48
- thor (0.20.0)
49
- unicode-display_width (1.4.0)
50
- wwtd (1.3.0)
51
-
52
- PLATFORMS
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.16)
58
- pry
59
- rake
60
- rspec
61
- rspec-block_is_expected!
62
- rubocop (~> 0.52.1)
63
- wwtd
64
-
65
- BUNDLED WITH
66
- 1.16.2
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- method_source (0.9.0)
18
- parallel (1.12.1)
19
- parser (2.5.1.2)
20
- ast (~> 2.4.0)
21
- powerpack (0.1.2)
22
- pry (0.11.3)
23
- coderay (~> 1.1.0)
24
- method_source (~> 0.9.0)
25
- rainbow (3.0.0)
26
- rake (12.3.1)
27
- rspec (3.8.0)
28
- rspec-core (~> 3.8.0)
29
- rspec-expectations (~> 3.8.0)
30
- rspec-mocks (~> 3.8.0)
31
- rspec-core (3.8.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-expectations (3.8.1)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-mocks (3.8.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-support (3.8.0)
40
- rubocop (0.52.1)
41
- parallel (~> 1.10)
42
- parser (>= 2.4.0.2, < 3.0)
43
- powerpack (~> 0.1)
44
- rainbow (>= 2.2.2, < 4.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- ruby-progressbar (1.10.0)
48
- thor (0.20.0)
49
- unicode-display_width (1.4.0)
50
- wwtd (1.3.0)
51
-
52
- PLATFORMS
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.16)
58
- pry
59
- rake
60
- rspec
61
- rspec-block_is_expected!
62
- rubocop (~> 0.52.1)
63
- wwtd
64
-
65
- BUNDLED WITH
66
- 1.16.2
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- method_source (0.9.0)
18
- parallel (1.12.1)
19
- parser (2.5.1.2)
20
- ast (~> 2.4.0)
21
- powerpack (0.1.2)
22
- pry (0.11.3)
23
- coderay (~> 1.1.0)
24
- method_source (~> 0.9.0)
25
- rainbow (3.0.0)
26
- rake (12.3.1)
27
- rspec (3.8.0)
28
- rspec-core (~> 3.8.0)
29
- rspec-expectations (~> 3.8.0)
30
- rspec-mocks (~> 3.8.0)
31
- rspec-core (3.8.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-expectations (3.8.1)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-mocks (3.8.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-support (3.8.0)
40
- rubocop (0.52.1)
41
- parallel (~> 1.10)
42
- parser (>= 2.4.0.2, < 3.0)
43
- powerpack (~> 0.1)
44
- rainbow (>= 2.2.2, < 4.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- ruby-progressbar (1.10.0)
48
- thor (0.20.0)
49
- unicode-display_width (1.4.0)
50
- wwtd (1.3.0)
51
-
52
- PLATFORMS
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.16)
58
- pry
59
- rake
60
- rspec
61
- rspec-block_is_expected!
62
- rubocop (~> 0.52.1)
63
- wwtd
64
-
65
- BUNDLED WITH
66
- 1.16.2
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- method_source (0.9.0)
18
- parallel (1.12.1)
19
- parser (2.5.1.2)
20
- ast (~> 2.4.0)
21
- powerpack (0.1.2)
22
- pry (0.11.3)
23
- coderay (~> 1.1.0)
24
- method_source (~> 0.9.0)
25
- rainbow (3.0.0)
26
- rake (12.3.1)
27
- rspec (3.8.0)
28
- rspec-core (~> 3.8.0)
29
- rspec-expectations (~> 3.8.0)
30
- rspec-mocks (~> 3.8.0)
31
- rspec-core (3.8.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-expectations (3.8.1)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-mocks (3.8.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-support (3.8.0)
40
- rubocop (0.52.1)
41
- parallel (~> 1.10)
42
- parser (>= 2.4.0.2, < 3.0)
43
- powerpack (~> 0.1)
44
- rainbow (>= 2.2.2, < 4.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- ruby-progressbar (1.10.0)
48
- thor (0.20.0)
49
- unicode-display_width (1.4.0)
50
- wwtd (1.3.0)
51
-
52
- PLATFORMS
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.16)
58
- pry
59
- rake
60
- rspec
61
- rspec-block_is_expected!
62
- rubocop (~> 0.52.1)
63
- wwtd
64
-
65
- BUNDLED WITH
66
- 1.16.2
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- method_source (0.9.0)
18
- parallel (1.12.1)
19
- parser (2.5.1.2)
20
- ast (~> 2.4.0)
21
- powerpack (0.1.2)
22
- pry (0.11.3)
23
- coderay (~> 1.1.0)
24
- method_source (~> 0.9.0)
25
- rainbow (3.0.0)
26
- rake (12.3.1)
27
- rspec (3.8.0)
28
- rspec-core (~> 3.8.0)
29
- rspec-expectations (~> 3.8.0)
30
- rspec-mocks (~> 3.8.0)
31
- rspec-core (3.8.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-expectations (3.8.1)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-mocks (3.8.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-support (3.8.0)
40
- rubocop (0.52.1)
41
- parallel (~> 1.10)
42
- parser (>= 2.4.0.2, < 3.0)
43
- powerpack (~> 0.1)
44
- rainbow (>= 2.2.2, < 4.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- ruby-progressbar (1.10.0)
48
- thor (0.20.0)
49
- unicode-display_width (1.4.0)
50
- wwtd (1.3.0)
51
-
52
- PLATFORMS
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.16)
58
- pry
59
- rake
60
- rspec
61
- rspec-block_is_expected!
62
- rubocop (~> 0.52.1)
63
- wwtd
64
-
65
- BUNDLED WITH
66
- 1.16.5
@@ -1,66 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-block_is_expected (1.0.0)
5
- rspec-core
6
-
7
- GEM
8
- remote: https://rubygems.org/
9
- specs:
10
- appraisal (2.2.0)
11
- bundler
12
- rake
13
- thor (>= 0.14.0)
14
- ast (2.4.0)
15
- coderay (1.1.2)
16
- diff-lcs (1.3)
17
- method_source (0.9.0)
18
- parallel (1.12.1)
19
- parser (2.5.1.2)
20
- ast (~> 2.4.0)
21
- powerpack (0.1.2)
22
- pry (0.11.3)
23
- coderay (~> 1.1.0)
24
- method_source (~> 0.9.0)
25
- rainbow (3.0.0)
26
- rake (12.3.1)
27
- rspec (3.8.0)
28
- rspec-core (~> 3.8.0)
29
- rspec-expectations (~> 3.8.0)
30
- rspec-mocks (~> 3.8.0)
31
- rspec-core (3.8.0)
32
- rspec-support (~> 3.8.0)
33
- rspec-expectations (3.8.1)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.8.0)
36
- rspec-mocks (3.8.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.8.0)
39
- rspec-support (3.8.0)
40
- rubocop (0.52.1)
41
- parallel (~> 1.10)
42
- parser (>= 2.4.0.2, < 3.0)
43
- powerpack (~> 0.1)
44
- rainbow (>= 2.2.2, < 4.0)
45
- ruby-progressbar (~> 1.7)
46
- unicode-display_width (~> 1.0, >= 1.0.1)
47
- ruby-progressbar (1.10.0)
48
- thor (0.20.0)
49
- unicode-display_width (1.4.0)
50
- wwtd (1.3.0)
51
-
52
- PLATFORMS
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.16)
58
- pry
59
- rake
60
- rspec
61
- rspec-block_is_expected!
62
- rubocop (~> 0.52.1)
63
- wwtd
64
-
65
- BUNDLED WITH
66
- 1.16.4