infopark_component_cache 3.1.0 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (55) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +1 -1
  3. data/.rubocop.yml +25 -0
  4. data/.rubocop_todo.yml +115 -0
  5. data/.ruby-version +1 -1
  6. data/.travis.yml +24 -0
  7. data/Gemfile +3 -1
  8. data/Gemfile.lock +214 -0
  9. data/Gemfile.rails50 +6 -0
  10. data/Gemfile.rails50.lock +206 -0
  11. data/Gemfile.rails51 +6 -0
  12. data/Gemfile.rails51.lock +206 -0
  13. data/README.md +1 -1
  14. data/Rakefile +7 -7
  15. data/app/helpers/infopark_component_cache_helper.rb +2 -2
  16. data/infopark_component_cache.gemspec +16 -13
  17. data/lib/engine.rb +6 -7
  18. data/lib/infopark_component_cache.rb +1 -2
  19. data/lib/infopark_component_cache/abstract_cache_storage.rb +4 -3
  20. data/lib/infopark_component_cache/cache_storage.rb +1 -0
  21. data/lib/infopark_component_cache/component.rb +9 -5
  22. data/lib/infopark_component_cache/component_cache.rb +31 -30
  23. data/lib/infopark_component_cache/consistency_guard.rb +1 -1
  24. data/lib/infopark_component_cache/delayed_guard.rb +7 -7
  25. data/lib/infopark_component_cache/guards/cms_state_guard.rb +6 -5
  26. data/lib/infopark_component_cache/guards/last_changed.rb +5 -2
  27. data/lib/infopark_component_cache/guards/obj_count.rb +3 -3
  28. data/lib/infopark_component_cache/guards/valid_from.rb +7 -10
  29. data/lib/infopark_component_cache/guards/valid_until.rb +7 -9
  30. data/lib/infopark_component_cache/key_generator.rb +3 -3
  31. data/lib/infopark_component_cache/version.rb +1 -1
  32. data/lib/infopark_component_cache/volatile_cache.rb +1 -1
  33. data/lib/infopark_component_cache/volatile_cache_storage.rb +1 -0
  34. data/spec/dummy/Rakefile +1 -1
  35. data/spec/dummy/config.ru +1 -1
  36. data/spec/dummy/config/application.rb +4 -2
  37. data/spec/dummy/config/boot.rb +5 -5
  38. data/spec/dummy/config/environment.rb +1 -1
  39. data/spec/dummy/config/environments/development.rb +1 -0
  40. data/spec/dummy/config/environments/test.rb +1 -0
  41. data/spec/dummy/config/initializers/secret_token.rb +1 -1
  42. data/spec/dummy/config/initializers/session_store.rb +1 -1
  43. data/spec/dummy/db/schema.rb +1 -2
  44. data/spec/lib/infopark_component_cache/component_cache_spec.rb +118 -0
  45. data/spec/lib/{delayed_guard_spec.rb → infopark_component_cache/delayed_guard_spec.rb} +3 -3
  46. data/spec/lib/{guards → infopark_component_cache/guards}/always_consistent_spec.rb +7 -6
  47. data/spec/lib/{guards → infopark_component_cache/guards}/last_changed_spec.rb +20 -12
  48. data/spec/lib/{guards → infopark_component_cache/guards}/never_consistent_spec.rb +7 -6
  49. data/spec/lib/{guards → infopark_component_cache/guards}/obj_count_spec.rb +20 -12
  50. data/spec/lib/{guards → infopark_component_cache/guards}/valid_from_spec.rb +20 -12
  51. data/spec/lib/{guards → infopark_component_cache/guards}/valid_until_spec.rb +23 -14
  52. data/spec/spec_helper.rb +8 -8
  53. data/spec/support/cache_switching_macros.rb +4 -4
  54. metadata +96 -40
  55. data/spec/lib/compontent_cache_spec.rb +0 -116
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 97f5a401ded8bb31c5e7539f39bdb7686fbbbb69
4
- data.tar.gz: 99d9b252e0e9b37b03c17aac61753a354d4d3b27
2
+ SHA256:
3
+ metadata.gz: 95914b2a0dba3b753ba29f2b5354900e63363b55a78578b8adff51e7e9c84897
4
+ data.tar.gz: 2cfcde9cdd285bc67889fe8d399a9ba2746fc4598827ba45aee52191ee2ffb07
5
5
  SHA512:
6
- metadata.gz: f4b0472ea662483d07b9d21b45c2be93e056a7cb76bf09f2b7b56423b0a4d00b93469c6a6babecfc79b1d2485aa38356765fbe46222c93518f2d9eefd249b38b
7
- data.tar.gz: 5b7b9f4e4d36c41e35b87ef8382d72ed7ecec73d39de1f7cb01155444131848d19d5093c3dd6d12adf34512139e9d02053748529d3f7a3da0c1ca74bb5e2158e
6
+ metadata.gz: afd4eae8a96ccbb11a10863d44407c3d9e05237ee9ef00ee7b5bdd658f158b3c011a7ff26d6b160b78291d149e60879a6937946d459efe545e34fa70d6e9c23b
7
+ data.tar.gz: 6854b1ee110d46278dd1c652c9c58807df8984f746b1502279abb7b1f17a8c6b2e305835ea01e70645957506b3ebf82350f2baa5e51cac48cd9eb591a065ad0c
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
@@ -15,3 +14,4 @@ spec/reports
15
14
  test/tmp
16
15
  test/version_tmp
17
16
  tmp
17
+ spec/dummy/log/test.log
data/.rubocop.yml ADDED
@@ -0,0 +1,25 @@
1
+ inherit_from: .rubocop_todo.yml
2
+
3
+ require:
4
+ - rubocop-rspec
5
+ - rubocop-performance
6
+
7
+ AllCops:
8
+ NewCops: enable
9
+
10
+ Style/StringLiterals:
11
+ EnforcedStyle: double_quotes
12
+
13
+ Style/StringLiteralsInInterpolation:
14
+ EnforcedStyle: double_quotes
15
+ Style/ClassCheck:
16
+ EnforcedStyle: kind_of?
17
+
18
+ Style/PercentLiteralDelimiters:
19
+ PreferredDelimiters:
20
+ "%i": "()"
21
+ "%w": "()"
22
+ "%W": "()"
23
+
24
+ RSpec/MessageSpies:
25
+ EnforcedStyle: receive
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,115 @@
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.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 3
10
+ # Configuration parameters: IgnoredMethods, Max.
11
+ Metrics/AbcSize:
12
+ Exclude:
13
+ - 'lib/infopark_component_cache/component_cache.rb'
14
+ - 'spec/support/cache_switching_macros.rb'
15
+
16
+ # Offense count: 8
17
+ # Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods.
18
+ # ExcludedMethods: refine
19
+ Metrics/BlockLength:
20
+ 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'
28
+
29
+ # Offense count: 3
30
+ # Configuration parameters: CountComments, Max, CountAsOne, ExcludedMethods.
31
+ Metrics/MethodLength:
32
+ Exclude:
33
+ - 'lib/infopark_component_cache/component_cache.rb'
34
+ - 'lib/infopark_component_cache/delayed_guard.rb'
35
+
36
+ # Offense count: 1
37
+ # Configuration parameters: EnforcedStyleForLeadingUnderscores.
38
+ # SupportedStylesForLeadingUnderscores: disallowed, required, optional
39
+ Naming/MemoizedInstanceVariableName:
40
+ Exclude:
41
+ - 'lib/infopark_component_cache/volatile_cache.rb'
42
+
43
+ # Offense count: 3
44
+ # Configuration parameters: Max.
45
+ RSpec/ExampleLength:
46
+ Exclude:
47
+ - 'spec/lib/infopark_component_cache/component_cache_spec.rb'
48
+ - 'spec/lib/infopark_component_cache/delayed_guard_spec.rb'
49
+
50
+ # Offense count: 5
51
+ # Configuration parameters: Max, AggregateFailuresByDefault.
52
+ RSpec/MultipleExpectations:
53
+ Exclude:
54
+ - 'spec/lib/infopark_component_cache/component_cache_spec.rb'
55
+ - 'spec/lib/infopark_component_cache/delayed_guard_spec.rb'
56
+
57
+ # Offense count: 1
58
+ # Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
59
+ RSpec/VerifiedDoubles:
60
+ Exclude:
61
+ - 'spec/lib/infopark_component_cache/component_cache_spec.rb'
62
+
63
+ # Offense count: 1
64
+ Style/ClassVars:
65
+ Exclude:
66
+ - 'lib/infopark_component_cache/volatile_cache_storage.rb'
67
+
68
+ # Offense count: 5
69
+ Style/Documentation:
70
+ Exclude:
71
+ - 'spec/**/*'
72
+ - 'test/**/*'
73
+ - 'app/helpers/infopark_component_cache_helper.rb'
74
+ - 'lib/engine.rb'
75
+ - 'lib/infopark_component_cache.rb'
76
+ - 'lib/infopark_component_cache/delayed_guard.rb'
77
+ - 'lib/infopark_component_cache/key_generator.rb'
78
+
79
+ # Offense count: 52
80
+ # Cop supports --auto-correct.
81
+ # Configuration parameters: EnforcedStyle.
82
+ # SupportedStyles: always, always_true, never
83
+ Style/FrozenStringLiteralComment:
84
+ Enabled: false
85
+
86
+ # Offense count: 2
87
+ # Cop supports --auto-correct.
88
+ # Configuration parameters: EnforcedStyle.
89
+ # SupportedStyles: use_perl_names, use_english_names
90
+ Style/SpecialGlobalVars:
91
+ Exclude:
92
+ - 'infopark_component_cache.gemspec'
93
+ - 'spec/dummy/config/boot.rb'
94
+
95
+ # Offense count: 4
96
+ # Cop supports --auto-correct.
97
+ # Configuration parameters: IgnoredMethods.
98
+ # IgnoredMethods: respond_to, define_method
99
+ Style/SymbolProc:
100
+ Exclude:
101
+ - 'spec/lib/infopark_component_cache/guards/last_changed_spec.rb'
102
+ - 'spec/lib/infopark_component_cache/guards/obj_count_spec.rb'
103
+ - 'spec/lib/infopark_component_cache/guards/valid_from_spec.rb'
104
+ - 'spec/lib/infopark_component_cache/guards/valid_until_spec.rb'
105
+
106
+ # Offense count: 4
107
+ # Cop supports --auto-correct.
108
+ # Configuration parameters: AutoCorrect, Max, AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, IgnoredPatterns.
109
+ # URISchemes: http, https
110
+ 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'
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.2.5
1
+ 2.6.6
data/.travis.yml ADDED
@@ -0,0 +1,24 @@
1
+ language: ruby
2
+ os: linux
3
+ dist: xenial
4
+ rvm:
5
+ - 2.6.6
6
+ - 2.5.3
7
+ gemfile:
8
+ - Gemfile
9
+ - Gemfile.rails51
10
+ - Gemfile.rails50
11
+ bundler_args: --without production
12
+ cache: bundler
13
+ env:
14
+ jobs:
15
+ - TASK='bundle exec rake spec'
16
+ jobs:
17
+ include:
18
+ - {}
19
+ - name: rubocop
20
+ script: bundle exec rubocop
21
+ script: $TASK
22
+ before_install:
23
+ - gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
24
+ - gem install bundler -v '< 2'
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
- source 'https://rubygems.org'
1
+ source "https://rubygems.org"
2
2
 
3
3
  # Specify your gem's dependencies in infopark_component_cache.gemspec
4
4
  gemspec
5
+
6
+ gem "rails", "~> 5.2.6"
data/Gemfile.lock ADDED
@@ -0,0 +1,214 @@
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.2.6)
12
+ actionpack (= 5.2.6)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailer (5.2.6)
16
+ actionpack (= 5.2.6)
17
+ actionview (= 5.2.6)
18
+ activejob (= 5.2.6)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.2.6)
22
+ actionview (= 5.2.6)
23
+ activesupport (= 5.2.6)
24
+ rack (~> 2.0, >= 2.0.8)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.2.6)
29
+ activesupport (= 5.2.6)
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.2.6)
35
+ activesupport (= 5.2.6)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.2.6)
38
+ activesupport (= 5.2.6)
39
+ activerecord (5.2.6)
40
+ activemodel (= 5.2.6)
41
+ activesupport (= 5.2.6)
42
+ arel (>= 9.0)
43
+ activestorage (5.2.6)
44
+ actionpack (= 5.2.6)
45
+ activerecord (= 5.2.6)
46
+ marcel (~> 1.0.0)
47
+ activesupport (5.2.6)
48
+ 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)
54
+ builder (3.2.4)
55
+ byebug (11.1.3)
56
+ coderay (1.1.3)
57
+ concurrent-ruby (1.1.8)
58
+ crass (1.0.6)
59
+ diff-lcs (1.4.4)
60
+ erubi (1.10.0)
61
+ faraday (1.0.1)
62
+ multipart-post (>= 1.2, < 3)
63
+ globalid (0.4.2)
64
+ activesupport (>= 4.2.0)
65
+ helpful_configuration (0.1.0)
66
+ i18n (1.8.10)
67
+ concurrent-ruby (~> 1.0)
68
+ infopark_fiona_connector (7.0.1.5.2.3.rc6)
69
+ activerecord (~> 5.0)
70
+ helpful_configuration (~> 0.1.0)
71
+ jquery-rails (~> 4.3)
72
+ json (~> 2.3)
73
+ maruku (~> 0.7)
74
+ mime-types (~> 3.1)
75
+ mysql_blob_streaming (~> 2.3)
76
+ rails (~> 5.0)
77
+ rake (~> 12.3)
78
+ rsolr (~> 2.1.0s)
79
+ jquery-rails (4.4.0)
80
+ rails-dom-testing (>= 1, < 3)
81
+ railties (>= 4.2.0)
82
+ thor (>= 0.14, < 2.0)
83
+ json (2.3.1)
84
+ loofah (2.9.1)
85
+ crass (~> 1.0.2)
86
+ nokogiri (>= 1.5.9)
87
+ mail (2.7.1)
88
+ mini_mime (>= 0.1.1)
89
+ marcel (1.0.1)
90
+ maruku (0.7.3)
91
+ method_source (1.0.0)
92
+ mime-types (3.3.1)
93
+ mime-types-data (~> 3.2015)
94
+ mime-types-data (3.2020.0512)
95
+ mini_mime (1.1.0)
96
+ mini_portile2 (2.5.1)
97
+ minitest (5.14.4)
98
+ multipart-post (2.1.1)
99
+ mysql2 (0.5.3)
100
+ mysql_blob_streaming (2.3.0)
101
+ mysql2 (>= 0.4.4, < 0.6.0)
102
+ nio4r (2.5.7)
103
+ nokogiri (1.11.5)
104
+ mini_portile2 (~> 2.5.0)
105
+ racc (~> 1.4)
106
+ parallel (1.19.2)
107
+ parser (2.7.1.4)
108
+ ast (~> 2.4.1)
109
+ pry (0.13.1)
110
+ coderay (~> 1.1)
111
+ method_source (~> 1.0)
112
+ pry-byebug (3.9.0)
113
+ byebug (~> 11.0)
114
+ pry (~> 0.13.0)
115
+ racc (1.5.2)
116
+ rack (2.2.3)
117
+ rack-test (1.1.0)
118
+ rack (>= 1.0, < 3)
119
+ rails (5.2.6)
120
+ actioncable (= 5.2.6)
121
+ actionmailer (= 5.2.6)
122
+ actionpack (= 5.2.6)
123
+ actionview (= 5.2.6)
124
+ activejob (= 5.2.6)
125
+ activemodel (= 5.2.6)
126
+ activerecord (= 5.2.6)
127
+ activestorage (= 5.2.6)
128
+ activesupport (= 5.2.6)
129
+ bundler (>= 1.3.0)
130
+ railties (= 5.2.6)
131
+ sprockets-rails (>= 2.0.0)
132
+ rails-dom-testing (2.0.3)
133
+ activesupport (>= 4.2.0)
134
+ nokogiri (>= 1.6)
135
+ rails-html-sanitizer (1.3.0)
136
+ loofah (~> 2.3)
137
+ railties (5.2.6)
138
+ actionpack (= 5.2.6)
139
+ activesupport (= 5.2.6)
140
+ method_source
141
+ rake (>= 0.8.7)
142
+ thor (>= 0.19.0, < 2.0)
143
+ rainbow (3.0.0)
144
+ rake (12.3.3)
145
+ regexp_parser (1.7.1)
146
+ rexml (3.2.5)
147
+ rsolr (2.1.0)
148
+ builder (>= 2.1.2)
149
+ faraday (>= 0.9.0)
150
+ rspec-core (3.9.2)
151
+ rspec-support (~> 3.9.3)
152
+ rspec-expectations (3.9.2)
153
+ diff-lcs (>= 1.2.0, < 2.0)
154
+ rspec-support (~> 3.9.0)
155
+ rspec-mocks (3.9.1)
156
+ diff-lcs (>= 1.2.0, < 2.0)
157
+ rspec-support (~> 3.9.0)
158
+ rspec-rails (3.9.1)
159
+ actionpack (>= 3.0)
160
+ activesupport (>= 3.0)
161
+ railties (>= 3.0)
162
+ rspec-core (~> 3.9.0)
163
+ rspec-expectations (~> 3.9.0)
164
+ rspec-mocks (~> 3.9.0)
165
+ rspec-support (~> 3.9.0)
166
+ rspec-support (3.9.3)
167
+ rubocop (0.87.1)
168
+ parallel (~> 1.10)
169
+ parser (>= 2.7.1.1)
170
+ rainbow (>= 2.2.2, < 4.0)
171
+ regexp_parser (>= 1.7)
172
+ rexml
173
+ rubocop-ast (>= 0.1.0, < 1.0)
174
+ ruby-progressbar (~> 1.7)
175
+ unicode-display_width (>= 1.4.0, < 2.0)
176
+ rubocop-ast (0.2.0)
177
+ parser (>= 2.7.0.1)
178
+ rubocop-performance (1.7.1)
179
+ rubocop (>= 0.82.0)
180
+ rubocop-rspec (1.42.0)
181
+ rubocop (>= 0.87.0)
182
+ ruby-progressbar (1.10.1)
183
+ sprockets (3.7.2)
184
+ concurrent-ruby (~> 1.0)
185
+ rack (> 1, < 3)
186
+ sprockets-rails (3.2.2)
187
+ actionpack (>= 4.0)
188
+ activesupport (>= 4.0)
189
+ sprockets (>= 3.0.0)
190
+ sqlite3 (1.4.2)
191
+ thor (1.1.0)
192
+ thread_safe (0.3.6)
193
+ tzinfo (1.2.9)
194
+ thread_safe (~> 0.1)
195
+ unicode-display_width (1.7.0)
196
+ websocket-driver (0.7.3)
197
+ websocket-extensions (>= 0.1.0)
198
+ websocket-extensions (0.1.5)
199
+
200
+ PLATFORMS
201
+ ruby
202
+
203
+ DEPENDENCIES
204
+ infopark_component_cache!
205
+ pry-byebug (~> 3.9)
206
+ rails (~> 5.2.6)
207
+ rspec-rails (~> 3.5)
208
+ rubocop (~> 0.87.1)
209
+ rubocop-performance (~> 1.7)
210
+ rubocop-rspec (~> 1.30)
211
+ sqlite3 (~> 1.3, >= 1.3.6)
212
+
213
+ BUNDLED WITH
214
+ 1.17.3
data/Gemfile.rails50 ADDED
@@ -0,0 +1,6 @@
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"
@@ -0,0 +1,206 @@
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.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 (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.4)
63
+ concurrent-ruby (~> 1.0)
64
+ infopark_fiona_connector (7.0.1.5.2.3.rc6)
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 (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)
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.0.7.2)
130
+ actionpack (= 5.0.7.2)
131
+ activesupport (= 5.0.7.2)
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.30.1)
173
+ rubocop (>= 0.60.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.0.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