code-ruby 1.9.5 → 1.9.6
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/Gemfile.lock +1 -1
- data/VERSION +1 -1
- data/lib/code/object/date.rb +0 -1
- data/lib/code/object/time.rb +0 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a95a925416d72995a702f1ee826b2acaed3783f8b5fb969ded2acce57a3b463c
|
|
4
|
+
data.tar.gz: 83dc27edc922a93efee66d355b670ce6689e99573c6c7b26c3e2ffd84c3cbb6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4085a7a81985da654973b626b01e03bc54f8348004652afb17eab037556c608fd3591b98fcbd0a944a1e1ec9206795b62f2c297f62e989eb19744f8d16fe5540
|
|
7
|
+
data.tar.gz: 67c3d94c118ecc9f3d3f5fcce44c6295214c3b0af2309ccb933093f2002bd0a59fd9c9a6cb2fdfd4b4ffa3364c91dd862498d5411ebabe6d8cd4898e1e7e9b62
|
data/Gemfile.lock
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.9.
|
|
1
|
+
1.9.6
|
data/lib/code/object/date.rb
CHANGED
|
@@ -706,7 +706,6 @@ class Code
|
|
|
706
706
|
|
|
707
707
|
requested_locale = code_locale.raw&.to_s
|
|
708
708
|
locale = requested_locale&.presence_in(LOCALES)&.to_sym
|
|
709
|
-
locale ||= ::Current.locale if defined?(::Current)
|
|
710
709
|
locale ||= ::I18n.locale
|
|
711
710
|
locale = ::I18n.locale unless ::I18n.available_locales.include?(locale.to_sym)
|
|
712
711
|
|
data/lib/code/object/time.rb
CHANGED
|
@@ -815,7 +815,6 @@ class Code
|
|
|
815
815
|
|
|
816
816
|
requested_locale = code_locale.raw&.to_s
|
|
817
817
|
locale = requested_locale&.presence_in(LOCALES)&.to_sym
|
|
818
|
-
locale ||= ::Current.locale if defined?(::Current)
|
|
819
818
|
locale ||= ::I18n.locale
|
|
820
819
|
locale = ::I18n.locale unless ::I18n.available_locales.include?(locale.to_sym)
|
|
821
820
|
|