rspec-time_stop 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -1
- data/lib/rspec/time_stop/version.rb +1 -1
- data/lib/rspec/time_stop.rb +7 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d10ce976e431663f5aa2f2ee3320600ed18608830560a84e35246a295bad4dab
|
4
|
+
data.tar.gz: bb17c58cfb93590b795cd1803dbcce0b51843ca39b85883fc6a463ae5fd389a9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 894e12dce316c71f6784653ad91b23c94411ada23886e5f83afa3ee4d53a46e004891c9249f66557c8ca1293bd82d49539a1a8b28b09ca3f0a3a6473664a6f05
|
7
|
+
data.tar.gz: b98a728f3b038bc11395e4e09de982d889dedc6ac43b8748d5fead208852a6aaba0b04c33ba9b2f41537f32909a8277c5c6f8c770d75a1a4de4190434994d90d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
## master
|
2
|
-
[full changelog](http://github.com/sue445/rspec-time_stop/compare/v0.1.
|
2
|
+
[full changelog](http://github.com/sue445/rspec-time_stop/compare/v0.1.2...master)
|
3
|
+
|
4
|
+
## v0.1.2
|
5
|
+
[full changelog](http://github.com/sue445/rspec-time_stop/compare/v0.1.1...v0.1.2)
|
6
|
+
|
7
|
+
* Fixed. `NameError: uninitialized constant ActiveSupport::XmlMini::IsolatedExecutionState` with activesupport v7.0.0
|
8
|
+
* https://github.com/sue445/rspec-time_stop/pull/19
|
3
9
|
|
4
10
|
## v0.1.1
|
5
11
|
[full changelog](http://github.com/sue445/rspec-time_stop/compare/v0.1.0...v0.1.1)
|
data/lib/rspec/time_stop.rb
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
require "rspec/time_stop/version"
|
2
2
|
require "rspec"
|
3
|
+
|
4
|
+
begin
|
5
|
+
# workaround for activesupport 7.0.0
|
6
|
+
# c.f. https://github.com/rails/rails/issues/43851
|
7
|
+
require "active_support/isolated_execution_state"
|
8
|
+
rescue LoadError
|
9
|
+
end
|
3
10
|
require "active_support/testing/time_helpers"
|
4
11
|
|
5
12
|
RSpec.shared_context "rspec-time_stop", shared_context: :metadata do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-time_stop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sue445
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
139
|
- !ruby/object:Gem::Version
|
140
140
|
version: '0'
|
141
141
|
requirements: []
|
142
|
-
rubygems_version: 3.2.
|
142
|
+
rubygems_version: 3.2.32
|
143
143
|
signing_key:
|
144
144
|
specification_version: 4
|
145
145
|
summary: Stop current time in example.
|