cache_with_locale 0.0.1 → 0.0.2
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 +5 -5
- data/README.md +17 -1
- data/lib/cache_with_locale/version.rb +1 -1
- metadata +32 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 4428d02c7bac7d87cffdee93388488a7eea53a6f1c7bf7a16e932d05e28acafc
|
|
4
|
+
data.tar.gz: 688a2f23dc1b4e3ef3288e15b0d2ee3368a3d6b255ccf87cebcc13f5d9f632b5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 191fd6938ca87dadc900999a01a0e726bd33ed4e0d346d103237c9672f303a85e72c796764ea55560bb58128b1def63f8813256e64851f83fe5f7a4502c2e3e6
|
|
7
|
+
data.tar.gz: 4fbae6c1752fa2016faf29b2034146c19d4108880dd89168813dbebca3c39d049647b13d9f5a7d0440ca472638f6cc301c388ecf4bd445d409c1b2a0a7ee8fcd
|
data/README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
[](https://travis-ci.org/igorkasyanchuk/cache_with_locale)
|
|
2
|
+
[](https://www.railsjazz.com)
|
|
2
3
|
|
|
3
4
|
# Rails cache with locale
|
|
4
5
|
Automatically adding current application locale (I18n.locale) as a part of caching key in Rails views.
|
|
@@ -42,7 +43,22 @@ $ bundle
|
|
|
42
43
|
```
|
|
43
44
|
|
|
44
45
|
## Contributing
|
|
45
|
-
|
|
46
|
+
|
|
47
|
+
Contributors
|
|
48
|
+
|
|
49
|
+
- https://github.com/pfeiffer
|
|
50
|
+
|
|
51
|
+
## Change Log
|
|
52
|
+
|
|
53
|
+
0.0.2
|
|
54
|
+
|
|
55
|
+
- https://github.com/igorkasyanchuk/cache_with_locale/pull/2
|
|
56
|
+
|
|
57
|
+
0.0.1
|
|
58
|
+
|
|
59
|
+
- initial version, ready for production
|
|
46
60
|
|
|
47
61
|
## License
|
|
48
62
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
|
63
|
+
|
|
64
|
+
|
metadata
CHANGED
|
@@ -1,17 +1,45 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cache_with_locale
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Kasyanchuk
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: railties
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: activesupport
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: actionview
|
|
15
43
|
requirement: !ruby/object:Gem::Requirement
|
|
16
44
|
requirements:
|
|
17
45
|
- - ">="
|
|
@@ -72,8 +100,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
72
100
|
- !ruby/object:Gem::Version
|
|
73
101
|
version: '0'
|
|
74
102
|
requirements: []
|
|
75
|
-
|
|
76
|
-
rubygems_version: 2.6.14
|
|
103
|
+
rubygems_version: 3.0.3
|
|
77
104
|
signing_key:
|
|
78
105
|
specification_version: 4
|
|
79
106
|
summary: Automatic fragment caching in Rails with locales
|