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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ae9fca9900028d9b294a39c904570cc7fbe3fd9c7e29d3754640496f60442f03
4
- data.tar.gz: 752f6cd0aa356522cca9e2db57767481d546974c66be88ceb1363048ec131738
3
+ metadata.gz: d10ce976e431663f5aa2f2ee3320600ed18608830560a84e35246a295bad4dab
4
+ data.tar.gz: bb17c58cfb93590b795cd1803dbcce0b51843ca39b85883fc6a463ae5fd389a9
5
5
  SHA512:
6
- metadata.gz: a714d040b26b033413d2db5462a256fb82c249cd7ae476cf0813541acba2395554317e100af5eaad7a803da3c78f17f2e2b96e39df4bb2daab7388eb6dc84dee
7
- data.tar.gz: 67cf598c4f1b8dba083b24cc196252c5f85f647017ef9db6a7599d97f31db29ed4455013998bd20abc2e5cc6e60d0a2cc4137b8534f74c27254f27e2a95383b6
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.1...master)
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)
@@ -1,5 +1,5 @@
1
1
  module RSpec
2
2
  module TimeStop
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
@@ -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.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-20 00:00:00.000000000 Z
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.22
142
+ rubygems_version: 3.2.32
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Stop current time in example.