seo_cache 0.16.0 → 0.17.0

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: 83f6cd5dea18efdc9fa21ae62d13478b556aa7f35bcbd7789db640d8db4419ca
4
- data.tar.gz: 06a5e2de7fc435fae27f53f74d7741db2e9a4f8ac9bd0c0112bba52c2c8876e3
3
+ metadata.gz: 8cbb8606a44387a0ee110cc7f415f03fca04f44b78db3532e7c4bfd401a1217f
4
+ data.tar.gz: 1690e98393eaca4f5c46acba224ae4581887d824a18b33a825b208be89461a55
5
5
  SHA512:
6
- metadata.gz: 4dd2858594c6acfe05385f336ab60a74fecaccd6e97bdb66c62ccf23beda09f961b67192f2d6d13e665a43dbceb59626700483cde5b739cdbbb8642811e32b3c
7
- data.tar.gz: 0f17ee53fde5bfec13904da5533dae7743cfbe50b2a1827247d2dd314cf7d8cf2cc8cb7d284cfdf2577f585bffb96760b67c4a8de02604e8d8f815646bc2e79b
6
+ metadata.gz: 4879727dc7ee291e9986bc4a834e066763b7886770e578167b8d8beba7b62b6e4e30f05bd4914cb422985ee7622c13cb4028a6cdaecfd06661201fff068d64ea
7
+ data.tar.gz: 6809502cd15aabd145478e5b1033806345b1f097d92221466ef58d2270279bd06922707b940d808e46db6e6b5f4e217d515b9d7ee58131a382b0c00eae1dcada
@@ -1,13 +1,17 @@
1
+ # Documentation
2
+ # https://github.com/bbatsov/rubocop/blob/master/config/default.yml
3
+ # http://rubocop.readthedocs.io/en/latest
4
+
1
5
  AllCops:
2
6
  TargetRubyVersion: 2.6
3
7
 
4
- Documentation:
8
+ Bundler/OrderedGems:
5
9
  Enabled: false
6
10
 
7
- LineLength:
11
+ Layout/HashAlignment:
8
12
  Enabled: false
9
13
 
10
- Bundler/OrderedGems:
14
+ Layout/ParameterAlignment:
11
15
  Enabled: false
12
16
 
13
17
  Layout/CaseIndentation:
@@ -16,6 +20,9 @@ Layout/CaseIndentation:
16
20
  Layout/CommentIndentation:
17
21
  Enabled: false
18
22
 
23
+ Layout/EmptyLinesAroundBlockBody:
24
+ Enabled: false
25
+
19
26
  Layout/EmptyLinesAroundClassBody:
20
27
  Enabled: false
21
28
 
@@ -35,9 +42,6 @@ Layout/FirstArrayElementIndentation:
35
42
  Layout/FirstHashElementIndentation:
36
43
  Enabled: false
37
44
 
38
- Layout/HashAlignment:
39
- Enabled: false
40
-
41
45
  Layout/LeadingCommentSpace:
42
46
  Enabled: false
43
47
 
@@ -53,9 +57,6 @@ Layout/MultilineMethodCallIndentation:
53
57
  Layout/MultilineOperationIndentation:
54
58
  Enabled: false
55
59
 
56
- Layout/ParameterAlignment:
57
- Enabled: false
58
-
59
60
  Layout/SpaceAroundOperators:
60
61
  Enabled: false
61
62
 
@@ -89,47 +90,16 @@ Metrics/MethodLength:
89
90
  CountComments: false # count full line comments?
90
91
  Max: 120
91
92
 
92
- Metrics/ModuleLength:
93
- CountComments: false # count full line comments?
94
- Max: 350
95
-
96
- Metrics/ParameterLists:
97
- Max: 7
98
-
99
93
  Metrics/PerceivedComplexity:
100
94
  Enabled: false
101
95
 
102
96
  Naming/RescuedExceptionsVariableName:
103
97
  Enabled: false
104
98
 
105
- Rails/DynamicFindBy:
106
- Enabled: false
107
-
108
- Rails/FindBy:
109
- Enabled: false
110
-
111
- Rails/HasAndBelongsToMany:
112
- Enabled: false
113
-
114
- Rails/HelperInstanceVariable:
115
- Enabled: false
116
-
117
- Rails/OutputSafety:
118
- Enabled: false
119
-
120
- Rails/UnknownEnv:
121
- Enabled: false
122
-
123
- Rails/Validation:
99
+ Style/AsciiComments:
124
100
  Enabled: false
125
101
 
126
- RSpec/ExampleLength:
127
- Max: 20
128
-
129
- RSpec/MultipleExpectations:
130
- Max: 10
131
-
132
- Style/AsciiComments:
102
+ Style/BlockDelimiters:
133
103
  Enabled: false
134
104
 
135
105
  Style/ClassAndModuleChildren:
@@ -141,7 +111,10 @@ Style/ColonMethodCall:
141
111
  Style/CommandLiteral:
142
112
  Enabled: false
143
113
 
144
- Style/FrozenStringLiteralComment:
114
+ Style/DoubleNegation:
115
+ Enabled: false
116
+
117
+ Style/GlobalVars:
145
118
  Enabled: false
146
119
 
147
120
  Style/Lambda:
@@ -1,5 +1,9 @@
1
1
  ## 0.16.0
2
2
 
3
+ - Correct bug when populating cache
4
+
5
+ ## 0.16.0
6
+
3
7
  - Add prerender params when populating cache
4
8
 
5
9
  ## 0.15.0
@@ -19,7 +19,7 @@ module SeoCache
19
19
  next if @page_caching.cache_exists?(path) && !@force_cache
20
20
 
21
21
  url = @host + path
22
- url += if path.url.end_with?('?')
22
+ url += if path.end_with?('?')
23
23
  '&'
24
24
  else
25
25
  '?'
@@ -1,3 +1,3 @@
1
1
  module SeoCache
2
- VERSION = '0.16.0'.freeze
2
+ VERSION = '0.17.0'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seo_cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - FloXcoder
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-02-29 00:00:00.000000000 Z
11
+ date: 2020-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -226,7 +226,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
226
226
  - !ruby/object:Gem::Version
227
227
  version: '0'
228
228
  requirements: []
229
- rubygems_version: 3.1.2
229
+ rubygems_version: 3.0.4
230
230
  signing_key:
231
231
  specification_version: 4
232
232
  summary: Cache dedicated for SEO with Javascript rendering