rspec-pending_for 0.1.6 → 0.1.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -15
- data/Appraisals +1 -1
- data/Gemfile +3 -0
- data/Rakefile +11 -4
- data/gemfiles/.bundle/config +2 -1
- data/gemfiles/{jruby_1.7.26.gemfile → jruby_1.7.27.gemfile} +3 -0
- data/gemfiles/{jruby_1.7.26.gemfile.lock → jruby_1.7.27.gemfile.lock} +18 -3
- data/gemfiles/jruby_9.1.15.0.gemfile +3 -0
- data/gemfiles/jruby_9.1.15.0.gemfile.lock +19 -3
- data/gemfiles/jruby_head.gemfile.lock +18 -2
- data/gemfiles/ruby_1.9.3_p551.gemfile +3 -0
- data/gemfiles/ruby_1.9.3_p551.gemfile.lock +18 -3
- data/gemfiles/ruby_2.0.0_p648.gemfile.lock +17 -2
- data/gemfiles/ruby_2.1.10.gemfile +3 -0
- data/gemfiles/ruby_2.1.10.gemfile.lock +19 -3
- data/gemfiles/ruby_2.2.9.gemfile +3 -0
- data/gemfiles/ruby_2.2.9.gemfile.lock +19 -3
- data/gemfiles/ruby_2.3.6.gemfile +3 -0
- data/gemfiles/ruby_2.3.6.gemfile.lock +19 -3
- data/gemfiles/ruby_2.4.3.gemfile +3 -0
- data/gemfiles/ruby_2.4.3.gemfile.lock +19 -3
- data/gemfiles/ruby_2.5.0.gemfile +3 -0
- data/gemfiles/ruby_2.5.0.gemfile.lock +19 -3
- data/gemfiles/ruby_head.gemfile.lock +18 -2
- data/lib/rspec/pending_for/version.rb +1 -1
- data/rspec-pending_for.gemspec +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e499a75ec689f4b0a830d63a029ed6b606b36c1d8979d0c1d6ef7a02280b224
|
4
|
+
data.tar.gz: c0d66614e78dda253b11177b7dbcc32176020955913f9692bcde261be9e52d34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01c0ca1bcad2ee28296e743ffb1d8d8f5499bd74d4a25a2089a24659ea28308cdd6e604ef06d2b5bcf754630e139d4a0ae14f8c6a78ec9aac28ab80fae26707c
|
7
|
+
data.tar.gz: 8510ac08a26d449f87fe4b572e5accd3d73e9a2014e8d4cdbf4c1e9f678d6f133886550180508279c6bbdfa112ba93b0ca42fd1e24742814b8a355912ff5ae0e
|
data/.travis.yml
CHANGED
@@ -1,16 +1,4 @@
|
|
1
1
|
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 1.9.3-p551
|
4
|
-
- 2.0.0-p648
|
5
|
-
- 2.1.10
|
6
|
-
- 2.2.9
|
7
|
-
- 2.3.6
|
8
|
-
- 2.4.3
|
9
|
-
- 2.5.0
|
10
|
-
- ruby-head
|
11
|
-
- jruby-1.7.26
|
12
|
-
- jruby-9.1.15.0
|
13
|
-
- jruby-head
|
14
2
|
before_install: gem install bundler
|
15
3
|
matrix:
|
16
4
|
allow_failures:
|
@@ -34,9 +22,9 @@ matrix:
|
|
34
22
|
gemfile: gemfiles/ruby_2.5.0.gemfile
|
35
23
|
- rvm: ruby-head
|
36
24
|
gemfile: gemfiles/ruby_head.gemfile
|
37
|
-
- rvm: jruby-1.7.
|
38
|
-
gemfile: gemfiles/
|
25
|
+
- rvm: jruby-1.7.27
|
26
|
+
gemfile: gemfiles/jruby_1.7.27.gemfile
|
39
27
|
- rvm: jruby-9.1.15.0
|
40
|
-
gemfile: gemfiles/
|
28
|
+
gemfile: gemfiles/jruby_9.1.15.0.gemfile
|
41
29
|
- rvm: jruby-head
|
42
30
|
gemfile: gemfiles/jruby_head.gemfile
|
data/Appraisals
CHANGED
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
require 'bundler/gem_tasks'
|
2
|
-
require 'rspec/core/rake_task'
|
3
|
-
require 'wwtd/tasks'
|
4
2
|
|
5
|
-
|
3
|
+
# rubocop:disable Lint/HandleExceptions
|
4
|
+
begin
|
5
|
+
require 'wwtd/tasks'
|
6
|
+
require 'rspec/core/rake_task'
|
7
|
+
RSpec::Core::RakeTask.new(:spec)
|
8
|
+
task :test => :spec
|
9
|
+
rescue LoadError
|
10
|
+
# puts "failed to load wwtd or rspec, probably because bundled --without-development"
|
11
|
+
end
|
12
|
+
# rubocop:enable Lint/HandleExceptions
|
6
13
|
|
7
|
-
task default
|
14
|
+
task :default => :test
|
data/gemfiles/.bundle/config
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parser (2.4.0.2)
|
19
|
+
ast (~> 2.3)
|
20
|
+
powerpack (0.1.1)
|
21
|
+
rainbow (2.2.2)
|
22
|
+
rake
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,17 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.41.2)
|
38
|
+
parser (>= 2.3.1.1, < 3.0)
|
39
|
+
powerpack (~> 0.1)
|
40
|
+
rainbow (>= 1.99.1, < 3.0)
|
41
|
+
ruby-progressbar (~> 1.7)
|
42
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
43
|
+
ruby-progressbar (1.9.0)
|
31
44
|
ruby_engine (1.0.1)
|
32
45
|
ruby_version (1.0.1)
|
33
46
|
thor (0.20.0)
|
47
|
+
unicode-display_width (1.3.0)
|
34
48
|
wwtd (1.3.0)
|
35
49
|
|
36
50
|
PLATFORMS
|
@@ -40,9 +54,10 @@ PLATFORMS
|
|
40
54
|
DEPENDENCIES
|
41
55
|
appraisal
|
42
56
|
bundler (~> 1.10)
|
43
|
-
rake
|
44
|
-
rspec
|
57
|
+
rake
|
58
|
+
rspec
|
45
59
|
rspec-pending_for!
|
60
|
+
rubocop
|
46
61
|
wwtd
|
47
62
|
|
48
63
|
BUNDLED WITH
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -40,9 +55,10 @@ PLATFORMS
|
|
40
55
|
DEPENDENCIES
|
41
56
|
appraisal
|
42
57
|
bundler (~> 1.10)
|
43
|
-
rake
|
44
|
-
rspec
|
58
|
+
rake
|
59
|
+
rspec
|
45
60
|
rspec-pending_for!
|
61
|
+
rubocop
|
46
62
|
wwtd
|
47
63
|
|
48
64
|
BUNDLED WITH
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -40,9 +55,10 @@ PLATFORMS
|
|
40
55
|
DEPENDENCIES
|
41
56
|
appraisal
|
42
57
|
bundler (~> 1.10)
|
43
|
-
rake (
|
58
|
+
rake (>= 10.0, <= 13)
|
44
59
|
rspec (~> 3.3)
|
45
60
|
rspec-pending_for!
|
61
|
+
rubocop
|
46
62
|
wwtd
|
47
63
|
|
48
64
|
BUNDLED WITH
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parser (2.4.0.2)
|
19
|
+
ast (~> 2.3)
|
20
|
+
powerpack (0.1.1)
|
21
|
+
rainbow (2.2.2)
|
22
|
+
rake
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,17 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.41.2)
|
38
|
+
parser (>= 2.3.1.1, < 3.0)
|
39
|
+
powerpack (~> 0.1)
|
40
|
+
rainbow (>= 1.99.1, < 3.0)
|
41
|
+
ruby-progressbar (~> 1.7)
|
42
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
43
|
+
ruby-progressbar (1.9.0)
|
31
44
|
ruby_engine (1.0.1)
|
32
45
|
ruby_version (1.0.1)
|
33
46
|
thor (0.20.0)
|
47
|
+
unicode-display_width (1.3.0)
|
34
48
|
wwtd (1.3.0)
|
35
49
|
|
36
50
|
PLATFORMS
|
@@ -39,9 +53,10 @@ PLATFORMS
|
|
39
53
|
DEPENDENCIES
|
40
54
|
appraisal
|
41
55
|
bundler (~> 1.10)
|
42
|
-
rake
|
43
|
-
rspec
|
56
|
+
rake
|
57
|
+
rspec
|
44
58
|
rspec-pending_for!
|
59
|
+
rubocop
|
45
60
|
wwtd
|
46
61
|
|
47
62
|
BUNDLED WITH
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parser (2.4.0.2)
|
19
|
+
ast (~> 2.3)
|
20
|
+
powerpack (0.1.1)
|
21
|
+
rainbow (2.2.2)
|
22
|
+
rake
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,17 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.41.2)
|
38
|
+
parser (>= 2.3.1.1, < 3.0)
|
39
|
+
powerpack (~> 0.1)
|
40
|
+
rainbow (>= 1.99.1, < 3.0)
|
41
|
+
ruby-progressbar (~> 1.7)
|
42
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
43
|
+
ruby-progressbar (1.9.0)
|
31
44
|
ruby_engine (1.0.1)
|
32
45
|
ruby_version (1.0.1)
|
33
46
|
thor (0.20.0)
|
47
|
+
unicode-display_width (1.3.0)
|
34
48
|
wwtd (1.3.0)
|
35
49
|
|
36
50
|
PLATFORMS
|
@@ -39,9 +53,10 @@ PLATFORMS
|
|
39
53
|
DEPENDENCIES
|
40
54
|
appraisal
|
41
55
|
bundler (~> 1.10)
|
42
|
-
rake (
|
56
|
+
rake (>= 10.0, <= 13)
|
43
57
|
rspec (~> 3.3)
|
44
58
|
rspec-pending_for!
|
59
|
+
rubocop
|
45
60
|
wwtd
|
46
61
|
|
47
62
|
BUNDLED WITH
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -39,9 +54,10 @@ PLATFORMS
|
|
39
54
|
DEPENDENCIES
|
40
55
|
appraisal
|
41
56
|
bundler (~> 1.10)
|
42
|
-
rake
|
43
|
-
rspec
|
57
|
+
rake
|
58
|
+
rspec
|
44
59
|
rspec-pending_for!
|
60
|
+
rubocop
|
45
61
|
wwtd
|
46
62
|
|
47
63
|
BUNDLED WITH
|
data/gemfiles/ruby_2.2.9.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -39,9 +54,10 @@ PLATFORMS
|
|
39
54
|
DEPENDENCIES
|
40
55
|
appraisal
|
41
56
|
bundler (~> 1.10)
|
42
|
-
rake
|
43
|
-
rspec
|
57
|
+
rake
|
58
|
+
rspec
|
44
59
|
rspec-pending_for!
|
60
|
+
rubocop
|
45
61
|
wwtd
|
46
62
|
|
47
63
|
BUNDLED WITH
|
data/gemfiles/ruby_2.3.6.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -39,9 +54,10 @@ PLATFORMS
|
|
39
54
|
DEPENDENCIES
|
40
55
|
appraisal
|
41
56
|
bundler (~> 1.10)
|
42
|
-
rake
|
43
|
-
rspec
|
57
|
+
rake
|
58
|
+
rspec
|
44
59
|
rspec-pending_for!
|
60
|
+
rubocop
|
45
61
|
wwtd
|
46
62
|
|
47
63
|
BUNDLED WITH
|
data/gemfiles/ruby_2.4.3.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -39,9 +54,10 @@ PLATFORMS
|
|
39
54
|
DEPENDENCIES
|
40
55
|
appraisal
|
41
56
|
bundler (~> 1.10)
|
42
|
-
rake
|
43
|
-
rspec
|
57
|
+
rake
|
58
|
+
rspec
|
44
59
|
rspec-pending_for!
|
60
|
+
rubocop
|
45
61
|
wwtd
|
46
62
|
|
47
63
|
BUNDLED WITH
|
data/gemfiles/ruby_2.5.0.gemfile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -39,9 +54,10 @@ PLATFORMS
|
|
39
54
|
DEPENDENCIES
|
40
55
|
appraisal
|
41
56
|
bundler (~> 1.10)
|
42
|
-
rake
|
43
|
-
rspec
|
57
|
+
rake
|
58
|
+
rspec
|
44
59
|
rspec-pending_for!
|
60
|
+
rubocop
|
45
61
|
wwtd
|
46
62
|
|
47
63
|
BUNDLED WITH
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
rspec-pending_for (0.1.
|
4
|
+
rspec-pending_for (0.1.6)
|
5
5
|
rspec-core
|
6
6
|
ruby_engine (~> 1.0)
|
7
7
|
ruby_version (~> 1.0)
|
@@ -13,7 +13,13 @@ GEM
|
|
13
13
|
bundler
|
14
14
|
rake
|
15
15
|
thor (>= 0.14.0)
|
16
|
+
ast (2.3.0)
|
16
17
|
diff-lcs (1.3)
|
18
|
+
parallel (1.12.1)
|
19
|
+
parser (2.4.0.2)
|
20
|
+
ast (~> 2.3)
|
21
|
+
powerpack (0.1.1)
|
22
|
+
rainbow (3.0.0)
|
17
23
|
rake (10.5.0)
|
18
24
|
rspec (3.7.0)
|
19
25
|
rspec-core (~> 3.7.0)
|
@@ -28,9 +34,18 @@ GEM
|
|
28
34
|
diff-lcs (>= 1.2.0, < 2.0)
|
29
35
|
rspec-support (~> 3.7.0)
|
30
36
|
rspec-support (3.7.0)
|
37
|
+
rubocop (0.52.1)
|
38
|
+
parallel (~> 1.10)
|
39
|
+
parser (>= 2.4.0.2, < 3.0)
|
40
|
+
powerpack (~> 0.1)
|
41
|
+
rainbow (>= 2.2.2, < 4.0)
|
42
|
+
ruby-progressbar (~> 1.7)
|
43
|
+
unicode-display_width (~> 1.0, >= 1.0.1)
|
44
|
+
ruby-progressbar (1.9.0)
|
31
45
|
ruby_engine (1.0.1)
|
32
46
|
ruby_version (1.0.1)
|
33
47
|
thor (0.20.0)
|
48
|
+
unicode-display_width (1.3.0)
|
34
49
|
wwtd (1.3.0)
|
35
50
|
|
36
51
|
PLATFORMS
|
@@ -39,9 +54,10 @@ PLATFORMS
|
|
39
54
|
DEPENDENCIES
|
40
55
|
appraisal
|
41
56
|
bundler (~> 1.10)
|
42
|
-
rake (
|
57
|
+
rake (>= 10.0, <= 13)
|
43
58
|
rspec (~> 3.3)
|
44
59
|
rspec-pending_for!
|
60
|
+
rubocop
|
45
61
|
wwtd
|
46
62
|
|
47
63
|
BUNDLED WITH
|
data/rspec-pending_for.gemspec
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
|
24
24
|
spec.add_development_dependency 'appraisal'
|
25
25
|
spec.add_development_dependency 'bundler', '~> 1.10'
|
26
|
-
spec.add_development_dependency 'rake', '
|
26
|
+
spec.add_development_dependency 'rake', ['>= 10.0', '<= 13']
|
27
27
|
spec.add_development_dependency 'rspec', '~> 3.3'
|
28
28
|
spec.add_development_dependency 'rubocop'
|
29
29
|
spec.add_development_dependency 'wwtd'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-pending_for
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
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-01-
|
11
|
+
date: 2018-01-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-core
|
@@ -84,16 +84,22 @@ dependencies:
|
|
84
84
|
name: rake
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
89
|
version: '10.0'
|
90
|
+
- - "<="
|
91
|
+
- !ruby/object:Gem::Version
|
92
|
+
version: '13'
|
90
93
|
type: :development
|
91
94
|
prerelease: false
|
92
95
|
version_requirements: !ruby/object:Gem::Requirement
|
93
96
|
requirements:
|
94
|
-
- - "
|
97
|
+
- - ">="
|
95
98
|
- !ruby/object:Gem::Version
|
96
99
|
version: '10.0'
|
100
|
+
- - "<="
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: '13'
|
97
103
|
- !ruby/object:Gem::Dependency
|
98
104
|
name: rspec
|
99
105
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,8 +160,8 @@ files:
|
|
154
160
|
- bin/console
|
155
161
|
- bin/setup
|
156
162
|
- gemfiles/.bundle/config
|
157
|
-
- gemfiles/jruby_1.7.
|
158
|
-
- gemfiles/jruby_1.7.
|
163
|
+
- gemfiles/jruby_1.7.27.gemfile
|
164
|
+
- gemfiles/jruby_1.7.27.gemfile.lock
|
159
165
|
- gemfiles/jruby_9.1.15.0.gemfile
|
160
166
|
- gemfiles/jruby_9.1.15.0.gemfile.lock
|
161
167
|
- gemfiles/jruby_head.gemfile
|
@@ -201,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
201
207
|
version: '0'
|
202
208
|
requirements: []
|
203
209
|
rubyforge_project:
|
204
|
-
rubygems_version: 2.7.
|
210
|
+
rubygems_version: 2.7.4
|
205
211
|
signing_key:
|
206
212
|
specification_version: 4
|
207
213
|
summary: Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby)
|