rspec-pending_for 0.1.7 → 0.1.8

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: 9e499a75ec689f4b0a830d63a029ed6b606b36c1d8979d0c1d6ef7a02280b224
4
- data.tar.gz: c0d66614e78dda253b11177b7dbcc32176020955913f9692bcde261be9e52d34
3
+ metadata.gz: 80f6aab465b5a38528f133c170788643a1dd1737980352107ddbf7cbebef48c7
4
+ data.tar.gz: 72ffe5da3ce7db932b4e430d117e555cd6609fd3e364082b303badebc08b5603
5
5
  SHA512:
6
- metadata.gz: 01c0ca1bcad2ee28296e743ffb1d8d8f5499bd74d4a25a2089a24659ea28308cdd6e604ef06d2b5bcf754630e139d4a0ae14f8c6a78ec9aac28ab80fae26707c
7
- data.tar.gz: 8510ac08a26d449f87fe4b572e5accd3d73e9a2014e8d4cdbf4c1e9f678d6f133886550180508279c6bbdfa112ba93b0ca42fd1e24742814b8a355912ff5ae0e
6
+ metadata.gz: 9b5f655f6e9a2e6b9982c4afe836c615f43423fc1826c44af5f497c383a103ae58973a3af212a39e2553972649699d7e6d239ba99adc3049f338f038094177ee
7
+ data.tar.gz: 30b753a115cd15d7af0134bdcd6b289a22e930ad3fb0a32b51047a4a20b6ae3a8935f28cef8bec87e4771246b520743cd0105ef6d6cf74684c32ab9c328f80f0
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
  /tmp/
10
10
  *.gem
11
11
  /vendor/
12
+ /gemfiles/*.lock
@@ -0,0 +1,25 @@
1
+ AllCops:
2
+ DisplayCopNames: true # Display the name of the failing cops
3
+
4
+ Metrics/LineLength:
5
+ Enabled: false
6
+
7
+ Metrics/BlockLength:
8
+ ExcludedMethods:
9
+ - context
10
+ - describe
11
+ - it
12
+ - shared_context
13
+ - shared_examples
14
+ - shared_examples_for
15
+ - namespace
16
+ - draw
17
+
18
+ Style/HashSyntax:
19
+ EnforcedStyle: hash_rockets
20
+
21
+ Style/SymbolArray:
22
+ Enabled: false
23
+
24
+ Style/PercentLiteralDelimiters:
25
+ Enabled: false
@@ -1,5 +1,8 @@
1
1
  language: ruby
2
- before_install: gem install bundler
2
+ before_install:
3
+ - gem update --system
4
+ - gem install bundler
5
+ cache: bundler
3
6
  matrix:
4
7
  allow_failures:
5
8
  - rvm: jruby-head
data/Rakefile CHANGED
@@ -1,14 +1,29 @@
1
1
  require 'bundler/gem_tasks'
2
2
 
3
- # rubocop:disable Lint/HandleExceptions
4
3
  begin
5
4
  require 'wwtd/tasks'
5
+ rescue LoadError
6
+ puts 'failed to load wwtd'
7
+ end
8
+
9
+ begin
6
10
  require 'rspec/core/rake_task'
7
11
  RSpec::Core::RakeTask.new(:spec)
8
- task :test => :spec
9
12
  rescue LoadError
10
13
  # puts "failed to load wwtd or rspec, probably because bundled --without-development"
14
+ task :spec do
15
+ warn 'rspec is disabled'
16
+ end
17
+ end
18
+ task :test => :spec
19
+
20
+ begin
21
+ require 'rubocop/rake_task'
22
+ RuboCop::RakeTask.new
23
+ rescue LoadError
24
+ task :rubocop do
25
+ warn 'RuboCop is disabled'
26
+ end
11
27
  end
12
- # rubocop:enable Lint/HandleExceptions
13
28
 
14
- task :default => :test
29
+ task :default => [:test, :rubocop]
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  BUNDLE_RETRY: "1"
3
- BUNDLE_FROZEN: "true"
3
+ BUNDLE_FROZEN: "false"
4
4
  BUNDLE_PATH: "/Users/pboling/src/rspec-pending_for/vendor/bundle"
@@ -20,7 +20,8 @@ module Rspec
20
20
  # expect("blah").to eq "blah"
21
21
  # end
22
22
  #
23
- def pending_for(options = {}) # Not using named parameters because still supporting Ruby 1.9
23
+ # Not using named parameters because still supporting Ruby 1.9
24
+ def pending_for(options = {})
24
25
  modify_example_with(:pending, options)
25
26
  end
26
27
 
@@ -31,7 +32,8 @@ module Rspec
31
32
  # expect("blah").to eq "blah"
32
33
  # end
33
34
  #
34
- def skip_for(options = {}) # Not using named parameters because still supporting Ruby 1.9
35
+ # Not using named parameters because still supporting Ruby 1.9
36
+ def skip_for(options = {})
35
37
  modify_example_with(:skip, options)
36
38
  end
37
39
 
@@ -32,6 +32,7 @@ module Rspec
32
32
  BUG_STRING = 'due to a bug in the Ruby engine'.freeze
33
33
  VERSIONS_STRING = 'in Ruby versions'.freeze
34
34
  ISSUES_LINK = 'https://github.com/pboling/rspec-pending_for/issues'.freeze
35
+ RELEVANT_VERSIONS_PROC = ->(rv) { "#{BROKEN_STRING} #{VERSIONS_STRING} #{rv} #{BUG_STRING}" }
35
36
 
36
37
  attr_reader :message, :relevant_versions, :relevant_engine, :reason
37
38
 
@@ -45,7 +46,7 @@ module Rspec
45
46
  no_engine_specified
46
47
  elsif RubyEngine.is? @relevant_engine
47
48
  engine_specified_and_relevant
48
- end
49
+ end
49
50
  end
50
51
 
51
52
  def current_matches_specified?
@@ -63,23 +64,15 @@ If it is a real RUBY_ENGINE, please report as a bug to #{ISSUES_LINK}
63
64
  end
64
65
 
65
66
  def no_engine_specified
66
- if relevant_versions.include?(RubyVersion.to_s)
67
- reason || "#{BROKEN_STRING} #{VERSIONS_STRING} #{relevant_versions} #{BUG_STRING}"
68
- else
69
- nil # Not a pended/skipped spec
70
- end
67
+ reason || RELEVANT_VERSIONS_PROC.call(relevant_versions) if relevant_versions.include?(RubyVersion.to_s)
71
68
  end
72
69
 
73
70
  def engine_specified_and_relevant
74
71
  if relevant_versions.empty?
75
72
  # No versions specified means ALL versions for this engine
76
73
  reason || "#{BROKEN_STRING} #{BUG_STRING} #{INTERPRETER_MATRIX[relevant_engine]}"
77
- else
78
- if relevant_versions.include?(RubyVersion.to_s)
79
- reason || %[#{BROKEN_STRING} #{VERSIONS_STRING} #{relevant_versions} #{BUG_STRING} (#{INTERPRETER_MATRIX[relevant_engine]})]
80
- else
81
- nil # Not a pended/skipped spec
82
- end
74
+ elsif relevant_versions.include?(RubyVersion.to_s)
75
+ reason || %[#{RELEVANT_VERSIONS_PROC.call(relevant_versions)} (#{INTERPRETER_MATRIX[relevant_engine]})]
83
76
  end
84
77
  end
85
78
  end
@@ -1,5 +1,6 @@
1
1
  module Rspec
2
2
  module PendingFor
3
+ # Error class raised when pending_for is used but no engine or version is specified.
3
4
  class EngineOrVersionsRequired < ArgumentError
4
5
  def initialize(method_name, *args)
5
6
  message = "#{method_name} requires at least an engine or versions to be specified"
@@ -1,8 +1,4 @@
1
1
  require 'rspec/core'
2
- begin
3
- RSpec.configure do |c|
4
- c.include Rspec::PendingFor
5
- end
6
- rescue NameError
7
- # Rspec really should be loaded by now...
2
+ RSpec.configure do |c|
3
+ c.include Rspec::PendingFor
8
4
  end
@@ -1,5 +1,5 @@
1
1
  module Rspec
2
2
  module PendingFor
3
- VERSION = '0.1.7'.freeze
3
+ VERSION = '0.1.8'.freeze
4
4
  end
5
5
  end
@@ -9,7 +9,9 @@ Gem::Specification.new do |spec|
9
9
  spec.authors = ['Peter Boling']
10
10
  spec.email = ['peter.boling@gmail.com']
11
11
 
12
- spec.summary = 'Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby) / version combinations'
12
+ spec.summary = <<-SUMMARY.strip
13
+ Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby) / version combinations
14
+ SUMMARY
13
15
  spec.homepage = 'https://github.com/pboling/rspec-pending_for'
14
16
 
15
17
  spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-pending_for
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling
@@ -151,6 +151,7 @@ extra_rdoc_files: []
151
151
  files:
152
152
  - ".gitignore"
153
153
  - ".rspec"
154
+ - ".rubocop.yml"
154
155
  - ".travis.yml"
155
156
  - Appraisals
156
157
  - Gemfile
@@ -161,27 +162,16 @@ files:
161
162
  - bin/setup
162
163
  - gemfiles/.bundle/config
163
164
  - gemfiles/jruby_1.7.27.gemfile
164
- - gemfiles/jruby_1.7.27.gemfile.lock
165
165
  - gemfiles/jruby_9.1.15.0.gemfile
166
- - gemfiles/jruby_9.1.15.0.gemfile.lock
167
166
  - gemfiles/jruby_head.gemfile
168
- - gemfiles/jruby_head.gemfile.lock
169
167
  - gemfiles/ruby_1.9.3_p551.gemfile
170
- - gemfiles/ruby_1.9.3_p551.gemfile.lock
171
168
  - gemfiles/ruby_2.0.0_p648.gemfile
172
- - gemfiles/ruby_2.0.0_p648.gemfile.lock
173
169
  - gemfiles/ruby_2.1.10.gemfile
174
- - gemfiles/ruby_2.1.10.gemfile.lock
175
170
  - gemfiles/ruby_2.2.9.gemfile
176
- - gemfiles/ruby_2.2.9.gemfile.lock
177
171
  - gemfiles/ruby_2.3.6.gemfile
178
- - gemfiles/ruby_2.3.6.gemfile.lock
179
172
  - gemfiles/ruby_2.4.3.gemfile
180
- - gemfiles/ruby_2.4.3.gemfile.lock
181
173
  - gemfiles/ruby_2.5.0.gemfile
182
- - gemfiles/ruby_2.5.0.gemfile.lock
183
174
  - gemfiles/ruby_head.gemfile
184
- - gemfiles/ruby_head.gemfile.lock
185
175
  - lib/rspec/pending_for.rb
186
176
  - lib/rspec/pending_for/build.rb
187
177
  - lib/rspec/pending_for/engine_or_versions_required.rb
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
44
- ruby_engine (1.0.1)
45
- ruby_version (1.0.1)
46
- thor (0.20.0)
47
- unicode-display_width (1.3.0)
48
- wwtd (1.3.0)
49
-
50
- PLATFORMS
51
- java
52
- ruby
53
-
54
- DEPENDENCIES
55
- appraisal
56
- bundler (~> 1.10)
57
- rake
58
- rspec
59
- rspec-pending_for!
60
- rubocop
61
- wwtd
62
-
63
- BUNDLED WITH
64
- 1.16.1
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- java
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.10)
58
- rake
59
- rspec
60
- rspec-pending_for!
61
- rubocop
62
- wwtd
63
-
64
- BUNDLED WITH
65
- 1.16.1
@@ -1,65 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- java
53
- ruby
54
-
55
- DEPENDENCIES
56
- appraisal
57
- bundler (~> 1.10)
58
- rake (>= 10.0, <= 13)
59
- rspec (~> 3.3)
60
- rspec-pending_for!
61
- rubocop
62
- wwtd
63
-
64
- BUNDLED WITH
65
- 1.16.1
@@ -1,63 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
44
- ruby_engine (1.0.1)
45
- ruby_version (1.0.1)
46
- thor (0.20.0)
47
- unicode-display_width (1.3.0)
48
- wwtd (1.3.0)
49
-
50
- PLATFORMS
51
- ruby
52
-
53
- DEPENDENCIES
54
- appraisal
55
- bundler (~> 1.10)
56
- rake
57
- rspec
58
- rspec-pending_for!
59
- rubocop
60
- wwtd
61
-
62
- BUNDLED WITH
63
- 1.16.1
@@ -1,63 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
44
- ruby_engine (1.0.1)
45
- ruby_version (1.0.1)
46
- thor (0.20.0)
47
- unicode-display_width (1.3.0)
48
- wwtd (1.3.0)
49
-
50
- PLATFORMS
51
- ruby
52
-
53
- DEPENDENCIES
54
- appraisal
55
- bundler (~> 1.10)
56
- rake (>= 10.0, <= 13)
57
- rspec (~> 3.3)
58
- rspec-pending_for!
59
- rubocop
60
- wwtd
61
-
62
- BUNDLED WITH
63
- 1.16.1
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- ruby
53
-
54
- DEPENDENCIES
55
- appraisal
56
- bundler (~> 1.10)
57
- rake
58
- rspec
59
- rspec-pending_for!
60
- rubocop
61
- wwtd
62
-
63
- BUNDLED WITH
64
- 1.16.1
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- ruby
53
-
54
- DEPENDENCIES
55
- appraisal
56
- bundler (~> 1.10)
57
- rake
58
- rspec
59
- rspec-pending_for!
60
- rubocop
61
- wwtd
62
-
63
- BUNDLED WITH
64
- 1.16.1
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- ruby
53
-
54
- DEPENDENCIES
55
- appraisal
56
- bundler (~> 1.10)
57
- rake
58
- rspec
59
- rspec-pending_for!
60
- rubocop
61
- wwtd
62
-
63
- BUNDLED WITH
64
- 1.16.1
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- ruby
53
-
54
- DEPENDENCIES
55
- appraisal
56
- bundler (~> 1.10)
57
- rake
58
- rspec
59
- rspec-pending_for!
60
- rubocop
61
- wwtd
62
-
63
- BUNDLED WITH
64
- 1.16.1
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- ruby
53
-
54
- DEPENDENCIES
55
- appraisal
56
- bundler (~> 1.10)
57
- rake
58
- rspec
59
- rspec-pending_for!
60
- rubocop
61
- wwtd
62
-
63
- BUNDLED WITH
64
- 1.16.1
@@ -1,64 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- rspec-pending_for (0.1.6)
5
- rspec-core
6
- ruby_engine (~> 1.0)
7
- ruby_version (~> 1.0)
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- appraisal (2.2.0)
13
- bundler
14
- rake
15
- thor (>= 0.14.0)
16
- ast (2.3.0)
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)
23
- rake (10.5.0)
24
- rspec (3.7.0)
25
- rspec-core (~> 3.7.0)
26
- rspec-expectations (~> 3.7.0)
27
- rspec-mocks (~> 3.7.0)
28
- rspec-core (3.7.1)
29
- rspec-support (~> 3.7.0)
30
- rspec-expectations (3.7.0)
31
- diff-lcs (>= 1.2.0, < 2.0)
32
- rspec-support (~> 3.7.0)
33
- rspec-mocks (3.7.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.7.0)
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)
45
- ruby_engine (1.0.1)
46
- ruby_version (1.0.1)
47
- thor (0.20.0)
48
- unicode-display_width (1.3.0)
49
- wwtd (1.3.0)
50
-
51
- PLATFORMS
52
- ruby
53
-
54
- DEPENDENCIES
55
- appraisal
56
- bundler (~> 1.10)
57
- rake (>= 10.0, <= 13)
58
- rspec (~> 3.3)
59
- rspec-pending_for!
60
- rubocop
61
- wwtd
62
-
63
- BUNDLED WITH
64
- 1.16.1