infopark_component_cache 4.0.1 → 5.0.1

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
- SHA1:
3
- metadata.gz: ab7a50ba7d1bfb35008655dbef3d86db5690e92f
4
- data.tar.gz: 3398d1abaa5de2746b69701c45a81fbcfb71af86
2
+ SHA256:
3
+ metadata.gz: 483ecf46119b0b36b422e0e5d2168f7f7f73b5c8717de83724be3ef99ccd453f
4
+ data.tar.gz: 6d337a8d224ca63190840b976f0beca554eed95c3ca71f96a3234f231e94a9e5
5
5
  SHA512:
6
- metadata.gz: 972ce875a6748d43c308ebb7e8d72e0a27dab5cfb6144e79f2efd0eb2af72da6278fa80cafca3b2dabbc1b52244501fe0e632a9fb346a88ff6f879c5107b6f33
7
- data.tar.gz: 3719d4f68c120363e1bf2f062501a7c2e23090e8a3cf8fc51679078939a0cb22d2e9234308fccb774b81166ae3b9f00a95c5bd3d7f460518aa414633ea3d23dc
6
+ metadata.gz: 1122bafaf56cbf38ca5fd730a4d569de7b72c3aa40fe97521aa9aafc41a6aaa026f44a3ceca552d458e869d4038a878117f9b14ba3885642257b9212cd8704f4
7
+ data.tar.gz: 6e2354f2aea1583dd0d0e1671eb6d5307c35ba7cf44a6036d5f2bccc06d3d58ddd39ad9695b6fc1fac65a3b59dd2581711245fa1ea00b17d7d89ff2e0ad4d962
data/.rubocop.yml CHANGED
@@ -6,6 +6,7 @@ require:
6
6
 
7
7
  AllCops:
8
8
  NewCops: enable
9
+ TargetRubyVersion: 2.6.0
9
10
 
10
11
  Style/StringLiterals:
11
12
  EnforcedStyle: double_quotes
data/.rubocop_todo.yml CHANGED
@@ -1,37 +1,33 @@
1
1
  # This configuration was generated by
2
- # `rubocop --auto-gen-config --auto-gen-only-exclude`
3
- # on 2020-07-16 10:57:24 UTC using RuboCop version 0.87.1.
2
+ # `rubocop --auto-gen-config`
3
+ # on 2022-08-24 14:41:33 UTC using RuboCop version 1.35.1.
4
4
  # The point is for the user to remove these configuration records
5
5
  # one by one as the offenses are removed from the code base.
6
6
  # Note that changes in the inspected code, or installation of new
7
7
  # versions of RuboCop, may require this file to be generated again.
8
8
 
9
- # Offense count: 3
10
- # Configuration parameters: IgnoredMethods, Max.
11
- Metrics/AbcSize:
9
+ # Offense count: 1
10
+ # This cop supports safe autocorrection (--autocorrect).
11
+ # Configuration parameters: AllowDoxygenCommentStyle, AllowGemfileRubyComment.
12
+ Layout/LeadingCommentSpace:
12
13
  Exclude:
13
- - 'lib/infopark_component_cache/component_cache.rb'
14
- - 'spec/support/cache_switching_macros.rb'
14
+ - 'lib/infopark_component_cache/key_generator.rb'
15
15
 
16
- # Offense count: 8
17
- # Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods.
18
- # ExcludedMethods: refine
19
- Metrics/BlockLength:
16
+ # Offense count: 1
17
+ # Configuration parameters: AllowComments, AllowEmptyLambdas.
18
+ Lint/EmptyBlock:
20
19
  Exclude:
21
- - '**/*.gemspec'
22
- - 'spec/lib/infopark_component_cache/component_cache_spec.rb'
23
- - 'spec/lib/infopark_component_cache/delayed_guard_spec.rb'
24
- - 'spec/lib/infopark_component_cache/guards/last_changed_spec.rb'
25
- - 'spec/lib/infopark_component_cache/guards/obj_count_spec.rb'
26
- - 'spec/lib/infopark_component_cache/guards/valid_from_spec.rb'
27
- - 'spec/lib/infopark_component_cache/guards/valid_until_spec.rb'
20
+ - 'spec/dummy/db/schema.rb'
21
+
22
+ # Offense count: 2
23
+ # Configuration parameters: AllowedMethods, AllowedPatterns, IgnoredMethods, CountRepeatedAttributes.
24
+ Metrics/AbcSize:
25
+ Max: 18
28
26
 
29
27
  # Offense count: 3
30
- # Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods.
28
+ # Configuration parameters: CountComments, CountAsOne, ExcludedMethods, AllowedMethods, AllowedPatterns, IgnoredMethods.
31
29
  Metrics/MethodLength:
32
- Exclude:
33
- - 'lib/infopark_component_cache/component_cache.rb'
34
- - 'lib/infopark_component_cache/delayed_guard.rb'
30
+ Max: 20
35
31
 
36
32
  # Offense count: 1
37
33
  # Configuration parameters: EnforcedStyleForLeadingUnderscores.
@@ -41,18 +37,18 @@ Naming/MemoizedInstanceVariableName:
41
37
  - 'lib/infopark_component_cache/volatile_cache.rb'
42
38
 
43
39
  # Offense count: 3
44
- # Configuration parameters: Max.
40
+ # Configuration parameters: CountAsOne.
45
41
  RSpec/ExampleLength:
46
- Exclude:
47
- - 'spec/lib/infopark_component_cache/component_cache_spec.rb'
48
- - 'spec/lib/infopark_component_cache/delayed_guard_spec.rb'
42
+ Max: 7
49
43
 
50
44
  # Offense count: 5
51
- # Configuration parameters: Max, AggregateFailuresByDefault.
52
45
  RSpec/MultipleExpectations:
53
- Exclude:
54
- - 'spec/lib/infopark_component_cache/component_cache_spec.rb'
55
- - 'spec/lib/infopark_component_cache/delayed_guard_spec.rb'
46
+ Max: 3
47
+
48
+ # Offense count: 4
49
+ # Configuration parameters: AllowSubject.
50
+ RSpec/MultipleMemoizedHelpers:
51
+ Max: 7
56
52
 
57
53
  # Offense count: 1
58
54
  # Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
@@ -66,6 +62,7 @@ Style/ClassVars:
66
62
  - 'lib/infopark_component_cache/volatile_cache_storage.rb'
67
63
 
68
64
  # Offense count: 5
65
+ # Configuration parameters: AllowedConstants.
69
66
  Style/Documentation:
70
67
  Exclude:
71
68
  - 'spec/**/*'
@@ -77,25 +74,44 @@ Style/Documentation:
77
74
  - 'lib/infopark_component_cache/key_generator.rb'
78
75
 
79
76
  # Offense count: 52
80
- # Cop supports --auto-correct.
77
+ # This cop supports unsafe autocorrection (--autocorrect-all).
81
78
  # Configuration parameters: EnforcedStyle.
82
79
  # SupportedStyles: always, always_true, never
83
80
  Style/FrozenStringLiteralComment:
84
81
  Enabled: false
85
82
 
83
+ # Offense count: 1
84
+ # This cop supports safe autocorrection (--autocorrect).
85
+ Style/IfUnlessModifier:
86
+ Exclude:
87
+ - 'spec/dummy/config/application.rb'
88
+
86
89
  # Offense count: 2
87
- # Cop supports --auto-correct.
88
- # Configuration parameters: EnforcedStyle.
89
- # SupportedStyles: use_perl_names, use_english_names
90
+ # This cop supports safe autocorrection (--autocorrect).
91
+ Style/RedundantFileExtensionInRequire:
92
+ Exclude:
93
+ - 'lib/engine.rb'
94
+
95
+ # Offense count: 2
96
+ # This cop supports unsafe autocorrection (--autocorrect-all).
97
+ # Configuration parameters: RequireEnglish, EnforcedStyle.
98
+ # SupportedStyles: use_perl_names, use_english_names, use_builtin_english_names
90
99
  Style/SpecialGlobalVars:
91
100
  Exclude:
92
101
  - 'infopark_component_cache.gemspec'
93
102
  - 'spec/dummy/config/boot.rb'
94
103
 
104
+ # Offense count: 1
105
+ # This cop supports unsafe autocorrection (--autocorrect-all).
106
+ # Configuration parameters: Mode.
107
+ Style/StringConcatenation:
108
+ Exclude:
109
+ - 'lib/infopark_component_cache/component.rb'
110
+
95
111
  # Offense count: 4
96
- # Cop supports --auto-correct.
97
- # Configuration parameters: IgnoredMethods.
98
- # IgnoredMethods: respond_to, define_method
112
+ # This cop supports unsafe autocorrection (--autocorrect-all).
113
+ # Configuration parameters: AllowMethodsWithArguments, AllowedMethods, AllowedPatterns, IgnoredMethods, AllowComments.
114
+ # AllowedMethods: respond_to, define_method
99
115
  Style/SymbolProc:
100
116
  Exclude:
101
117
  - 'spec/lib/infopark_component_cache/guards/last_changed_spec.rb'
@@ -104,12 +120,8 @@ Style/SymbolProc:
104
120
  - 'spec/lib/infopark_component_cache/guards/valid_until_spec.rb'
105
121
 
106
122
  # Offense count: 4
107
- # Cop supports --auto-correct.
108
- # Configuration parameters: AutoCorrect, Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
123
+ # This cop supports safe autocorrection (--autocorrect).
124
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns, IgnoredPatterns.
109
125
  # URISchemes: http, https
110
126
  Layout/LineLength:
111
- Exclude:
112
- - 'lib/infopark_component_cache/abstract_cache_storage.rb'
113
- - 'lib/infopark_component_cache/component.rb'
114
- - 'spec/dummy/config/initializers/secret_token.rb'
115
- - 'spec/lib/infopark_component_cache/guards/always_consistent_spec.rb'
127
+ Max: 171
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.4.2
1
+ 3.1.2
data/.travis.yml CHANGED
@@ -2,12 +2,10 @@ language: ruby
2
2
  os: linux
3
3
  dist: xenial
4
4
  rvm:
5
- - 2.6.6
6
- - 2.5.3
7
- - 2.4.5
8
- gemfile:
9
- - Gemfile
10
- - Gemfile.rails51
5
+ - 3.1.2
6
+ - 3.0.4
7
+ - 2.7.5
8
+ if: branch =~ /^travis|^master$/
11
9
  bundler_args: --without production
12
10
  cache: bundler
13
11
  env:
@@ -15,10 +13,7 @@ env:
15
13
  - TASK='bundle exec rake spec'
16
14
  jobs:
17
15
  include:
18
- - {}
19
- - name: rubocop
20
- script: bundle exec rubocop
21
- script: $TASK
16
+ - name: Rubocop
17
+ env: TASK='bundle exec rubocop'
22
18
  before_install:
23
- - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
24
- - gem install bundler -v '< 2'
19
+ - gem install bundler -v '~> 2.3'
data/CHANGELOG.md ADDED
@@ -0,0 +1,17 @@
1
+ # Infopark ComponentCache Changelog
2
+
3
+ ## 5.0.1
4
+
5
+ ### New
6
+
7
+ - Ruby 3 and 3.1 compatibility
8
+ - Ruby on Rails 6 compatibility
9
+
10
+ ## 4.2.0
11
+
12
+ ### New
13
+
14
+ - Ruby 2.7 compatibility
15
+ - Drop EOL Ruby versions (2.5)
16
+ - Ruby on Rails 5.2.7 compatibility
17
+ - Use new infopark_fiona_connector gem
data/Gemfile CHANGED
@@ -3,4 +3,4 @@ source "https://rubygems.org"
3
3
  # Specify your gem's dependencies in infopark_component_cache.gemspec
4
4
  gemspec
5
5
 
6
- gem "rails", "~> 5.0.0"
6
+ gem "rails", ">= 5.0", "< 7.0"
data/Gemfile.lock CHANGED
@@ -1,104 +1,123 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- infopark_component_cache (4.0.1)
5
- infopark_fiona_connector (~> 7.0.1.5.2.3.rc5)
6
- rails (~> 5.0)
4
+ infopark_component_cache (5.0.1)
5
+ infopark_fiona_connector (~> 7.0.1.6.1.6.rc1)
6
+ rails (>= 5.0, < 7.0)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (5.0.7.2)
12
- actionpack (= 5.0.7.2)
13
- nio4r (>= 1.2, < 3.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.0.7.2)
16
- actionpack (= 5.0.7.2)
17
- actionview (= 5.0.7.2)
18
- activejob (= 5.0.7.2)
11
+ actioncable (6.1.6.1)
12
+ actionpack (= 6.1.6.1)
13
+ activesupport (= 6.1.6.1)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (6.1.6.1)
17
+ actionpack (= 6.1.6.1)
18
+ activejob (= 6.1.6.1)
19
+ activerecord (= 6.1.6.1)
20
+ activestorage (= 6.1.6.1)
21
+ activesupport (= 6.1.6.1)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.1.6.1)
24
+ actionpack (= 6.1.6.1)
25
+ actionview (= 6.1.6.1)
26
+ activejob (= 6.1.6.1)
27
+ activesupport (= 6.1.6.1)
19
28
  mail (~> 2.5, >= 2.5.4)
20
29
  rails-dom-testing (~> 2.0)
21
- actionpack (5.0.7.2)
22
- actionview (= 5.0.7.2)
23
- activesupport (= 5.0.7.2)
24
- rack (~> 2.0)
25
- rack-test (~> 0.6.3)
30
+ actionpack (6.1.6.1)
31
+ actionview (= 6.1.6.1)
32
+ activesupport (= 6.1.6.1)
33
+ rack (~> 2.0, >= 2.0.9)
34
+ rack-test (>= 0.6.3)
26
35
  rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.0.7.2)
29
- activesupport (= 5.0.7.2)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
+ actiontext (6.1.6.1)
38
+ actionpack (= 6.1.6.1)
39
+ activerecord (= 6.1.6.1)
40
+ activestorage (= 6.1.6.1)
41
+ activesupport (= 6.1.6.1)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.1.6.1)
44
+ activesupport (= 6.1.6.1)
30
45
  builder (~> 3.1)
31
- erubis (~> 2.7.0)
46
+ erubi (~> 1.4)
32
47
  rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.0.7.2)
35
- activesupport (= 5.0.7.2)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.1.6.1)
50
+ activesupport (= 6.1.6.1)
36
51
  globalid (>= 0.3.6)
37
- activemodel (5.0.7.2)
38
- activesupport (= 5.0.7.2)
39
- activerecord (5.0.7.2)
40
- activemodel (= 5.0.7.2)
41
- activesupport (= 5.0.7.2)
42
- arel (~> 7.0)
43
- activesupport (5.0.7.2)
52
+ activemodel (6.1.6.1)
53
+ activesupport (= 6.1.6.1)
54
+ activerecord (6.1.6.1)
55
+ activemodel (= 6.1.6.1)
56
+ activesupport (= 6.1.6.1)
57
+ activestorage (6.1.6.1)
58
+ actionpack (= 6.1.6.1)
59
+ activejob (= 6.1.6.1)
60
+ activerecord (= 6.1.6.1)
61
+ activesupport (= 6.1.6.1)
62
+ marcel (~> 1.0)
63
+ mini_mime (>= 1.1.0)
64
+ activesupport (6.1.6.1)
44
65
  concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (>= 0.7, < 2)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- arel (7.1.4)
49
- ast (2.4.1)
66
+ i18n (>= 1.6, < 2)
67
+ minitest (>= 5.1)
68
+ tzinfo (~> 2.0)
69
+ zeitwerk (~> 2.3)
70
+ ast (2.4.2)
50
71
  builder (3.2.4)
51
72
  byebug (11.1.3)
52
73
  coderay (1.1.3)
53
- concurrent-ruby (1.1.6)
74
+ concurrent-ruby (1.1.10)
54
75
  crass (1.0.6)
55
- diff-lcs (1.4.3)
56
- erubis (2.7.0)
57
- faraday (1.0.1)
58
- multipart-post (>= 1.2, < 3)
59
- globalid (0.4.2)
60
- activesupport (>= 4.2.0)
76
+ diff-lcs (1.5.0)
77
+ erubi (1.11.0)
78
+ faraday (2.5.2)
79
+ faraday-net_http (>= 2.0, < 3.1)
80
+ ruby2_keywords (>= 0.0.4)
81
+ faraday-net_http (3.0.0)
82
+ globalid (1.0.0)
83
+ activesupport (>= 5.0)
61
84
  helpful_configuration (0.1.0)
62
- i18n (1.8.3)
85
+ i18n (1.12.0)
63
86
  concurrent-ruby (~> 1.0)
64
- infopark_fiona_connector (7.0.1.5.2.3.rc5)
65
- activerecord (~> 5.0)
87
+ infopark_fiona_connector (7.0.1.6.1.6.rc1)
88
+ activerecord (>= 5.2, < 7.0)
66
89
  helpful_configuration (~> 0.1.0)
67
- jquery-rails (~> 4.3)
68
90
  json (~> 2.3)
69
91
  maruku (~> 0.7)
70
92
  mime-types (~> 3.1)
71
- mysql_blob_streaming (~> 2.3)
72
- rails (~> 5.0)
93
+ mysql_blob_streaming (~> 2.5)
94
+ rails (>= 5.2, < 7.0)
73
95
  rake (~> 12.3)
74
96
  rsolr (~> 2.1.0s)
75
- jquery-rails (4.4.0)
76
- rails-dom-testing (>= 1, < 3)
77
- railties (>= 4.2.0)
78
- thor (>= 0.14, < 2.0)
79
- json (2.3.1)
80
- loofah (2.6.0)
97
+ json (2.6.2)
98
+ loofah (2.18.0)
81
99
  crass (~> 1.0.2)
82
100
  nokogiri (>= 1.5.9)
83
101
  mail (2.7.1)
84
102
  mini_mime (>= 0.1.1)
103
+ marcel (1.0.2)
85
104
  maruku (0.7.3)
86
105
  method_source (1.0.0)
87
- mime-types (3.3.1)
106
+ mime-types (3.4.1)
88
107
  mime-types-data (~> 3.2015)
89
- mime-types-data (3.2020.0512)
90
- mini_mime (1.0.2)
91
- mini_portile2 (2.4.0)
92
- minitest (5.14.1)
93
- multipart-post (2.1.1)
94
- mysql2 (0.5.3)
95
- mysql_blob_streaming (2.3.0)
108
+ mime-types-data (3.2022.0105)
109
+ mini_mime (1.1.2)
110
+ mini_portile2 (2.8.0)
111
+ minitest (5.16.3)
112
+ mysql2 (0.5.4)
113
+ mysql_blob_streaming (2.5.0)
96
114
  mysql2 (>= 0.4.4, < 0.6.0)
97
- nio4r (2.5.2)
98
- nokogiri (1.10.9)
99
- mini_portile2 (~> 2.4.0)
100
- parallel (1.19.2)
101
- parser (2.7.1.4)
115
+ nio4r (2.5.8)
116
+ nokogiri (1.13.8)
117
+ mini_portile2 (~> 2.8.0)
118
+ racc (~> 1.4)
119
+ parallel (1.22.1)
120
+ parser (3.1.2.1)
102
121
  ast (~> 2.4.1)
103
122
  pry (0.13.1)
104
123
  coderay (~> 1.1)
@@ -106,88 +125,95 @@ GEM
106
125
  pry-byebug (3.9.0)
107
126
  byebug (~> 11.0)
108
127
  pry (~> 0.13.0)
109
- rack (2.2.3)
110
- rack-test (0.6.3)
111
- rack (>= 1.0)
112
- rails (5.0.7.2)
113
- actioncable (= 5.0.7.2)
114
- actionmailer (= 5.0.7.2)
115
- actionpack (= 5.0.7.2)
116
- actionview (= 5.0.7.2)
117
- activejob (= 5.0.7.2)
118
- activemodel (= 5.0.7.2)
119
- activerecord (= 5.0.7.2)
120
- activesupport (= 5.0.7.2)
121
- bundler (>= 1.3.0)
122
- railties (= 5.0.7.2)
128
+ racc (1.6.0)
129
+ rack (2.2.4)
130
+ rack-test (2.0.2)
131
+ rack (>= 1.3)
132
+ rails (6.1.6.1)
133
+ actioncable (= 6.1.6.1)
134
+ actionmailbox (= 6.1.6.1)
135
+ actionmailer (= 6.1.6.1)
136
+ actionpack (= 6.1.6.1)
137
+ actiontext (= 6.1.6.1)
138
+ actionview (= 6.1.6.1)
139
+ activejob (= 6.1.6.1)
140
+ activemodel (= 6.1.6.1)
141
+ activerecord (= 6.1.6.1)
142
+ activestorage (= 6.1.6.1)
143
+ activesupport (= 6.1.6.1)
144
+ bundler (>= 1.15.0)
145
+ railties (= 6.1.6.1)
123
146
  sprockets-rails (>= 2.0.0)
124
147
  rails-dom-testing (2.0.3)
125
148
  activesupport (>= 4.2.0)
126
149
  nokogiri (>= 1.6)
127
- rails-html-sanitizer (1.3.0)
150
+ rails-html-sanitizer (1.4.3)
128
151
  loofah (~> 2.3)
129
- railties (5.0.7.2)
130
- actionpack (= 5.0.7.2)
131
- activesupport (= 5.0.7.2)
152
+ railties (6.1.6.1)
153
+ actionpack (= 6.1.6.1)
154
+ activesupport (= 6.1.6.1)
132
155
  method_source
133
- rake (>= 0.8.7)
134
- thor (>= 0.18.1, < 2.0)
135
- rainbow (3.0.0)
156
+ rake (>= 12.2)
157
+ thor (~> 1.0)
158
+ rainbow (3.1.1)
136
159
  rake (12.3.3)
137
- regexp_parser (1.7.1)
138
- rexml (3.2.4)
160
+ regexp_parser (2.5.0)
161
+ rexml (3.2.5)
139
162
  rsolr (2.1.0)
140
163
  builder (>= 2.1.2)
141
164
  faraday (>= 0.9.0)
142
- rspec-core (3.9.2)
143
- rspec-support (~> 3.9.3)
144
- rspec-expectations (3.9.2)
165
+ rspec-core (3.11.0)
166
+ rspec-support (~> 3.11.0)
167
+ rspec-expectations (3.11.0)
145
168
  diff-lcs (>= 1.2.0, < 2.0)
146
- rspec-support (~> 3.9.0)
147
- rspec-mocks (3.9.1)
169
+ rspec-support (~> 3.11.0)
170
+ rspec-mocks (3.11.1)
148
171
  diff-lcs (>= 1.2.0, < 2.0)
149
- rspec-support (~> 3.9.0)
150
- rspec-rails (3.9.1)
151
- actionpack (>= 3.0)
152
- activesupport (>= 3.0)
153
- railties (>= 3.0)
154
- rspec-core (~> 3.9.0)
155
- rspec-expectations (~> 3.9.0)
156
- rspec-mocks (~> 3.9.0)
157
- rspec-support (~> 3.9.0)
158
- rspec-support (3.9.3)
159
- rubocop (0.87.1)
172
+ rspec-support (~> 3.11.0)
173
+ rspec-rails (5.1.2)
174
+ actionpack (>= 5.2)
175
+ activesupport (>= 5.2)
176
+ railties (>= 5.2)
177
+ rspec-core (~> 3.10)
178
+ rspec-expectations (~> 3.10)
179
+ rspec-mocks (~> 3.10)
180
+ rspec-support (~> 3.10)
181
+ rspec-support (3.11.0)
182
+ rubocop (1.35.1)
183
+ json (~> 2.3)
160
184
  parallel (~> 1.10)
161
- parser (>= 2.7.1.1)
185
+ parser (>= 3.1.2.1)
162
186
  rainbow (>= 2.2.2, < 4.0)
163
- regexp_parser (>= 1.7)
164
- rexml
165
- rubocop-ast (>= 0.1.0, < 1.0)
187
+ regexp_parser (>= 1.8, < 3.0)
188
+ rexml (>= 3.2.5, < 4.0)
189
+ rubocop-ast (>= 1.20.1, < 2.0)
166
190
  ruby-progressbar (~> 1.7)
167
- unicode-display_width (>= 1.4.0, < 2.0)
168
- rubocop-ast (0.1.0)
169
- parser (>= 2.7.0.1)
170
- rubocop-performance (1.7.0)
171
- rubocop (>= 0.82.0)
172
- rubocop-rspec (1.30.1)
173
- rubocop (>= 0.60.0)
174
- ruby-progressbar (1.10.1)
175
- sprockets (3.7.2)
191
+ unicode-display_width (>= 1.4.0, < 3.0)
192
+ rubocop-ast (1.21.0)
193
+ parser (>= 3.1.1.0)
194
+ rubocop-performance (1.14.2)
195
+ rubocop (>= 1.7.0, < 2.0)
196
+ rubocop-ast (>= 0.4.0)
197
+ rubocop-rspec (2.11.1)
198
+ rubocop (~> 1.19)
199
+ ruby-progressbar (1.11.0)
200
+ ruby2_keywords (0.0.5)
201
+ sprockets (4.1.1)
176
202
  concurrent-ruby (~> 1.0)
177
203
  rack (> 1, < 3)
178
- sprockets-rails (3.2.1)
179
- actionpack (>= 4.0)
180
- activesupport (>= 4.0)
204
+ sprockets-rails (3.4.2)
205
+ actionpack (>= 5.2)
206
+ activesupport (>= 5.2)
181
207
  sprockets (>= 3.0.0)
182
- sqlite3 (1.3.13)
183
- thor (1.0.1)
184
- thread_safe (0.3.6)
185
- tzinfo (1.2.7)
186
- thread_safe (~> 0.1)
187
- unicode-display_width (1.7.0)
188
- websocket-driver (0.6.5)
208
+ sqlite3 (1.4.4)
209
+ thor (1.2.1)
210
+ tzinfo (2.0.5)
211
+ concurrent-ruby (~> 1.0)
212
+ unicode-display_width (2.2.0)
213
+ websocket-driver (0.7.5)
189
214
  websocket-extensions (>= 0.1.0)
190
215
  websocket-extensions (0.1.5)
216
+ zeitwerk (2.6.0)
191
217
 
192
218
  PLATFORMS
193
219
  ruby
@@ -195,12 +221,12 @@ PLATFORMS
195
221
  DEPENDENCIES
196
222
  infopark_component_cache!
197
223
  pry-byebug (~> 3.9)
198
- rails (~> 5.0.0)
199
- rspec-rails (~> 3.5)
200
- rubocop (~> 0.87.1)
201
- rubocop-performance (~> 1.7)
202
- rubocop-rspec (~> 1.30)
224
+ rails (>= 5.0, < 7.0)
225
+ rspec-rails (~> 5.1)
226
+ rubocop
227
+ rubocop-performance
228
+ rubocop-rspec
203
229
  sqlite3 (~> 1.3, >= 1.3.6)
204
230
 
205
231
  BUNDLED WITH
206
- 1.17.3
232
+ 2.3.16
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Infopark's ComponentCache
1
+ # Infopark's ComponentCache [![Build Status](https://travis-ci.com/infopark/component_cache.svg?token=9yf7x57D3eQF9WPTdzqX&branch=master)](https://travis-ci.com/infopark/component_cache)
2
2
 
3
3
  Fragment caching with automatic dependency resolution and cache invalidation.
4
4
 
@@ -13,18 +13,18 @@ Gem::Specification.new do |gem|
13
13
  gem.license = "LGPL-3.0"
14
14
 
15
15
  gem.files = `git ls-files`.split($/)
16
- gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
17
- gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
16
  gem.require_paths = ["lib"]
17
+ gem.required_ruby_version = ">= 2.6"
18
+ gem.metadata["rubygems_mfa_required"] = "true"
19
19
 
20
- gem.add_dependency "rails", "~> 5.0"
20
+ gem.add_dependency "rails", [">= 5.0", "< 7.0"]
21
21
 
22
- gem.add_dependency "infopark_fiona_connector", "~> 7.0.1.5.2.3.rc5"
22
+ gem.add_dependency "infopark_fiona_connector", "~> 7.0.1.6.1.6.rc1"
23
23
 
24
24
  gem.add_development_dependency "pry-byebug", "~> 3.9"
25
- gem.add_development_dependency "rspec-rails", "~> 3.5"
26
- gem.add_development_dependency "rubocop", "~> 0.87.1"
27
- gem.add_development_dependency "rubocop-performance", "~> 1.7"
28
- gem.add_development_dependency "rubocop-rspec", "~> 1.30"
25
+ gem.add_development_dependency "rspec-rails", "~> 5.1"
26
+ gem.add_development_dependency "rubocop"
27
+ gem.add_development_dependency "rubocop-performance"
28
+ gem.add_development_dependency "rubocop-rspec"
29
29
  gem.add_development_dependency "sqlite3", "~> 1.3", ">= 1.3.6"
30
30
  end
data/lib/engine.rb CHANGED
@@ -23,6 +23,8 @@ require "infopark_component_cache/cache_storage"
23
23
  require "infopark_component_cache/component"
24
24
  require "infopark_component_cache/component_cache"
25
25
 
26
+ require "infopark_fiona_connector"
27
+
26
28
  module InfoparkComponentCache
27
29
  # @!scope class
28
30
  # This parameter should be initialized to the root object
@@ -32,14 +34,12 @@ module InfoparkComponentCache
32
34
  # @author Tomasz Przedmojski <tomasz.przedmojski@infopark.de>
33
35
  class Engine < Rails::Engine
34
36
  initializer "component_cache.helpers" do
35
- [
36
- InfoparkComponentCacheHelper
37
- ].each do |helper|
38
- ActionView::Base.__send__(:include, helper)
37
+ ActiveSupport.on_load(:action_view) do
38
+ include InfoparkComponentCacheHelper
39
39
  end
40
40
  end
41
41
 
42
- initializer "set default obj_root_class" do
42
+ config.after_initialize do
43
43
  InfoparkComponentCache.obj_root_class ||= ::Obj
44
44
  CmsStateGuard.obj_root_class = InfoparkComponentCache.obj_root_class
45
45
  end
@@ -1,3 +1,3 @@
1
1
  module InfoparkComponentCache
2
- VERSION = "4.0.1".freeze
2
+ VERSION = "5.0.1".freeze
3
3
  end
File without changes
@@ -1,2 +1,2 @@
1
- class Obj
1
+ class Obj < RailsConnector::BasicObj
2
2
  end
@@ -3,6 +3,7 @@ require File.expand_path("boot", __dir__)
3
3
  # Pick the frameworks you want:
4
4
  require "active_record/railtie"
5
5
  require "action_controller/railtie"
6
+ require "sprockets/railtie"
6
7
 
7
8
  Bundler.require(*Rails.groups)
8
9
  require "infopark_component_cache"
@@ -12,5 +13,9 @@ module Dummy
12
13
  config.encoding = "utf-8"
13
14
  config.filter_parameters += [:password]
14
15
  config.active_support.escape_html_entities_in_json = true
16
+ if Rails::VERSION::MAJOR >= 5 && Rails::VERSION::MINOR == 2
17
+ config.active_record.sqlite3.represent_boolean_as_integer = true
18
+ end
19
+ config.autoloader = :zeitwerk
15
20
  end
16
21
  end
@@ -9,3 +9,4 @@ test:
9
9
 
10
10
  cms:
11
11
  <<: *dummy
12
+ database: db/cms.sqlite3
@@ -1,4 +1,5 @@
1
1
  Dummy::Application.configure do
2
2
  config.cache_store = :memory_store
3
3
  config.eager_load = false
4
+ config.cache_classes = false
4
5
  end
Binary file
metadata CHANGED
@@ -1,43 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infopark_component_cache
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1
4
+ version: 5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomasz Przedmojski, sveninfo
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-17 00:00:00.000000000 Z
11
+ date: 2022-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '5.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '7.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '5.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '7.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: infopark_fiona_connector
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
37
  - - "~>"
32
38
  - !ruby/object:Gem::Version
33
- version: 7.0.1.5.2.3.rc5
39
+ version: 7.0.1.6.1.6.rc1
34
40
  type: :runtime
35
41
  prerelease: false
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
44
  - - "~>"
39
45
  - !ruby/object:Gem::Version
40
- version: 7.0.1.5.2.3.rc5
46
+ version: 7.0.1.6.1.6.rc1
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: pry-byebug
43
49
  requirement: !ruby/object:Gem::Requirement
@@ -58,56 +64,56 @@ dependencies:
58
64
  requirements:
59
65
  - - "~>"
60
66
  - !ruby/object:Gem::Version
61
- version: '3.5'
67
+ version: '5.1'
62
68
  type: :development
63
69
  prerelease: false
64
70
  version_requirements: !ruby/object:Gem::Requirement
65
71
  requirements:
66
72
  - - "~>"
67
73
  - !ruby/object:Gem::Version
68
- version: '3.5'
74
+ version: '5.1'
69
75
  - !ruby/object:Gem::Dependency
70
76
  name: rubocop
71
77
  requirement: !ruby/object:Gem::Requirement
72
78
  requirements:
73
- - - "~>"
79
+ - - ">="
74
80
  - !ruby/object:Gem::Version
75
- version: 0.87.1
81
+ version: '0'
76
82
  type: :development
77
83
  prerelease: false
78
84
  version_requirements: !ruby/object:Gem::Requirement
79
85
  requirements:
80
- - - "~>"
86
+ - - ">="
81
87
  - !ruby/object:Gem::Version
82
- version: 0.87.1
88
+ version: '0'
83
89
  - !ruby/object:Gem::Dependency
84
90
  name: rubocop-performance
85
91
  requirement: !ruby/object:Gem::Requirement
86
92
  requirements:
87
- - - "~>"
93
+ - - ">="
88
94
  - !ruby/object:Gem::Version
89
- version: '1.7'
95
+ version: '0'
90
96
  type: :development
91
97
  prerelease: false
92
98
  version_requirements: !ruby/object:Gem::Requirement
93
99
  requirements:
94
- - - "~>"
100
+ - - ">="
95
101
  - !ruby/object:Gem::Version
96
- version: '1.7'
102
+ version: '0'
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: rubocop-rspec
99
105
  requirement: !ruby/object:Gem::Requirement
100
106
  requirements:
101
- - - "~>"
107
+ - - ">="
102
108
  - !ruby/object:Gem::Version
103
- version: '1.30'
109
+ version: '0'
104
110
  type: :development
105
111
  prerelease: false
106
112
  version_requirements: !ruby/object:Gem::Requirement
107
113
  requirements:
108
- - - "~>"
114
+ - - ">="
109
115
  - !ruby/object:Gem::Version
110
- version: '1.30'
116
+ version: '0'
111
117
  - !ruby/object:Gem::Dependency
112
118
  name: sqlite3
113
119
  requirement: !ruby/object:Gem::Requirement
@@ -141,10 +147,9 @@ files:
141
147
  - ".rubocop_todo.yml"
142
148
  - ".ruby-version"
143
149
  - ".travis.yml"
150
+ - CHANGELOG.md
144
151
  - Gemfile
145
152
  - Gemfile.lock
146
- - Gemfile.rails51
147
- - Gemfile.rails51.lock
148
153
  - LICENSE.txt
149
154
  - README.md
150
155
  - Rakefile
@@ -175,6 +180,7 @@ files:
175
180
  - lib/infopark_component_cache/volatile_cache.rb
176
181
  - lib/infopark_component_cache/volatile_cache_storage.rb
177
182
  - spec/dummy/Rakefile
183
+ - spec/dummy/app/assets/config/manifest.js
178
184
  - spec/dummy/app/controllers/application_controller.rb
179
185
  - spec/dummy/app/models/obj.rb
180
186
  - spec/dummy/config.ru
@@ -188,6 +194,7 @@ files:
188
194
  - spec/dummy/config/initializers/session_store.rb
189
195
  - spec/dummy/config/initializers/wrap_parameters.rb
190
196
  - spec/dummy/config/routes.rb
197
+ - spec/dummy/db/cms.sqlite3
191
198
  - spec/dummy/db/development.sqlite3
192
199
  - spec/dummy/db/schema.rb
193
200
  - spec/dummy/log/.gitkeep
@@ -204,8 +211,9 @@ files:
204
211
  homepage: http://infopark.com
205
212
  licenses:
206
213
  - LGPL-3.0
207
- metadata: {}
208
- post_install_message:
214
+ metadata:
215
+ rubygems_mfa_required: 'true'
216
+ post_install_message:
209
217
  rdoc_options: []
210
218
  require_paths:
211
219
  - lib
@@ -213,43 +221,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
213
221
  requirements:
214
222
  - - ">="
215
223
  - !ruby/object:Gem::Version
216
- version: '0'
224
+ version: '2.6'
217
225
  required_rubygems_version: !ruby/object:Gem::Requirement
218
226
  requirements:
219
227
  - - ">="
220
228
  - !ruby/object:Gem::Version
221
229
  version: '0'
222
230
  requirements: []
223
- rubyforge_project:
224
- rubygems_version: 2.6.13
225
- signing_key:
231
+ rubygems_version: 3.3.7
232
+ signing_key:
226
233
  specification_version: 4
227
234
  summary: Fragment caching with automatic dependency resolution and cache invalidation.
228
- test_files:
229
- - spec/dummy/Rakefile
230
- - spec/dummy/app/controllers/application_controller.rb
231
- - spec/dummy/app/models/obj.rb
232
- - spec/dummy/config.ru
233
- - spec/dummy/config/application.rb
234
- - spec/dummy/config/boot.rb
235
- - spec/dummy/config/database.yml
236
- - spec/dummy/config/environment.rb
237
- - spec/dummy/config/environments/development.rb
238
- - spec/dummy/config/environments/test.rb
239
- - spec/dummy/config/initializers/secret_token.rb
240
- - spec/dummy/config/initializers/session_store.rb
241
- - spec/dummy/config/initializers/wrap_parameters.rb
242
- - spec/dummy/config/routes.rb
243
- - spec/dummy/db/development.sqlite3
244
- - spec/dummy/db/schema.rb
245
- - spec/dummy/log/.gitkeep
246
- - spec/lib/infopark_component_cache/component_cache_spec.rb
247
- - spec/lib/infopark_component_cache/delayed_guard_spec.rb
248
- - spec/lib/infopark_component_cache/guards/always_consistent_spec.rb
249
- - spec/lib/infopark_component_cache/guards/last_changed_spec.rb
250
- - spec/lib/infopark_component_cache/guards/never_consistent_spec.rb
251
- - spec/lib/infopark_component_cache/guards/obj_count_spec.rb
252
- - spec/lib/infopark_component_cache/guards/valid_from_spec.rb
253
- - spec/lib/infopark_component_cache/guards/valid_until_spec.rb
254
- - spec/spec_helper.rb
255
- - spec/support/cache_switching_macros.rb
235
+ test_files: []
data/Gemfile.rails51 DELETED
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in infopark_component_cache.gemspec
4
- gemspec
5
-
6
- gem "rails", "~> 5.1.0"
data/Gemfile.rails51.lock DELETED
@@ -1,206 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- infopark_component_cache (4.0.1)
5
- infopark_fiona_connector (~> 7.0.1.5.2.3.rc5)
6
- rails (~> 5.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.1.7)
12
- actionpack (= 5.1.7)
13
- nio4r (~> 2.0)
14
- websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.7)
16
- actionpack (= 5.1.7)
17
- actionview (= 5.1.7)
18
- activejob (= 5.1.7)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.1.7)
22
- actionview (= 5.1.7)
23
- activesupport (= 5.1.7)
24
- rack (~> 2.0)
25
- rack-test (>= 0.6.3)
26
- rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.7)
29
- activesupport (= 5.1.7)
30
- builder (~> 3.1)
31
- erubi (~> 1.4)
32
- rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.7)
35
- activesupport (= 5.1.7)
36
- globalid (>= 0.3.6)
37
- activemodel (5.1.7)
38
- activesupport (= 5.1.7)
39
- activerecord (5.1.7)
40
- activemodel (= 5.1.7)
41
- activesupport (= 5.1.7)
42
- arel (~> 8.0)
43
- activesupport (5.1.7)
44
- concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (>= 0.7, < 2)
46
- minitest (~> 5.1)
47
- tzinfo (~> 1.1)
48
- arel (8.0.0)
49
- ast (2.4.1)
50
- builder (3.2.4)
51
- byebug (11.1.3)
52
- coderay (1.1.3)
53
- concurrent-ruby (1.1.6)
54
- crass (1.0.6)
55
- diff-lcs (1.4.4)
56
- erubi (1.9.0)
57
- faraday (1.0.1)
58
- multipart-post (>= 1.2, < 3)
59
- globalid (0.4.2)
60
- activesupport (>= 4.2.0)
61
- helpful_configuration (0.1.0)
62
- i18n (1.8.3)
63
- concurrent-ruby (~> 1.0)
64
- infopark_fiona_connector (7.0.1.5.2.3.rc5)
65
- activerecord (~> 5.0)
66
- helpful_configuration (~> 0.1.0)
67
- jquery-rails (~> 4.3)
68
- json (~> 2.3)
69
- maruku (~> 0.7)
70
- mime-types (~> 3.1)
71
- mysql_blob_streaming (~> 2.3)
72
- rails (~> 5.0)
73
- rake (~> 12.3)
74
- rsolr (~> 2.1.0s)
75
- jquery-rails (4.4.0)
76
- rails-dom-testing (>= 1, < 3)
77
- railties (>= 4.2.0)
78
- thor (>= 0.14, < 2.0)
79
- json (2.3.1)
80
- loofah (2.6.0)
81
- crass (~> 1.0.2)
82
- nokogiri (>= 1.5.9)
83
- mail (2.7.1)
84
- mini_mime (>= 0.1.1)
85
- maruku (0.7.3)
86
- method_source (1.0.0)
87
- mime-types (3.3.1)
88
- mime-types-data (~> 3.2015)
89
- mime-types-data (3.2020.0512)
90
- mini_mime (1.0.2)
91
- mini_portile2 (2.4.0)
92
- minitest (5.14.1)
93
- multipart-post (2.1.1)
94
- mysql2 (0.5.3)
95
- mysql_blob_streaming (2.3.0)
96
- mysql2 (>= 0.4.4, < 0.6.0)
97
- nio4r (2.5.2)
98
- nokogiri (1.10.10)
99
- mini_portile2 (~> 2.4.0)
100
- parallel (1.19.2)
101
- parser (2.7.1.4)
102
- ast (~> 2.4.1)
103
- pry (0.13.1)
104
- coderay (~> 1.1)
105
- method_source (~> 1.0)
106
- pry-byebug (3.9.0)
107
- byebug (~> 11.0)
108
- pry (~> 0.13.0)
109
- rack (2.2.3)
110
- rack-test (1.1.0)
111
- rack (>= 1.0, < 3)
112
- rails (5.1.7)
113
- actioncable (= 5.1.7)
114
- actionmailer (= 5.1.7)
115
- actionpack (= 5.1.7)
116
- actionview (= 5.1.7)
117
- activejob (= 5.1.7)
118
- activemodel (= 5.1.7)
119
- activerecord (= 5.1.7)
120
- activesupport (= 5.1.7)
121
- bundler (>= 1.3.0)
122
- railties (= 5.1.7)
123
- sprockets-rails (>= 2.0.0)
124
- rails-dom-testing (2.0.3)
125
- activesupport (>= 4.2.0)
126
- nokogiri (>= 1.6)
127
- rails-html-sanitizer (1.3.0)
128
- loofah (~> 2.3)
129
- railties (5.1.7)
130
- actionpack (= 5.1.7)
131
- activesupport (= 5.1.7)
132
- method_source
133
- rake (>= 0.8.7)
134
- thor (>= 0.18.1, < 2.0)
135
- rainbow (3.0.0)
136
- rake (12.3.3)
137
- regexp_parser (1.7.1)
138
- rexml (3.2.4)
139
- rsolr (2.1.0)
140
- builder (>= 2.1.2)
141
- faraday (>= 0.9.0)
142
- rspec-core (3.9.2)
143
- rspec-support (~> 3.9.3)
144
- rspec-expectations (3.9.2)
145
- diff-lcs (>= 1.2.0, < 2.0)
146
- rspec-support (~> 3.9.0)
147
- rspec-mocks (3.9.1)
148
- diff-lcs (>= 1.2.0, < 2.0)
149
- rspec-support (~> 3.9.0)
150
- rspec-rails (3.9.1)
151
- actionpack (>= 3.0)
152
- activesupport (>= 3.0)
153
- railties (>= 3.0)
154
- rspec-core (~> 3.9.0)
155
- rspec-expectations (~> 3.9.0)
156
- rspec-mocks (~> 3.9.0)
157
- rspec-support (~> 3.9.0)
158
- rspec-support (3.9.3)
159
- rubocop (0.87.1)
160
- parallel (~> 1.10)
161
- parser (>= 2.7.1.1)
162
- rainbow (>= 2.2.2, < 4.0)
163
- regexp_parser (>= 1.7)
164
- rexml
165
- rubocop-ast (>= 0.1.0, < 1.0)
166
- ruby-progressbar (~> 1.7)
167
- unicode-display_width (>= 1.4.0, < 2.0)
168
- rubocop-ast (0.1.0)
169
- parser (>= 2.7.0.1)
170
- rubocop-performance (1.7.0)
171
- rubocop (>= 0.82.0)
172
- rubocop-rspec (1.42.0)
173
- rubocop (>= 0.87.0)
174
- ruby-progressbar (1.10.1)
175
- sprockets (3.7.2)
176
- concurrent-ruby (~> 1.0)
177
- rack (> 1, < 3)
178
- sprockets-rails (3.2.1)
179
- actionpack (>= 4.0)
180
- activesupport (>= 4.0)
181
- sprockets (>= 3.0.0)
182
- sqlite3 (1.3.13)
183
- thor (1.0.1)
184
- thread_safe (0.3.6)
185
- tzinfo (1.2.7)
186
- thread_safe (~> 0.1)
187
- unicode-display_width (1.7.0)
188
- websocket-driver (0.6.5)
189
- websocket-extensions (>= 0.1.0)
190
- websocket-extensions (0.1.5)
191
-
192
- PLATFORMS
193
- ruby
194
-
195
- DEPENDENCIES
196
- infopark_component_cache!
197
- pry-byebug (~> 3.9)
198
- rails (~> 5.1.0)
199
- rspec-rails (~> 3.5)
200
- rubocop (~> 0.87.1)
201
- rubocop-performance (~> 1.7)
202
- rubocop-rspec (~> 1.30)
203
- sqlite3 (~> 1.3, >= 1.3.6)
204
-
205
- BUNDLED WITH
206
- 1.17.3