rspec-support 3.2.0 → 3.2.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 +8 -0
- data/lib/rspec/support/caller_filter.rb +3 -1
- data/lib/rspec/support/ruby_features.rb +4 -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: 220288678e55ebf951caa894d9eacf4aa5857879
|
4
|
+
data.tar.gz: 49631c216c2f0d04734c11a88378d59b122b001e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 631750edb88c7a7c9351870fc3216136fbf3fc6e35c8a37aa6a9ff49f46dbf803781f84e231981a34ff933ce6c373c1c8aa0ef9474c86fb4113949ab26f8086c
|
7
|
+
data.tar.gz: 228c784f40effaa0d75f654413355d133b4641195a169182b42d5e4da1cb375e08c5ea761a039bda62f8915393baebc7c6c8b67cd30afd0b690cfe51bcca6728
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
### 3.2.1 / 2015-02-04
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.0...v3.2.1)
|
3
|
+
|
4
|
+
Bug Fixes:
|
5
|
+
|
6
|
+
* Fix `RSpec::CallerFilter` to work on Rubinius 2.2.
|
7
|
+
(Myron Marston, #169)
|
8
|
+
|
1
9
|
### 3.2.0 / 2015-02-03
|
2
10
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.2...v3.2.0)
|
3
11
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
RSpec::Support.require_rspec_support "ruby_features"
|
2
|
+
|
1
3
|
module RSpec
|
2
4
|
# Consistent implementation for "cleaning" the caller method to strip out
|
3
5
|
# non-rspec lines. This enables errors to be reported at the call site in
|
@@ -25,7 +27,7 @@ module RSpec
|
|
25
27
|
# with this complexity in our `RSpec.deprecate` calls, so we ignore it here.
|
26
28
|
IGNORE_REGEX = Regexp.union(LIB_REGEX, "rubygems/core_ext/kernel_require.rb")
|
27
29
|
|
28
|
-
if
|
30
|
+
if RSpec::Support::RubyFeatures.caller_locations_supported?
|
29
31
|
# This supports args because it's more efficient when the caller specifies
|
30
32
|
# these. It allows us to skip frames the caller knows are part of RSpec,
|
31
33
|
# and to decrease the increment size if the caller is confident the line will
|
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.2.
|
4
|
+
version: 3.2.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-02-
|
51
|
+
date: 2015-02-04 00:00:00.000000000 Z
|
52
52
|
dependencies:
|
53
53
|
- !ruby/object:Gem::Dependency
|
54
54
|
name: bundler
|
@@ -134,5 +134,5 @@ rubyforge_project: rspec
|
|
134
134
|
rubygems_version: 2.2.2
|
135
135
|
signing_key:
|
136
136
|
specification_version: 4
|
137
|
-
summary: rspec-support-3.2.
|
137
|
+
summary: rspec-support-3.2.1
|
138
138
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|