pry-test 0.5.0 → 0.5.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
  SHA1:
3
- metadata.gz: bff3b5b582f2d0f20a0638c8f2d22fe2c8f34328
4
- data.tar.gz: f47f593420062049f74de02e4c33ede5406c680b
3
+ metadata.gz: ed160e66193d544b6e2215fa446db6414a724a10
4
+ data.tar.gz: 0712c8e93d4264215615a53f12af998d2d108c07
5
5
  SHA512:
6
- metadata.gz: 9fb57924837b12dea333bd4e62d98f65c504c29482b4f2e151eaa645f3f8e646d24f9e1f0ca19acd088d3a7a842390fcdbdae7f4b0024d6af6ba456a263d5a76
7
- data.tar.gz: c97f1dc2c54058853a4aa3a2ebbf815a22ca5153184acca03a0cf26e6eac41823df4ad67e94feacf24afaf7c349d9a7cfb088181d0ddb933924fc155ccc8386d
6
+ metadata.gz: 70a930d41e157d77150da5044af2ca8210562ab9a410f88b82d0e0a9f7eb0ee56fa3b8603132c72e92b76704027fca2c4064017a606ec74b86173be3c997cbb3
7
+ data.tar.gz: 4b901ce75af030718be2c36b73f40582b06c73faf82b6f88768f24c0c0f150d40c8ee29559737e0d8b07884881da0e4b8c1c9b00bc2f12b7e70f9360bc5655d7
data/bin/pry-test CHANGED
@@ -73,9 +73,7 @@ end
73
73
  runner = PryTest::Runner.new(formatter.new, options)
74
74
 
75
75
  # setup pry -------------------------------------------------------------------
76
- if options[:async] || RUBY_ENGINE == "jruby" || RUBY_ENGINE == "rbx"
77
- optional[:disable_pry] = true
78
- end
76
+ options[:disable_pry] ||= options[:async] || RUBY_ENGINE == "jruby" || RUBY_ENGINE == "rbx"
79
77
 
80
78
  if options[:disable_pry]
81
79
  puts magenta("Disabling pry when running with: [#{RUBY_ENGINE}] #{options.inspect}")
@@ -1,3 +1,3 @@
1
1
  module PryTest
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pry-test
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Hopkins
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description: A testing framework that supports debugging test failures & errors as
55
+ description: A testing framework that supports debugging test failures & errors when
56
56
  they happen.
57
57
  email:
58
58
  - natehop@gmail.com
@@ -111,7 +111,7 @@ rubyforge_project:
111
111
  rubygems_version: 2.2.2
112
112
  signing_key:
113
113
  specification_version: 4
114
- summary: A testing framework that supports debugging test failures & errors as they
114
+ summary: A testing framework that supports debugging test failures & errors when they
115
115
  happen.
116
116
  test_files:
117
117
  - test/color_test.rb