infopark_component_cache 4.2.0 → 5.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a7f5d5894bd85b775ac87b33c504eea84cee7dfc63e171b17f40f4fe033398c
4
- data.tar.gz: 8bf7997c54cf2b9adad6d64181552d93a3adc661abd2ef07fd11c00270bc3111
3
+ metadata.gz: 483ecf46119b0b36b422e0e5d2168f7f7f73b5c8717de83724be3ef99ccd453f
4
+ data.tar.gz: 6d337a8d224ca63190840b976f0beca554eed95c3ca71f96a3234f231e94a9e5
5
5
  SHA512:
6
- metadata.gz: 35d230b8c34a887bb94271a1de0924f54e87a44795e26bc1bba967c915dd219ee970d2bddf56e42b2c56b0ebbc73a4c2dea95cb3d3f07ebc862776ab3ffc3c3b
7
- data.tar.gz: c07d01b3792f3cc4cc9f9d7cc612363a1ec98252df913f4522a486c19641a026418e037fa09591f58c91a7c2e13affa787e1a68b256eadde2d1273f73c077fbd
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.7.5
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
+ - 3.1.2
6
+ - 3.0.4
5
7
  - 2.7.5
6
- - 2.6.6
7
- gemfile:
8
- - Gemfile
9
- - Gemfile.rails51
10
- - Gemfile.rails50
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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Infopark ComponentCache Changelog
2
2
 
3
+ ## 5.0.1
4
+
5
+ ### New
6
+
7
+ - Ruby 3 and 3.1 compatibility
8
+ - Ruby on Rails 6 compatibility
9
+
3
10
  ## 4.2.0
4
11
 
5
12
  ### New
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.2.6"
6
+ gem "rails", ">= 5.0", "< 7.0"
data/Gemfile.lock CHANGED
@@ -1,84 +1,101 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- infopark_component_cache (4.2.0)
5
- infopark_fiona_connector (~> 7.0.1.5.2.7.rc1)
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.2.7.1)
12
- actionpack (= 5.2.7.1)
11
+ actioncable (6.1.6.1)
12
+ actionpack (= 6.1.6.1)
13
+ activesupport (= 6.1.6.1)
13
14
  nio4r (~> 2.0)
14
15
  websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.7.1)
16
- actionpack (= 5.2.7.1)
17
- actionview (= 5.2.7.1)
18
- activejob (= 5.2.7.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.2.7.1)
22
- actionview (= 5.2.7.1)
23
- activesupport (= 5.2.7.1)
24
- rack (~> 2.0, >= 2.0.8)
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)
25
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.2.7.1)
29
- activesupport (= 5.2.7.1)
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
46
  erubi (~> 1.4)
32
47
  rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.7.1)
35
- activesupport (= 5.2.7.1)
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.2.7.1)
38
- activesupport (= 5.2.7.1)
39
- activerecord (5.2.7.1)
40
- activemodel (= 5.2.7.1)
41
- activesupport (= 5.2.7.1)
42
- arel (>= 9.0)
43
- activestorage (5.2.7.1)
44
- actionpack (= 5.2.7.1)
45
- activerecord (= 5.2.7.1)
46
- marcel (~> 1.0.0)
47
- activesupport (5.2.7.1)
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)
48
65
  concurrent-ruby (~> 1.0, >= 1.0.2)
49
- i18n (>= 0.7, < 2)
50
- minitest (~> 5.1)
51
- tzinfo (~> 1.1)
52
- arel (9.0.0)
53
- 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)
54
71
  builder (3.2.4)
55
72
  byebug (11.1.3)
56
73
  coderay (1.1.3)
57
74
  concurrent-ruby (1.1.10)
58
75
  crass (1.0.6)
59
- diff-lcs (1.4.4)
60
- erubi (1.10.0)
61
- faraday (2.2.0)
62
- faraday-net_http (~> 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)
63
80
  ruby2_keywords (>= 0.0.4)
64
- faraday-net_http (2.0.2)
81
+ faraday-net_http (3.0.0)
65
82
  globalid (1.0.0)
66
83
  activesupport (>= 5.0)
67
84
  helpful_configuration (0.1.0)
68
- i18n (1.10.0)
85
+ i18n (1.12.0)
69
86
  concurrent-ruby (~> 1.0)
70
- infopark_fiona_connector (7.0.1.5.2.7.rc1)
71
- activerecord (~> 5.0)
87
+ infopark_fiona_connector (7.0.1.6.1.6.rc1)
88
+ activerecord (>= 5.2, < 7.0)
72
89
  helpful_configuration (~> 0.1.0)
73
90
  json (~> 2.3)
74
91
  maruku (~> 0.7)
75
92
  mime-types (~> 3.1)
76
93
  mysql_blob_streaming (~> 2.5)
77
- rails (~> 5.0)
94
+ rails (>= 5.2, < 7.0)
78
95
  rake (~> 12.3)
79
96
  rsolr (~> 2.1.0s)
80
- json (2.6.1)
81
- loofah (2.17.0)
97
+ json (2.6.2)
98
+ loofah (2.18.0)
82
99
  crass (~> 1.0.2)
83
100
  nokogiri (>= 1.5.9)
84
101
  mail (2.7.1)
@@ -91,16 +108,16 @@ GEM
91
108
  mime-types-data (3.2022.0105)
92
109
  mini_mime (1.1.2)
93
110
  mini_portile2 (2.8.0)
94
- minitest (5.15.0)
111
+ minitest (5.16.3)
95
112
  mysql2 (0.5.4)
96
113
  mysql_blob_streaming (2.5.0)
97
114
  mysql2 (>= 0.4.4, < 0.6.0)
98
115
  nio4r (2.5.8)
99
- nokogiri (1.13.5)
116
+ nokogiri (1.13.8)
100
117
  mini_portile2 (~> 2.8.0)
101
118
  racc (~> 1.4)
102
- parallel (1.19.2)
103
- parser (2.7.1.4)
119
+ parallel (1.22.1)
120
+ parser (3.1.2.1)
104
121
  ast (~> 2.4.1)
105
122
  pry (0.13.1)
106
123
  coderay (~> 1.1)
@@ -109,90 +126,94 @@ GEM
109
126
  byebug (~> 11.0)
110
127
  pry (~> 0.13.0)
111
128
  racc (1.6.0)
112
- rack (2.2.3)
113
- rack-test (1.1.0)
114
- rack (>= 1.0, < 3)
115
- rails (5.2.7.1)
116
- actioncable (= 5.2.7.1)
117
- actionmailer (= 5.2.7.1)
118
- actionpack (= 5.2.7.1)
119
- actionview (= 5.2.7.1)
120
- activejob (= 5.2.7.1)
121
- activemodel (= 5.2.7.1)
122
- activerecord (= 5.2.7.1)
123
- activestorage (= 5.2.7.1)
124
- activesupport (= 5.2.7.1)
125
- bundler (>= 1.3.0)
126
- railties (= 5.2.7.1)
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)
127
146
  sprockets-rails (>= 2.0.0)
128
147
  rails-dom-testing (2.0.3)
129
148
  activesupport (>= 4.2.0)
130
149
  nokogiri (>= 1.6)
131
- rails-html-sanitizer (1.4.2)
150
+ rails-html-sanitizer (1.4.3)
132
151
  loofah (~> 2.3)
133
- railties (5.2.7.1)
134
- actionpack (= 5.2.7.1)
135
- activesupport (= 5.2.7.1)
152
+ railties (6.1.6.1)
153
+ actionpack (= 6.1.6.1)
154
+ activesupport (= 6.1.6.1)
136
155
  method_source
137
- rake (>= 0.8.7)
138
- thor (>= 0.19.0, < 2.0)
139
- rainbow (3.0.0)
156
+ rake (>= 12.2)
157
+ thor (~> 1.0)
158
+ rainbow (3.1.1)
140
159
  rake (12.3.3)
141
- regexp_parser (1.7.1)
160
+ regexp_parser (2.5.0)
142
161
  rexml (3.2.5)
143
162
  rsolr (2.1.0)
144
163
  builder (>= 2.1.2)
145
164
  faraday (>= 0.9.0)
146
- rspec-core (3.9.2)
147
- rspec-support (~> 3.9.3)
148
- rspec-expectations (3.9.2)
165
+ rspec-core (3.11.0)
166
+ rspec-support (~> 3.11.0)
167
+ rspec-expectations (3.11.0)
149
168
  diff-lcs (>= 1.2.0, < 2.0)
150
- rspec-support (~> 3.9.0)
151
- rspec-mocks (3.9.1)
169
+ rspec-support (~> 3.11.0)
170
+ rspec-mocks (3.11.1)
152
171
  diff-lcs (>= 1.2.0, < 2.0)
153
- rspec-support (~> 3.9.0)
154
- rspec-rails (3.9.1)
155
- actionpack (>= 3.0)
156
- activesupport (>= 3.0)
157
- railties (>= 3.0)
158
- rspec-core (~> 3.9.0)
159
- rspec-expectations (~> 3.9.0)
160
- rspec-mocks (~> 3.9.0)
161
- rspec-support (~> 3.9.0)
162
- rspec-support (3.9.3)
163
- 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)
164
184
  parallel (~> 1.10)
165
- parser (>= 2.7.1.1)
185
+ parser (>= 3.1.2.1)
166
186
  rainbow (>= 2.2.2, < 4.0)
167
- regexp_parser (>= 1.7)
168
- rexml
169
- 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)
170
190
  ruby-progressbar (~> 1.7)
171
- unicode-display_width (>= 1.4.0, < 2.0)
172
- rubocop-ast (0.2.0)
173
- parser (>= 2.7.0.1)
174
- rubocop-performance (1.7.1)
175
- rubocop (>= 0.82.0)
176
- rubocop-rspec (1.42.0)
177
- rubocop (>= 0.87.0)
178
- ruby-progressbar (1.10.1)
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)
179
200
  ruby2_keywords (0.0.5)
180
- sprockets (4.0.3)
201
+ sprockets (4.1.1)
181
202
  concurrent-ruby (~> 1.0)
182
203
  rack (> 1, < 3)
183
204
  sprockets-rails (3.4.2)
184
205
  actionpack (>= 5.2)
185
206
  activesupport (>= 5.2)
186
207
  sprockets (>= 3.0.0)
187
- sqlite3 (1.4.2)
208
+ sqlite3 (1.4.4)
188
209
  thor (1.2.1)
189
- thread_safe (0.3.6)
190
- tzinfo (1.2.9)
191
- thread_safe (~> 0.1)
192
- unicode-display_width (1.7.0)
210
+ tzinfo (2.0.5)
211
+ concurrent-ruby (~> 1.0)
212
+ unicode-display_width (2.2.0)
193
213
  websocket-driver (0.7.5)
194
214
  websocket-extensions (>= 0.1.0)
195
215
  websocket-extensions (0.1.5)
216
+ zeitwerk (2.6.0)
196
217
 
197
218
  PLATFORMS
198
219
  ruby
@@ -200,12 +221,12 @@ PLATFORMS
200
221
  DEPENDENCIES
201
222
  infopark_component_cache!
202
223
  pry-byebug (~> 3.9)
203
- rails (~> 5.2.6)
204
- rspec-rails (~> 3.5)
205
- rubocop (~> 0.87.1)
206
- rubocop-performance (~> 1.7)
207
- rubocop-rspec (~> 1.30)
224
+ rails (>= 5.0, < 7.0)
225
+ rspec-rails (~> 5.1)
226
+ rubocop
227
+ rubocop-performance
228
+ rubocop-rspec
208
229
  sqlite3 (~> 1.3, >= 1.3.6)
209
230
 
210
231
  BUNDLED WITH
211
- 1.17.3
232
+ 2.3.16
@@ -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.7.rc1"
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.2.0".freeze
2
+ VERSION = "5.0.1".freeze
3
3
  end
@@ -1,2 +1,2 @@
1
- class Obj
1
+ class Obj < RailsConnector::BasicObj
2
2
  end
@@ -13,8 +13,9 @@ module Dummy
13
13
  config.encoding = "utf-8"
14
14
  config.filter_parameters += [:password]
15
15
  config.active_support.escape_html_entities_in_json = true
16
- if Rails::VERSION::MAJOR == 5 && Rails::VERSION::MINOR == 2
16
+ if Rails::VERSION::MAJOR >= 5 && Rails::VERSION::MINOR == 2
17
17
  config.active_record.sqlite3.represent_boolean_as_integer = true
18
18
  end
19
+ config.autoloader = :zeitwerk
19
20
  end
20
21
  end
@@ -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
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.2.0
4
+ version: 5.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tomasz Przedmojski, sveninfo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-05 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.7.rc1
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.7.rc1
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
@@ -144,10 +150,6 @@ files:
144
150
  - CHANGELOG.md
145
151
  - Gemfile
146
152
  - Gemfile.lock
147
- - Gemfile.rails50
148
- - Gemfile.rails50.lock
149
- - Gemfile.rails51
150
- - Gemfile.rails51.lock
151
153
  - LICENSE.txt
152
154
  - README.md
153
155
  - Rakefile
@@ -209,7 +211,8 @@ files:
209
211
  homepage: http://infopark.com
210
212
  licenses:
211
213
  - LGPL-3.0
212
- metadata: {}
214
+ metadata:
215
+ rubygems_mfa_required: 'true'
213
216
  post_install_message:
214
217
  rdoc_options: []
215
218
  require_paths:
@@ -218,44 +221,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
218
221
  requirements:
219
222
  - - ">="
220
223
  - !ruby/object:Gem::Version
221
- version: '0'
224
+ version: '2.6'
222
225
  required_rubygems_version: !ruby/object:Gem::Requirement
223
226
  requirements:
224
227
  - - ">="
225
228
  - !ruby/object:Gem::Version
226
229
  version: '0'
227
230
  requirements: []
228
- rubygems_version: 3.1.6
231
+ rubygems_version: 3.3.7
229
232
  signing_key:
230
233
  specification_version: 4
231
234
  summary: Fragment caching with automatic dependency resolution and cache invalidation.
232
- test_files:
233
- - spec/dummy/Rakefile
234
- - spec/dummy/app/assets/config/manifest.js
235
- - spec/dummy/app/controllers/application_controller.rb
236
- - spec/dummy/app/models/obj.rb
237
- - spec/dummy/config.ru
238
- - spec/dummy/config/application.rb
239
- - spec/dummy/config/boot.rb
240
- - spec/dummy/config/database.yml
241
- - spec/dummy/config/environment.rb
242
- - spec/dummy/config/environments/development.rb
243
- - spec/dummy/config/environments/test.rb
244
- - spec/dummy/config/initializers/secret_token.rb
245
- - spec/dummy/config/initializers/session_store.rb
246
- - spec/dummy/config/initializers/wrap_parameters.rb
247
- - spec/dummy/config/routes.rb
248
- - spec/dummy/db/cms.sqlite3
249
- - spec/dummy/db/development.sqlite3
250
- - spec/dummy/db/schema.rb
251
- - spec/dummy/log/.gitkeep
252
- - spec/lib/infopark_component_cache/component_cache_spec.rb
253
- - spec/lib/infopark_component_cache/delayed_guard_spec.rb
254
- - spec/lib/infopark_component_cache/guards/always_consistent_spec.rb
255
- - spec/lib/infopark_component_cache/guards/last_changed_spec.rb
256
- - spec/lib/infopark_component_cache/guards/never_consistent_spec.rb
257
- - spec/lib/infopark_component_cache/guards/obj_count_spec.rb
258
- - spec/lib/infopark_component_cache/guards/valid_from_spec.rb
259
- - spec/lib/infopark_component_cache/guards/valid_until_spec.rb
260
- - spec/spec_helper.rb
261
- - spec/support/cache_switching_macros.rb
235
+ test_files: []
data/Gemfile.rails50 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.0.0"
data/Gemfile.rails50.lock DELETED
@@ -1,203 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- infopark_component_cache (4.2.0)
5
- infopark_fiona_connector (~> 7.0.1.5.2.7.rc1)
6
- rails (~> 5.0)
7
-
8
- GEM
9
- remote: https://rubygems.org/
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)
19
- mail (~> 2.5, >= 2.5.4)
20
- 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)
26
- 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)
30
- builder (~> 3.1)
31
- erubis (~> 2.7.0)
32
- 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)
36
- 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)
44
- 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)
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.3)
56
- erubis (2.7.0)
57
- faraday (2.2.0)
58
- faraday-net_http (~> 2.0)
59
- ruby2_keywords (>= 0.0.4)
60
- faraday-net_http (2.0.2)
61
- globalid (0.4.2)
62
- activesupport (>= 4.2.0)
63
- helpful_configuration (0.1.0)
64
- i18n (1.8.4)
65
- concurrent-ruby (~> 1.0)
66
- infopark_fiona_connector (7.0.1.5.2.7.rc1)
67
- activerecord (~> 5.0)
68
- helpful_configuration (~> 0.1.0)
69
- json (~> 2.3)
70
- maruku (~> 0.7)
71
- mime-types (~> 3.1)
72
- mysql_blob_streaming (~> 2.5)
73
- rails (~> 5.0)
74
- rake (~> 12.3)
75
- rsolr (~> 2.1.0s)
76
- json (2.6.1)
77
- loofah (2.6.0)
78
- crass (~> 1.0.2)
79
- nokogiri (>= 1.5.9)
80
- mail (2.7.1)
81
- mini_mime (>= 0.1.1)
82
- maruku (0.7.3)
83
- method_source (1.0.0)
84
- mime-types (3.4.1)
85
- mime-types-data (~> 3.2015)
86
- mime-types-data (3.2022.0105)
87
- mini_mime (1.0.2)
88
- mini_portile2 (2.4.0)
89
- minitest (5.14.1)
90
- mysql2 (0.5.4)
91
- mysql_blob_streaming (2.5.0)
92
- mysql2 (>= 0.4.4, < 0.6.0)
93
- nio4r (2.5.2)
94
- nokogiri (1.10.10)
95
- mini_portile2 (~> 2.4.0)
96
- parallel (1.19.2)
97
- parser (2.7.1.4)
98
- ast (~> 2.4.1)
99
- pry (0.13.1)
100
- coderay (~> 1.1)
101
- method_source (~> 1.0)
102
- pry-byebug (3.9.0)
103
- byebug (~> 11.0)
104
- pry (~> 0.13.0)
105
- rack (2.2.3)
106
- rack-test (0.6.3)
107
- rack (>= 1.0)
108
- rails (5.0.7.2)
109
- actioncable (= 5.0.7.2)
110
- actionmailer (= 5.0.7.2)
111
- actionpack (= 5.0.7.2)
112
- actionview (= 5.0.7.2)
113
- activejob (= 5.0.7.2)
114
- activemodel (= 5.0.7.2)
115
- activerecord (= 5.0.7.2)
116
- activesupport (= 5.0.7.2)
117
- bundler (>= 1.3.0)
118
- railties (= 5.0.7.2)
119
- sprockets-rails (>= 2.0.0)
120
- rails-dom-testing (2.0.3)
121
- activesupport (>= 4.2.0)
122
- nokogiri (>= 1.6)
123
- rails-html-sanitizer (1.3.0)
124
- loofah (~> 2.3)
125
- railties (5.0.7.2)
126
- actionpack (= 5.0.7.2)
127
- activesupport (= 5.0.7.2)
128
- method_source
129
- rake (>= 0.8.7)
130
- thor (>= 0.18.1, < 2.0)
131
- rainbow (3.0.0)
132
- rake (12.3.3)
133
- regexp_parser (1.7.1)
134
- rexml (3.2.4)
135
- rsolr (2.1.0)
136
- builder (>= 2.1.2)
137
- faraday (>= 0.9.0)
138
- rspec-core (3.9.2)
139
- rspec-support (~> 3.9.3)
140
- rspec-expectations (3.9.2)
141
- diff-lcs (>= 1.2.0, < 2.0)
142
- rspec-support (~> 3.9.0)
143
- rspec-mocks (3.9.1)
144
- diff-lcs (>= 1.2.0, < 2.0)
145
- rspec-support (~> 3.9.0)
146
- rspec-rails (3.9.1)
147
- actionpack (>= 3.0)
148
- activesupport (>= 3.0)
149
- railties (>= 3.0)
150
- rspec-core (~> 3.9.0)
151
- rspec-expectations (~> 3.9.0)
152
- rspec-mocks (~> 3.9.0)
153
- rspec-support (~> 3.9.0)
154
- rspec-support (3.9.3)
155
- rubocop (0.87.1)
156
- parallel (~> 1.10)
157
- parser (>= 2.7.1.1)
158
- rainbow (>= 2.2.2, < 4.0)
159
- regexp_parser (>= 1.7)
160
- rexml
161
- rubocop-ast (>= 0.1.0, < 1.0)
162
- ruby-progressbar (~> 1.7)
163
- unicode-display_width (>= 1.4.0, < 2.0)
164
- rubocop-ast (0.1.0)
165
- parser (>= 2.7.0.1)
166
- rubocop-performance (1.7.0)
167
- rubocop (>= 0.82.0)
168
- rubocop-rspec (1.30.1)
169
- rubocop (>= 0.60.0)
170
- ruby-progressbar (1.10.1)
171
- ruby2_keywords (0.0.5)
172
- sprockets (3.7.2)
173
- concurrent-ruby (~> 1.0)
174
- rack (> 1, < 3)
175
- sprockets-rails (3.2.1)
176
- actionpack (>= 4.0)
177
- activesupport (>= 4.0)
178
- sprockets (>= 3.0.0)
179
- sqlite3 (1.3.13)
180
- thor (1.0.1)
181
- thread_safe (0.3.6)
182
- tzinfo (1.2.7)
183
- thread_safe (~> 0.1)
184
- unicode-display_width (1.7.0)
185
- websocket-driver (0.6.5)
186
- websocket-extensions (>= 0.1.0)
187
- websocket-extensions (0.1.5)
188
-
189
- PLATFORMS
190
- ruby
191
-
192
- DEPENDENCIES
193
- infopark_component_cache!
194
- pry-byebug (~> 3.9)
195
- rails (~> 5.0.0)
196
- rspec-rails (~> 3.5)
197
- rubocop (~> 0.87.1)
198
- rubocop-performance (~> 1.7)
199
- rubocop-rspec (~> 1.30)
200
- sqlite3 (~> 1.3, >= 1.3.6)
201
-
202
- BUNDLED WITH
203
- 1.17.3
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,203 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- infopark_component_cache (4.2.0)
5
- infopark_fiona_connector (~> 7.0.1.5.2.7.rc1)
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 (2.2.0)
58
- faraday-net_http (~> 2.0)
59
- ruby2_keywords (>= 0.0.4)
60
- faraday-net_http (2.0.2)
61
- globalid (0.4.2)
62
- activesupport (>= 4.2.0)
63
- helpful_configuration (0.1.0)
64
- i18n (1.8.4)
65
- concurrent-ruby (~> 1.0)
66
- infopark_fiona_connector (7.0.1.5.2.7.rc1)
67
- activerecord (~> 5.0)
68
- helpful_configuration (~> 0.1.0)
69
- json (~> 2.3)
70
- maruku (~> 0.7)
71
- mime-types (~> 3.1)
72
- mysql_blob_streaming (~> 2.5)
73
- rails (~> 5.0)
74
- rake (~> 12.3)
75
- rsolr (~> 2.1.0s)
76
- json (2.6.1)
77
- loofah (2.6.0)
78
- crass (~> 1.0.2)
79
- nokogiri (>= 1.5.9)
80
- mail (2.7.1)
81
- mini_mime (>= 0.1.1)
82
- maruku (0.7.3)
83
- method_source (1.0.0)
84
- mime-types (3.4.1)
85
- mime-types-data (~> 3.2015)
86
- mime-types-data (3.2022.0105)
87
- mini_mime (1.0.2)
88
- mini_portile2 (2.4.0)
89
- minitest (5.14.1)
90
- mysql2 (0.5.4)
91
- mysql_blob_streaming (2.5.0)
92
- mysql2 (>= 0.4.4, < 0.6.0)
93
- nio4r (2.5.2)
94
- nokogiri (1.10.10)
95
- mini_portile2 (~> 2.4.0)
96
- parallel (1.19.2)
97
- parser (2.7.1.4)
98
- ast (~> 2.4.1)
99
- pry (0.13.1)
100
- coderay (~> 1.1)
101
- method_source (~> 1.0)
102
- pry-byebug (3.9.0)
103
- byebug (~> 11.0)
104
- pry (~> 0.13.0)
105
- rack (2.2.3)
106
- rack-test (1.1.0)
107
- rack (>= 1.0, < 3)
108
- rails (5.1.7)
109
- actioncable (= 5.1.7)
110
- actionmailer (= 5.1.7)
111
- actionpack (= 5.1.7)
112
- actionview (= 5.1.7)
113
- activejob (= 5.1.7)
114
- activemodel (= 5.1.7)
115
- activerecord (= 5.1.7)
116
- activesupport (= 5.1.7)
117
- bundler (>= 1.3.0)
118
- railties (= 5.1.7)
119
- sprockets-rails (>= 2.0.0)
120
- rails-dom-testing (2.0.3)
121
- activesupport (>= 4.2.0)
122
- nokogiri (>= 1.6)
123
- rails-html-sanitizer (1.3.0)
124
- loofah (~> 2.3)
125
- railties (5.1.7)
126
- actionpack (= 5.1.7)
127
- activesupport (= 5.1.7)
128
- method_source
129
- rake (>= 0.8.7)
130
- thor (>= 0.18.1, < 2.0)
131
- rainbow (3.0.0)
132
- rake (12.3.3)
133
- regexp_parser (1.7.1)
134
- rexml (3.2.4)
135
- rsolr (2.1.0)
136
- builder (>= 2.1.2)
137
- faraday (>= 0.9.0)
138
- rspec-core (3.9.2)
139
- rspec-support (~> 3.9.3)
140
- rspec-expectations (3.9.2)
141
- diff-lcs (>= 1.2.0, < 2.0)
142
- rspec-support (~> 3.9.0)
143
- rspec-mocks (3.9.1)
144
- diff-lcs (>= 1.2.0, < 2.0)
145
- rspec-support (~> 3.9.0)
146
- rspec-rails (3.9.1)
147
- actionpack (>= 3.0)
148
- activesupport (>= 3.0)
149
- railties (>= 3.0)
150
- rspec-core (~> 3.9.0)
151
- rspec-expectations (~> 3.9.0)
152
- rspec-mocks (~> 3.9.0)
153
- rspec-support (~> 3.9.0)
154
- rspec-support (3.9.3)
155
- rubocop (0.87.1)
156
- parallel (~> 1.10)
157
- parser (>= 2.7.1.1)
158
- rainbow (>= 2.2.2, < 4.0)
159
- regexp_parser (>= 1.7)
160
- rexml
161
- rubocop-ast (>= 0.1.0, < 1.0)
162
- ruby-progressbar (~> 1.7)
163
- unicode-display_width (>= 1.4.0, < 2.0)
164
- rubocop-ast (0.1.0)
165
- parser (>= 2.7.0.1)
166
- rubocop-performance (1.7.0)
167
- rubocop (>= 0.82.0)
168
- rubocop-rspec (1.42.0)
169
- rubocop (>= 0.87.0)
170
- ruby-progressbar (1.10.1)
171
- ruby2_keywords (0.0.5)
172
- sprockets (3.7.2)
173
- concurrent-ruby (~> 1.0)
174
- rack (> 1, < 3)
175
- sprockets-rails (3.2.1)
176
- actionpack (>= 4.0)
177
- activesupport (>= 4.0)
178
- sprockets (>= 3.0.0)
179
- sqlite3 (1.3.13)
180
- thor (1.0.1)
181
- thread_safe (0.3.6)
182
- tzinfo (1.2.7)
183
- thread_safe (~> 0.1)
184
- unicode-display_width (1.7.0)
185
- websocket-driver (0.6.5)
186
- websocket-extensions (>= 0.1.0)
187
- websocket-extensions (0.1.5)
188
-
189
- PLATFORMS
190
- ruby
191
-
192
- DEPENDENCIES
193
- infopark_component_cache!
194
- pry-byebug (~> 3.9)
195
- rails (~> 5.1.0)
196
- rspec-rails (~> 3.5)
197
- rubocop (~> 0.87.1)
198
- rubocop-performance (~> 1.7)
199
- rubocop-rspec (~> 1.30)
200
- sqlite3 (~> 1.3, >= 1.3.6)
201
-
202
- BUNDLED WITH
203
- 1.17.3