rspec-support 3.5.0.beta4 → 3.5.0
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Changelog.md +4 -2
- data/lib/rspec/support/spec/with_isolated_directory.rb +5 -1
- data/lib/rspec/support/version.rb +1 -1
- metadata +6 -6
- 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: bd9a51bb43733eb4eddd9869ad64d04870dcea8d
|
|
4
|
+
data.tar.gz: ce2037102c6fa6d0fba4bce9e5060c8843b98d2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 133de5b6bf306bcc7aad2eaab37e189bd41c74ae110a26f638f05baa5060f57f4e3df7a870f8db00c02c4b8d51f5d3ffccd9192479b6076338d8e767d1de26a8
|
|
7
|
+
data.tar.gz: 674f9df382ca7c4a9433197f9cfdf0b845a031b0f1a5c2e7bb6e993d289a1d69d85dcefda2aec4b62c59c6515a6048b80ed5a5c63d8ad04b240720762ed06037
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/Changelog.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
### 3.5
|
|
2
|
-
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta4...
|
|
1
|
+
### 3.5.0 / 2016-07-01
|
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta4...v3.5.0)
|
|
3
|
+
|
|
4
|
+
**No user facing changes since beat4**
|
|
3
5
|
|
|
4
6
|
### 3.5.0.beta4 / 2016-06-05
|
|
5
7
|
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.5.0.beta3...v3.5.0.beta4)
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
require 'tmpdir'
|
|
2
2
|
|
|
3
|
-
RSpec.shared_context "isolated directory"
|
|
3
|
+
RSpec.shared_context "isolated directory" do
|
|
4
4
|
around do |ex|
|
|
5
5
|
Dir.mktmpdir do |tmp_dir|
|
|
6
6
|
Dir.chdir(tmp_dir, &ex)
|
|
7
7
|
end
|
|
8
8
|
end
|
|
9
9
|
end
|
|
10
|
+
|
|
11
|
+
RSpec.configure do |c|
|
|
12
|
+
c.include_context "isolated directory", :isolated_directory => true
|
|
13
|
+
end
|
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.5.0
|
|
4
|
+
version: 3.5.0
|
|
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: 2016-
|
|
51
|
+
date: 2016-07-01 00:00:00.000000000 Z
|
|
52
52
|
dependencies:
|
|
53
53
|
- !ruby/object:Gem::Dependency
|
|
54
54
|
name: bundler
|
|
@@ -144,13 +144,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
144
144
|
version: 1.8.7
|
|
145
145
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
146
146
|
requirements:
|
|
147
|
-
- - "
|
|
147
|
+
- - ">="
|
|
148
148
|
- !ruby/object:Gem::Version
|
|
149
|
-
version:
|
|
149
|
+
version: '0'
|
|
150
150
|
requirements: []
|
|
151
151
|
rubyforge_project:
|
|
152
|
-
rubygems_version: 2.
|
|
152
|
+
rubygems_version: 2.5.1
|
|
153
153
|
signing_key:
|
|
154
154
|
specification_version: 4
|
|
155
|
-
summary: rspec-support-3.5.0
|
|
155
|
+
summary: rspec-support-3.5.0
|
|
156
156
|
test_files: []
|
metadata.gz.sig
CHANGED
|
Binary file
|