rspec-support 3.4.0 → 3.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Changelog.md +10 -0
- data/lib/rspec/support/ruby_features.rb +2 -0
- data/lib/rspec/support/version.rb +1 -1
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25c6ea6acc982a2910d925f597f145145b22cf7f
|
4
|
+
data.tar.gz: 4603a8c3f85cf003193e7482a19a1970339051ce
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74d0dd544377bef599af14522a512690eff3a21b317161aee428be724da07cfb5da7edb981f2440e72f374aa960b65deb9ceaab5e59ad377200df693063494d4
|
7
|
+
data.tar.gz: cc57fd580aaf7a0a78985a86f2d995f6a69637b5d379e048cfdb02ae523eea5517d8654e4d9ae6febb377f93fac19c68d6b0f0737f5c2a07e7359650af6b0db7
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,3 +1,13 @@
|
|
1
|
+
### 3.4.1 / 2015-11-20
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.4.0...v3.4.1)
|
3
|
+
|
4
|
+
Bug Fixes:
|
5
|
+
|
6
|
+
* Fix `RSpec::Support::RubyFeature.ripper_supported?` so it returns
|
7
|
+
`false` on Rubinius since the Rubinius team has no plans to support
|
8
|
+
it. This prevents rspec-core from trying to load and use ripper to
|
9
|
+
extract failure snippets. (Aaron Stone, #251)
|
10
|
+
|
1
11
|
### 3.4.0 / 2015-11-11
|
2
12
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.3.0...v3.4.0)
|
3
13
|
|
@@ -68,6 +68,8 @@ module RSpec
|
|
68
68
|
|
69
69
|
ripper_requirements = [ComparableVersion.new(RUBY_VERSION) >= '1.9.2']
|
70
70
|
|
71
|
+
ripper_requirements.push(false) if Ruby.rbx?
|
72
|
+
|
71
73
|
if Ruby.jruby?
|
72
74
|
ripper_requirements.push(ComparableVersion.new(JRUBY_VERSION) >= '1.7.5')
|
73
75
|
# Ripper on JRuby 9.0.0.0.rc1 or later reports wrong line number.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chelimsky
|
@@ -48,7 +48,7 @@ cert_chain:
|
|
48
48
|
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
|
49
49
|
F3MdtaDehhjC
|
50
50
|
-----END CERTIFICATE-----
|
51
|
-
date: 2015-11-
|
51
|
+
date: 2015-11-20 00:00:00.000000000 Z
|
52
52
|
dependencies:
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: bundler
|
@@ -153,5 +153,5 @@ rubyforge_project:
|
|
153
153
|
rubygems_version: 2.2.2
|
154
154
|
signing_key:
|
155
155
|
specification_version: 4
|
156
|
-
summary: rspec-support-3.4.
|
156
|
+
summary: rspec-support-3.4.1
|
157
157
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|