rubicure 2.1.4 → 2.1.5
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
- data/CHANGELOG.md +7 -1
- data/lib/rubicure/version.rb +1 -1
- data/lib/rubicure.rb +8 -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: 0d5325d7d6724b38dc1f08ceb7959dfd876cdc8ff49f49120c1dc39b51eb3bd3
|
|
4
|
+
data.tar.gz: 1a6a234cd75c4e56390fe48099f27eb8ffd84fb88fa957fbc3cb7a23e0c870cd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fdcdf6de885c0fae474ccccef23e7012408d808b6292e4cc7a04f1cd664392a7f1a44db240472606b2fb26a67ba10ef3d7399daad6975cd3cedf5fece8cd4703
|
|
7
|
+
data.tar.gz: 1e31f4d6b8da0dfa82de842470ef587d134a8f4ad15b77a74610e9e148a8f525965e7023a297b1f596f94dcc815373c099802f78a7ba67fb7f37cea73c549fb6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## master
|
|
2
|
-
[full changelog](http://github.com/sue445/rubicure/compare/v2.1.
|
|
2
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v2.1.5...master)
|
|
3
|
+
|
|
4
|
+
## v2.1.5
|
|
5
|
+
[full changelog](http://github.com/sue445/rubicure/compare/v2.1.4...v2.1.5)
|
|
6
|
+
|
|
7
|
+
* Fixed. `NameError: uninitialized constant ActiveSupport::XmlMini::IsolatedExecutionState` with activesupport v7.0.0
|
|
8
|
+
* https://github.com/sue445/rubicure/pull/258
|
|
3
9
|
|
|
4
10
|
## v2.1.4
|
|
5
11
|
[full changelog](http://github.com/sue445/rubicure/compare/v2.1.3...v2.1.4)
|
data/lib/rubicure/version.rb
CHANGED
data/lib/rubicure.rb
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
require "active_support/core_ext/array/wrap"
|
|
2
2
|
require "active_support/core_ext/hash/keys"
|
|
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 # rubocop:disable Lint/SuppressedException
|
|
9
|
+
end
|
|
3
10
|
require "active_support/core_ext/time/calculations"
|
|
11
|
+
|
|
4
12
|
require "yaml"
|
|
5
13
|
require "hashie"
|
|
6
14
|
require "date"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rubicure
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- sue445
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
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
|
|
@@ -398,7 +398,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
398
398
|
- !ruby/object:Gem::Version
|
|
399
399
|
version: '0'
|
|
400
400
|
requirements: []
|
|
401
|
-
rubygems_version: 3.2.
|
|
401
|
+
rubygems_version: 3.2.32
|
|
402
402
|
signing_key:
|
|
403
403
|
specification_version: 4
|
|
404
404
|
summary: All about Japanese battle heroine "Pretty Cure (Precure)".
|