rails_web_cache 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +178 -0
- data/lib/rails_web_cache/redis_cache_store.rb +1 -1
- data/lib/rails_web_cache/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b6f95ce1ca704946626e06d6ac9d2a7a4033d102a6486c5aa871916342075604
|
4
|
+
data.tar.gz: 3b4167a3c6eaa24f19e9004bc3716f603e81e8bf4025db8447f3eaa688c9530e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d9bffb10206976efebc38ec5b0cc916aef79dc36c91df6925f2cb5fea565d020d121acf08a63aea16a0266c93bf5fdd519fa4413a719cdaf27cbb65fc48567bc
|
7
|
+
data.tar.gz: c94b26e0d851ec620c400ec19a1d96a81985188e8aa8b26f49d140c07b346cf87f5716d6ef7f4bb274d874e244b04d0ba8484d1982469957da040df827eb6214
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,178 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rails_web_cache (0.3.0)
|
5
|
+
rails (>= 5.2, < 7.0)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actioncable (6.0.2.1)
|
11
|
+
actionpack (= 6.0.2.1)
|
12
|
+
nio4r (~> 2.0)
|
13
|
+
websocket-driver (>= 0.6.1)
|
14
|
+
actionmailbox (6.0.2.1)
|
15
|
+
actionpack (= 6.0.2.1)
|
16
|
+
activejob (= 6.0.2.1)
|
17
|
+
activerecord (= 6.0.2.1)
|
18
|
+
activestorage (= 6.0.2.1)
|
19
|
+
activesupport (= 6.0.2.1)
|
20
|
+
mail (>= 2.7.1)
|
21
|
+
actionmailer (6.0.2.1)
|
22
|
+
actionpack (= 6.0.2.1)
|
23
|
+
actionview (= 6.0.2.1)
|
24
|
+
activejob (= 6.0.2.1)
|
25
|
+
mail (~> 2.5, >= 2.5.4)
|
26
|
+
rails-dom-testing (~> 2.0)
|
27
|
+
actionpack (6.0.2.1)
|
28
|
+
actionview (= 6.0.2.1)
|
29
|
+
activesupport (= 6.0.2.1)
|
30
|
+
rack (~> 2.0, >= 2.0.8)
|
31
|
+
rack-test (>= 0.6.3)
|
32
|
+
rails-dom-testing (~> 2.0)
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
34
|
+
actiontext (6.0.2.1)
|
35
|
+
actionpack (= 6.0.2.1)
|
36
|
+
activerecord (= 6.0.2.1)
|
37
|
+
activestorage (= 6.0.2.1)
|
38
|
+
activesupport (= 6.0.2.1)
|
39
|
+
nokogiri (>= 1.8.5)
|
40
|
+
actionview (6.0.2.1)
|
41
|
+
activesupport (= 6.0.2.1)
|
42
|
+
builder (~> 3.1)
|
43
|
+
erubi (~> 1.4)
|
44
|
+
rails-dom-testing (~> 2.0)
|
45
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
46
|
+
activejob (6.0.2.1)
|
47
|
+
activesupport (= 6.0.2.1)
|
48
|
+
globalid (>= 0.3.6)
|
49
|
+
activemodel (6.0.2.1)
|
50
|
+
activesupport (= 6.0.2.1)
|
51
|
+
activerecord (6.0.2.1)
|
52
|
+
activemodel (= 6.0.2.1)
|
53
|
+
activesupport (= 6.0.2.1)
|
54
|
+
activestorage (6.0.2.1)
|
55
|
+
actionpack (= 6.0.2.1)
|
56
|
+
activejob (= 6.0.2.1)
|
57
|
+
activerecord (= 6.0.2.1)
|
58
|
+
marcel (~> 0.3.1)
|
59
|
+
activesupport (6.0.2.1)
|
60
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
61
|
+
i18n (>= 0.7, < 2)
|
62
|
+
minitest (~> 5.1)
|
63
|
+
tzinfo (~> 1.1)
|
64
|
+
zeitwerk (~> 2.2)
|
65
|
+
builder (3.2.4)
|
66
|
+
concurrent-ruby (1.1.5)
|
67
|
+
coveralls (0.8.23)
|
68
|
+
json (>= 1.8, < 3)
|
69
|
+
simplecov (~> 0.16.1)
|
70
|
+
term-ansicolor (~> 1.3)
|
71
|
+
thor (>= 0.19.4, < 2.0)
|
72
|
+
tins (~> 1.6)
|
73
|
+
crass (1.0.5)
|
74
|
+
diff-lcs (1.3)
|
75
|
+
docile (1.3.2)
|
76
|
+
erubi (1.9.0)
|
77
|
+
globalid (0.4.2)
|
78
|
+
activesupport (>= 4.2.0)
|
79
|
+
i18n (1.7.0)
|
80
|
+
concurrent-ruby (~> 1.0)
|
81
|
+
json (2.3.0)
|
82
|
+
loofah (2.4.0)
|
83
|
+
crass (~> 1.0.2)
|
84
|
+
nokogiri (>= 1.5.9)
|
85
|
+
mail (2.7.1)
|
86
|
+
mini_mime (>= 0.1.1)
|
87
|
+
marcel (0.3.3)
|
88
|
+
mimemagic (~> 0.3.2)
|
89
|
+
method_source (0.9.2)
|
90
|
+
mimemagic (0.3.3)
|
91
|
+
mini_mime (1.0.2)
|
92
|
+
mini_portile2 (2.4.0)
|
93
|
+
minitest (5.13.0)
|
94
|
+
nio4r (2.5.2)
|
95
|
+
nokogiri (1.10.7)
|
96
|
+
mini_portile2 (~> 2.4.0)
|
97
|
+
rack (2.0.8)
|
98
|
+
rack-test (1.1.0)
|
99
|
+
rack (>= 1.0, < 3)
|
100
|
+
rails (6.0.2.1)
|
101
|
+
actioncable (= 6.0.2.1)
|
102
|
+
actionmailbox (= 6.0.2.1)
|
103
|
+
actionmailer (= 6.0.2.1)
|
104
|
+
actionpack (= 6.0.2.1)
|
105
|
+
actiontext (= 6.0.2.1)
|
106
|
+
actionview (= 6.0.2.1)
|
107
|
+
activejob (= 6.0.2.1)
|
108
|
+
activemodel (= 6.0.2.1)
|
109
|
+
activerecord (= 6.0.2.1)
|
110
|
+
activestorage (= 6.0.2.1)
|
111
|
+
activesupport (= 6.0.2.1)
|
112
|
+
bundler (>= 1.3.0)
|
113
|
+
railties (= 6.0.2.1)
|
114
|
+
sprockets-rails (>= 2.0.0)
|
115
|
+
rails-dom-testing (2.0.3)
|
116
|
+
activesupport (>= 4.2.0)
|
117
|
+
nokogiri (>= 1.6)
|
118
|
+
rails-html-sanitizer (1.3.0)
|
119
|
+
loofah (~> 2.3)
|
120
|
+
railties (6.0.2.1)
|
121
|
+
actionpack (= 6.0.2.1)
|
122
|
+
activesupport (= 6.0.2.1)
|
123
|
+
method_source
|
124
|
+
rake (>= 0.8.7)
|
125
|
+
thor (>= 0.20.3, < 2.0)
|
126
|
+
rake (13.0.1)
|
127
|
+
rspec-core (3.9.1)
|
128
|
+
rspec-support (~> 3.9.1)
|
129
|
+
rspec-expectations (3.9.0)
|
130
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
131
|
+
rspec-support (~> 3.9.0)
|
132
|
+
rspec-mocks (3.9.0)
|
133
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
134
|
+
rspec-support (~> 3.9.0)
|
135
|
+
rspec-rails (4.0.0.beta3)
|
136
|
+
actionpack (>= 4.2)
|
137
|
+
activesupport (>= 4.2)
|
138
|
+
railties (>= 4.2)
|
139
|
+
rspec-core (~> 3.8)
|
140
|
+
rspec-expectations (~> 3.8)
|
141
|
+
rspec-mocks (~> 3.8)
|
142
|
+
rspec-support (~> 3.8)
|
143
|
+
rspec-support (3.9.1)
|
144
|
+
simplecov (0.16.1)
|
145
|
+
docile (~> 1.1)
|
146
|
+
json (>= 1.8, < 3)
|
147
|
+
simplecov-html (~> 0.10.0)
|
148
|
+
simplecov-html (0.10.2)
|
149
|
+
sprockets (4.0.0)
|
150
|
+
concurrent-ruby (~> 1.0)
|
151
|
+
rack (> 1, < 3)
|
152
|
+
sprockets-rails (3.2.1)
|
153
|
+
actionpack (>= 4.0)
|
154
|
+
activesupport (>= 4.0)
|
155
|
+
sprockets (>= 3.0.0)
|
156
|
+
term-ansicolor (1.7.1)
|
157
|
+
tins (~> 1.0)
|
158
|
+
thor (1.0.1)
|
159
|
+
thread_safe (0.3.6)
|
160
|
+
tins (1.22.2)
|
161
|
+
tzinfo (1.2.6)
|
162
|
+
thread_safe (~> 0.1)
|
163
|
+
websocket-driver (0.7.1)
|
164
|
+
websocket-extensions (>= 0.1.0)
|
165
|
+
websocket-extensions (0.1.4)
|
166
|
+
zeitwerk (2.2.2)
|
167
|
+
|
168
|
+
PLATFORMS
|
169
|
+
ruby
|
170
|
+
|
171
|
+
DEPENDENCIES
|
172
|
+
coveralls (~> 0.8)
|
173
|
+
rails_web_cache!
|
174
|
+
rspec-rails (= 4.0.0.beta3)
|
175
|
+
simplecov (~> 0.16)
|
176
|
+
|
177
|
+
BUNDLED WITH
|
178
|
+
2.0.2
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_web_cache
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Boris BRESCIANI
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-12-
|
11
|
+
date: 2019-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: coveralls
|
@@ -85,6 +85,7 @@ files:
|
|
85
85
|
- ".rubocop.yml"
|
86
86
|
- ".travis.yml"
|
87
87
|
- Gemfile
|
88
|
+
- Gemfile.lock
|
88
89
|
- LICENSE.txt
|
89
90
|
- README.md
|
90
91
|
- Rakefile
|