infopark_component_cache 3.2.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +0 -1
  3. data/.rubocop.yml +25 -0
  4. data/.rubocop_todo.yml +115 -0
  5. data/.travis.yml +24 -0
  6. data/Gemfile +3 -1
  7. data/Gemfile.lock +206 -0
  8. data/Gemfile.rails51 +6 -0
  9. data/Gemfile.rails51.lock +206 -0
  10. data/Rakefile +7 -7
  11. data/app/helpers/infopark_component_cache_helper.rb +2 -2
  12. data/infopark_component_cache.gemspec +13 -11
  13. data/lib/engine.rb +6 -7
  14. data/lib/infopark_component_cache.rb +1 -2
  15. data/lib/infopark_component_cache/abstract_cache_storage.rb +4 -3
  16. data/lib/infopark_component_cache/cache_storage.rb +1 -0
  17. data/lib/infopark_component_cache/component.rb +8 -6
  18. data/lib/infopark_component_cache/component_cache.rb +31 -30
  19. data/lib/infopark_component_cache/consistency_guard.rb +1 -1
  20. data/lib/infopark_component_cache/delayed_guard.rb +7 -7
  21. data/lib/infopark_component_cache/guards/cms_state_guard.rb +6 -5
  22. data/lib/infopark_component_cache/guards/last_changed.rb +5 -2
  23. data/lib/infopark_component_cache/guards/obj_count.rb +1 -1
  24. data/lib/infopark_component_cache/guards/valid_from.rb +7 -10
  25. data/lib/infopark_component_cache/guards/valid_until.rb +7 -9
  26. data/lib/infopark_component_cache/key_generator.rb +3 -3
  27. data/lib/infopark_component_cache/version.rb +1 -1
  28. data/lib/infopark_component_cache/volatile_cache.rb +1 -1
  29. data/lib/infopark_component_cache/volatile_cache_storage.rb +1 -0
  30. data/spec/dummy/Rakefile +1 -1
  31. data/spec/dummy/config.ru +1 -1
  32. data/spec/dummy/config/application.rb +1 -2
  33. data/spec/dummy/config/boot.rb +5 -5
  34. data/spec/dummy/config/environment.rb +1 -1
  35. data/spec/dummy/config/initializers/secret_token.rb +1 -1
  36. data/spec/dummy/config/initializers/session_store.rb +1 -1
  37. data/spec/dummy/db/schema.rb +1 -2
  38. data/spec/lib/infopark_component_cache/component_cache_spec.rb +118 -0
  39. data/spec/lib/{delayed_guard_spec.rb → infopark_component_cache/delayed_guard_spec.rb} +3 -3
  40. data/spec/lib/{guards → infopark_component_cache/guards}/always_consistent_spec.rb +7 -6
  41. data/spec/lib/{guards → infopark_component_cache/guards}/last_changed_spec.rb +20 -12
  42. data/spec/lib/{guards → infopark_component_cache/guards}/never_consistent_spec.rb +7 -6
  43. data/spec/lib/{guards → infopark_component_cache/guards}/obj_count_spec.rb +20 -12
  44. data/spec/lib/{guards → infopark_component_cache/guards}/valid_from_spec.rb +20 -12
  45. data/spec/lib/{guards → infopark_component_cache/guards}/valid_until_spec.rb +23 -14
  46. data/spec/spec_helper.rb +8 -8
  47. data/spec/support/cache_switching_macros.rb +4 -4
  48. metadata +71 -23
  49. data/spec/lib/compontent_cache_spec.rb +0 -116
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4db4c1be6eaddd061aca35c479f44a35e3f16412
4
- data.tar.gz: e752aa279d99336e004664651afa879fdcf2bea6
3
+ metadata.gz: a33fd68918f12f182fe8e3a809b012c920031c2f
4
+ data.tar.gz: 105462f50791c0db3a2d31ab37cefaea02f9b3a0
5
5
  SHA512:
6
- metadata.gz: 14ca4d95a52795ddfac422c79ac6fa6111f6e9c8f81d87cdb110c5739c1efe53f99ae41699b4f3775a40526785c7d8b13ff2fdc81f15c2d16473bb1980b36766
7
- data.tar.gz: 15c8f362612ae220f10b3d54fe42b5f5585c8ea5b05af348b94b02bb33ba5cb4d059bd74231fd1bdc393f77385543d1cc127256509478ebc43e67c44b6f15fba
6
+ metadata.gz: b2961f0aa8e780e4954acec2d66bb96089c62a4750f3b671dece41da526f5f1972420a365712f4345bb89b698851fabd8ceeeaacd324daa2939ffbb82d11ac1c
7
+ data.tar.gz: e7e120da8c8554de2eabbd85d0696f1d884a79ea7068ade83afc19e2275d4c37cfe83e260ad70093917b16f87f01d85d84053cb7c8fdb562057b99cfbcf40f25
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
@@ -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
@@ -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'
@@ -0,0 +1,24 @@
1
+ language: ruby
2
+ os: linux
3
+ dist: xenial
4
+ rvm:
5
+ - 2.6.6
6
+ - 2.5.3
7
+ - 2.4.5
8
+ gemfile:
9
+ - Gemfile
10
+ - Gemfile.rails51
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.0.0"
@@ -0,0 +1,206 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ infopark_component_cache (4.0.0)
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.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.9)
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
198
+ rails (~> 5.0.0)
199
+ rspec-rails (~> 3.5)
200
+ rubocop (~> 0.87.1)
201
+ rubocop-performance
202
+ rubocop-rspec
203
+ sqlite3 (~> 1.3.6)
204
+
205
+ BUNDLED WITH
206
+ 1.17.3
@@ -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.1.0"
@@ -0,0 +1,206 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ infopark_component_cache (3.2.0)
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
198
+ rails (~> 5.1.0)
199
+ rspec-rails (~> 3.5)
200
+ rubocop (~> 0.87.1)
201
+ rubocop-performance
202
+ rubocop-rspec
203
+ sqlite3 (~> 1.3.6)
204
+
205
+ BUNDLED WITH
206
+ 1.17.3