activerecord-multi-tenant 1.0.4 → 1.2.0

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.
Files changed (45) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/CI.yml +63 -0
  3. data/.gitignore +2 -0
  4. data/.rspec +1 -0
  5. data/Appraisals +20 -47
  6. data/CHANGELOG.md +19 -0
  7. data/gemfiles/active_record_5.2.gemfile +3 -2
  8. data/gemfiles/active_record_6.0.gemfile +1 -1
  9. data/gemfiles/active_record_6.1.gemfile +8 -0
  10. data/gemfiles/active_record_7.0.gemfile +8 -0
  11. data/gemfiles/rails_5.2.gemfile +3 -2
  12. data/gemfiles/rails_6.0.gemfile +1 -1
  13. data/gemfiles/rails_6.1.gemfile +8 -0
  14. data/gemfiles/rails_7.0.gemfile +8 -0
  15. data/lib/activerecord-multi-tenant/arel_visitors_depth_first.rb +200 -0
  16. data/lib/activerecord-multi-tenant/controller_extensions.rb +2 -6
  17. data/lib/activerecord-multi-tenant/copy_from_client.rb +4 -4
  18. data/lib/activerecord-multi-tenant/migrations.rb +2 -2
  19. data/lib/activerecord-multi-tenant/model_extensions.rb +9 -9
  20. data/lib/activerecord-multi-tenant/multi_tenant.rb +1 -0
  21. data/lib/activerecord-multi-tenant/query_rewriter.rb +32 -75
  22. data/lib/activerecord-multi-tenant/sidekiq.rb +6 -1
  23. data/lib/activerecord-multi-tenant/version.rb +1 -1
  24. data/spec/activerecord-multi-tenant/controller_extensions_spec.rb +19 -24
  25. data/spec/activerecord-multi-tenant/model_extensions_spec.rb +58 -74
  26. data/spec/activerecord-multi-tenant/query_rewriter_spec.rb +25 -0
  27. data/spec/activerecord-multi-tenant/record_finding_spec.rb +36 -0
  28. data/spec/activerecord-multi-tenant/sidekiq_spec.rb +15 -4
  29. data/spec/schema.rb +28 -8
  30. data/spec/spec_helper.rb +1 -6
  31. metadata +13 -20
  32. data/.travis.yml +0 -57
  33. data/Gemfile.lock +0 -181
  34. data/gemfiles/active_record_5.1.gemfile +0 -15
  35. data/gemfiles/active_record_5.1.gemfile.lock +0 -180
  36. data/gemfiles/active_record_5.2.gemfile.lock +0 -188
  37. data/gemfiles/active_record_6.0.gemfile.lock +0 -198
  38. data/gemfiles/rails_4.2.gemfile +0 -16
  39. data/gemfiles/rails_4.2.gemfile.lock +0 -175
  40. data/gemfiles/rails_5.0.gemfile +0 -15
  41. data/gemfiles/rails_5.0.gemfile.lock +0 -180
  42. data/gemfiles/rails_5.1.gemfile +0 -15
  43. data/gemfiles/rails_5.1.gemfile.lock +0 -180
  44. data/gemfiles/rails_5.2.gemfile.lock +0 -188
  45. data/gemfiles/rails_6.0.gemfile.lock +0 -198
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activerecord-multi-tenant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.4
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Citus Data
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-10-30 00:00:00.000000000 Z
11
+ date: 2022-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: request_store
@@ -156,35 +156,28 @@ executables: []
156
156
  extensions: []
157
157
  extra_rdoc_files: []
158
158
  files:
159
+ - ".github/workflows/CI.yml"
159
160
  - ".gitignore"
160
- - ".travis.yml"
161
+ - ".rspec"
161
162
  - Appraisals
162
163
  - CHANGELOG.md
163
164
  - Gemfile
164
- - Gemfile.lock
165
165
  - LICENSE
166
166
  - README.md
167
167
  - Rakefile
168
168
  - activerecord-multi-tenant.gemspec
169
169
  - docker-compose.yml
170
170
  - gemfiles/.bundle/config
171
- - gemfiles/active_record_5.1.gemfile
172
- - gemfiles/active_record_5.1.gemfile.lock
173
171
  - gemfiles/active_record_5.2.gemfile
174
- - gemfiles/active_record_5.2.gemfile.lock
175
172
  - gemfiles/active_record_6.0.gemfile
176
- - gemfiles/active_record_6.0.gemfile.lock
177
- - gemfiles/rails_4.2.gemfile
178
- - gemfiles/rails_4.2.gemfile.lock
179
- - gemfiles/rails_5.0.gemfile
180
- - gemfiles/rails_5.0.gemfile.lock
181
- - gemfiles/rails_5.1.gemfile
182
- - gemfiles/rails_5.1.gemfile.lock
173
+ - gemfiles/active_record_6.1.gemfile
174
+ - gemfiles/active_record_7.0.gemfile
183
175
  - gemfiles/rails_5.2.gemfile
184
- - gemfiles/rails_5.2.gemfile.lock
185
176
  - gemfiles/rails_6.0.gemfile
186
- - gemfiles/rails_6.0.gemfile.lock
177
+ - gemfiles/rails_6.1.gemfile
178
+ - gemfiles/rails_7.0.gemfile
187
179
  - lib/activerecord-multi-tenant.rb
180
+ - lib/activerecord-multi-tenant/arel_visitors_depth_first.rb
188
181
  - lib/activerecord-multi-tenant/controller_extensions.rb
189
182
  - lib/activerecord-multi-tenant/copy_from_client.rb
190
183
  - lib/activerecord-multi-tenant/fast_truncate.rb
@@ -214,7 +207,7 @@ homepage: https://github.com/citusdata/activerecord-multi-tenant
214
207
  licenses:
215
208
  - MIT
216
209
  metadata: {}
217
- post_install_message:
210
+ post_install_message:
218
211
  rdoc_options: []
219
212
  require_paths:
220
213
  - lib
@@ -229,8 +222,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
229
222
  - !ruby/object:Gem::Version
230
223
  version: '0'
231
224
  requirements: []
232
- rubygems_version: 3.0.3
233
- signing_key:
225
+ rubygems_version: 3.2.32
226
+ signing_key:
234
227
  specification_version: 4
235
228
  summary: ActiveRecord/Rails integration for multi-tenant databases, in particular
236
229
  the Citus extension for PostgreSQL
data/.travis.yml DELETED
@@ -1,57 +0,0 @@
1
- sudo: required
2
- cache: bundler
3
-
4
- language: ruby
5
-
6
- rvm:
7
- - 2.2.7
8
- - 2.3.4
9
- - 2.4.1
10
- - 2.4.4
11
- - 2.6.4
12
-
13
- gemfile:
14
- - gemfiles/rails_4.2.gemfile
15
- - gemfiles/rails_5.0.gemfile
16
- - gemfiles/rails_5.1.gemfile
17
- - gemfiles/rails_5.2.gemfile
18
- - gemfiles/rails_6.0.gemfile
19
- - gemfiles/active_record_5.1.gemfile
20
- - gemfiles/active_record_5.2.gemfile
21
- - gemfiles/active_record_6.0.gemfile
22
-
23
- env:
24
- - PREPARED_STATEMENTS=0
25
- - PREPARED_STATEMENTS=1
26
-
27
- matrix:
28
- fast_finish: true
29
- exclude:
30
- - rvm: 2.2.7
31
- gemfile: gemfiles/rails_6.0.gemfile
32
- - rvm: 2.2.7
33
- gemfile: gemfiles/active_record_6.0.gemfile
34
- - rvm: 2.3.4
35
- gemfile: gemfiles/rails_6.0.gemfile
36
- - rvm: 2.3.4
37
- gemfile: gemfiles/active_record_6.0.gemfile
38
- - rvm: 2.4.1
39
- gemfile: gemfiles/rails_6.0.gemfile
40
- - rvm: 2.4.1
41
- gemfile: gemfiles/active_record_6.0.gemfile
42
- - rvm: 2.4.4
43
- gemfile: gemfiles/rails_6.0.gemfile
44
- - rvm: 2.4.4
45
- gemfile: gemfiles/active_record_6.0.gemfile
46
- - rvm: 2.6.4
47
- gemfile: gemfiles/rails_4.2.gemfile
48
-
49
-
50
- services:
51
- - docker
52
-
53
- before_install:
54
- - docker-compose up -d
55
-
56
- script:
57
- - bundle exec rake spec
data/Gemfile.lock DELETED
@@ -1,181 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- activerecord-multi-tenant (1.0.4)
5
- rails (>= 4.2)
6
- request_store (>= 1.0.5)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.2.3)
12
- actionpack (= 5.2.3)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.3)
16
- actionpack (= 5.2.3)
17
- actionview (= 5.2.3)
18
- activejob (= 5.2.3)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.2.3)
22
- actionview (= 5.2.3)
23
- activesupport (= 5.2.3)
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.2.3)
29
- activesupport (= 5.2.3)
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.3)
35
- activesupport (= 5.2.3)
36
- globalid (>= 0.3.6)
37
- activemodel (5.2.3)
38
- activesupport (= 5.2.3)
39
- activerecord (5.2.3)
40
- activemodel (= 5.2.3)
41
- activesupport (= 5.2.3)
42
- arel (>= 9.0)
43
- activestorage (5.2.3)
44
- actionpack (= 5.2.3)
45
- activerecord (= 5.2.3)
46
- marcel (~> 0.3.1)
47
- activesupport (5.2.3)
48
- concurrent-ruby (~> 1.0, >= 1.0.2)
49
- i18n (>= 0.7, < 2)
50
- minitest (~> 5.1)
51
- tzinfo (~> 1.1)
52
- appraisal (2.2.0)
53
- bundler
54
- rake
55
- thor (>= 0.14.0)
56
- arel (9.0.0)
57
- builder (3.2.3)
58
- byebug (11.0.1)
59
- coderay (1.1.2)
60
- concurrent-ruby (1.1.5)
61
- connection_pool (2.2.2)
62
- crass (1.0.4)
63
- diff-lcs (1.3)
64
- erubi (1.8.0)
65
- globalid (0.4.2)
66
- activesupport (>= 4.2.0)
67
- i18n (1.6.0)
68
- concurrent-ruby (~> 1.0)
69
- loofah (2.2.3)
70
- crass (~> 1.0.2)
71
- nokogiri (>= 1.5.9)
72
- mail (2.7.1)
73
- mini_mime (>= 0.1.1)
74
- marcel (0.3.3)
75
- mimemagic (~> 0.3.2)
76
- method_source (0.9.2)
77
- mimemagic (0.3.3)
78
- mini_mime (1.0.2)
79
- mini_portile2 (2.4.0)
80
- minitest (5.11.3)
81
- nio4r (2.5.2)
82
- nokogiri (1.10.4)
83
- mini_portile2 (~> 2.4.0)
84
- pg (1.1.4)
85
- pry (0.12.2)
86
- coderay (~> 1.1.0)
87
- method_source (~> 0.9.0)
88
- pry-byebug (3.7.0)
89
- byebug (~> 11.0)
90
- pry (~> 0.10)
91
- rack (2.0.7)
92
- rack-protection (2.0.5)
93
- rack
94
- rack-test (1.1.0)
95
- rack (>= 1.0, < 3)
96
- rails (5.2.3)
97
- actioncable (= 5.2.3)
98
- actionmailer (= 5.2.3)
99
- actionpack (= 5.2.3)
100
- actionview (= 5.2.3)
101
- activejob (= 5.2.3)
102
- activemodel (= 5.2.3)
103
- activerecord (= 5.2.3)
104
- activestorage (= 5.2.3)
105
- activesupport (= 5.2.3)
106
- bundler (>= 1.3.0)
107
- railties (= 5.2.3)
108
- sprockets-rails (>= 2.0.0)
109
- rails-dom-testing (2.0.3)
110
- activesupport (>= 4.2.0)
111
- nokogiri (>= 1.6)
112
- rails-html-sanitizer (1.0.4)
113
- loofah (~> 2.2, >= 2.2.2)
114
- railties (5.2.3)
115
- actionpack (= 5.2.3)
116
- activesupport (= 5.2.3)
117
- method_source
118
- rake (>= 0.8.7)
119
- thor (>= 0.19.0, < 2.0)
120
- rake (12.3.2)
121
- redis (4.1.2)
122
- request_store (1.4.1)
123
- rack (>= 1.4)
124
- rspec (3.8.0)
125
- rspec-core (~> 3.8.0)
126
- rspec-expectations (~> 3.8.0)
127
- rspec-mocks (~> 3.8.0)
128
- rspec-core (3.8.2)
129
- rspec-support (~> 3.8.0)
130
- rspec-expectations (3.8.4)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.8.0)
133
- rspec-mocks (3.8.1)
134
- diff-lcs (>= 1.2.0, < 2.0)
135
- rspec-support (~> 3.8.0)
136
- rspec-rails (3.8.2)
137
- actionpack (>= 3.0)
138
- activesupport (>= 3.0)
139
- railties (>= 3.0)
140
- rspec-core (~> 3.8.0)
141
- rspec-expectations (~> 3.8.0)
142
- rspec-mocks (~> 3.8.0)
143
- rspec-support (~> 3.8.0)
144
- rspec-support (3.8.2)
145
- sidekiq (5.2.7)
146
- connection_pool (~> 2.2, >= 2.2.2)
147
- rack (>= 1.5.0)
148
- rack-protection (>= 1.5.0)
149
- redis (>= 3.3.5, < 5)
150
- sprockets (4.0.0)
151
- concurrent-ruby (~> 1.0)
152
- rack (> 1, < 3)
153
- sprockets-rails (3.2.1)
154
- actionpack (>= 4.0)
155
- activesupport (>= 4.0)
156
- sprockets (>= 3.0.0)
157
- thor (0.20.3)
158
- thread_safe (0.3.6)
159
- tzinfo (1.2.5)
160
- thread_safe (~> 0.1)
161
- websocket-driver (0.7.1)
162
- websocket-extensions (>= 0.1.0)
163
- websocket-extensions (0.1.4)
164
-
165
- PLATFORMS
166
- ruby
167
-
168
- DEPENDENCIES
169
- activerecord-multi-tenant!
170
- appraisal
171
- pg
172
- pry
173
- pry-byebug
174
- rake
175
- rspec (>= 3.0)
176
- rspec-rails
177
- sidekiq
178
- thor
179
-
180
- BUNDLED WITH
181
- 1.17.2
@@ -1,15 +0,0 @@
1
- # This file was generated by Appraisal
2
-
3
- source "https://rubygems.org"
4
-
5
- gem "appraisal"
6
- gem "activerecord", "~> 5.1.0"
7
- gem "i18n", "~> 0.9.5"
8
- gem "nokogiri", "~> 1.7.1"
9
- gem "nio4r", "~> 2.3.1"
10
- gem "sprockets", "~> 3.7.1"
11
- gem "byebug", "~> 9.0.6"
12
- gem "rake", "12.0.0"
13
- gem "redis", "3.3.3"
14
-
15
- gemspec path: "../"
@@ -1,180 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- activerecord-multi-tenant (1.0.4)
5
- rails (>= 4.2)
6
- request_store (>= 1.0.5)
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
- appraisal (2.2.0)
49
- bundler
50
- rake
51
- thor (>= 0.14.0)
52
- arel (8.0.0)
53
- builder (3.2.3)
54
- byebug (9.0.6)
55
- coderay (1.1.2)
56
- concurrent-ruby (1.1.5)
57
- connection_pool (2.2.2)
58
- crass (1.0.4)
59
- diff-lcs (1.3)
60
- erubi (1.9.0)
61
- globalid (0.4.2)
62
- activesupport (>= 4.2.0)
63
- i18n (0.9.5)
64
- concurrent-ruby (~> 1.0)
65
- loofah (2.3.0)
66
- crass (~> 1.0.2)
67
- nokogiri (>= 1.5.9)
68
- mail (2.7.1)
69
- mini_mime (>= 0.1.1)
70
- method_source (0.9.2)
71
- mini_mime (1.0.2)
72
- mini_portile2 (2.1.0)
73
- minitest (5.12.2)
74
- nio4r (2.3.1)
75
- nokogiri (1.7.2)
76
- mini_portile2 (~> 2.1.0)
77
- pg (1.1.4)
78
- pry (0.12.2)
79
- coderay (~> 1.1.0)
80
- method_source (~> 0.9.0)
81
- pry-byebug (3.4.3)
82
- byebug (>= 9.0, < 9.1)
83
- pry (~> 0.10)
84
- rack (2.0.7)
85
- rack-protection (2.0.7)
86
- rack
87
- rack-test (1.1.0)
88
- rack (>= 1.0, < 3)
89
- rails (5.1.7)
90
- actioncable (= 5.1.7)
91
- actionmailer (= 5.1.7)
92
- actionpack (= 5.1.7)
93
- actionview (= 5.1.7)
94
- activejob (= 5.1.7)
95
- activemodel (= 5.1.7)
96
- activerecord (= 5.1.7)
97
- activesupport (= 5.1.7)
98
- bundler (>= 1.3.0)
99
- railties (= 5.1.7)
100
- sprockets-rails (>= 2.0.0)
101
- rails-dom-testing (2.0.3)
102
- activesupport (>= 4.2.0)
103
- nokogiri (>= 1.6)
104
- rails-html-sanitizer (1.3.0)
105
- loofah (~> 2.3)
106
- railties (5.1.7)
107
- actionpack (= 5.1.7)
108
- activesupport (= 5.1.7)
109
- method_source
110
- rake (>= 0.8.7)
111
- thor (>= 0.18.1, < 2.0)
112
- rake (12.0.0)
113
- redis (3.3.3)
114
- request_store (1.4.1)
115
- rack (>= 1.4)
116
- rspec (3.9.0)
117
- rspec-core (~> 3.9.0)
118
- rspec-expectations (~> 3.9.0)
119
- rspec-mocks (~> 3.9.0)
120
- rspec-core (3.9.0)
121
- rspec-support (~> 3.9.0)
122
- rspec-expectations (3.9.0)
123
- diff-lcs (>= 1.2.0, < 2.0)
124
- rspec-support (~> 3.9.0)
125
- rspec-mocks (3.9.0)
126
- diff-lcs (>= 1.2.0, < 2.0)
127
- rspec-support (~> 3.9.0)
128
- rspec-rails (3.9.0)
129
- actionpack (>= 3.0)
130
- activesupport (>= 3.0)
131
- railties (>= 3.0)
132
- rspec-core (~> 3.9.0)
133
- rspec-expectations (~> 3.9.0)
134
- rspec-mocks (~> 3.9.0)
135
- rspec-support (~> 3.9.0)
136
- rspec-support (3.9.0)
137
- sidekiq (5.0.4)
138
- concurrent-ruby (~> 1.0)
139
- connection_pool (~> 2.2, >= 2.2.0)
140
- rack-protection (>= 1.5.0)
141
- redis (~> 3.3, >= 3.3.3)
142
- sprockets (3.7.2)
143
- concurrent-ruby (~> 1.0)
144
- rack (> 1, < 3)
145
- sprockets-rails (3.2.1)
146
- actionpack (>= 4.0)
147
- activesupport (>= 4.0)
148
- sprockets (>= 3.0.0)
149
- thor (0.20.3)
150
- thread_safe (0.3.6)
151
- tzinfo (1.2.5)
152
- thread_safe (~> 0.1)
153
- websocket-driver (0.6.5)
154
- websocket-extensions (>= 0.1.0)
155
- websocket-extensions (0.1.4)
156
-
157
- PLATFORMS
158
- ruby
159
-
160
- DEPENDENCIES
161
- activerecord (~> 5.1.0)
162
- activerecord-multi-tenant!
163
- appraisal
164
- byebug (~> 9.0.6)
165
- i18n (~> 0.9.5)
166
- nio4r (~> 2.3.1)
167
- nokogiri (~> 1.7.1)
168
- pg
169
- pry
170
- pry-byebug
171
- rake (= 12.0.0)
172
- redis (= 3.3.3)
173
- rspec (>= 3.0)
174
- rspec-rails
175
- sidekiq
176
- sprockets (~> 3.7.1)
177
- thor
178
-
179
- BUNDLED WITH
180
- 1.17.3
@@ -1,188 +0,0 @@
1
- PATH
2
- remote: ..
3
- specs:
4
- activerecord-multi-tenant (1.0.4)
5
- rails (>= 4.2)
6
- request_store (>= 1.0.5)
7
-
8
- GEM
9
- remote: https://rubygems.org/
10
- specs:
11
- actioncable (5.2.3)
12
- actionpack (= 5.2.3)
13
- nio4r (~> 2.0)
14
- websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.3)
16
- actionpack (= 5.2.3)
17
- actionview (= 5.2.3)
18
- activejob (= 5.2.3)
19
- mail (~> 2.5, >= 2.5.4)
20
- rails-dom-testing (~> 2.0)
21
- actionpack (5.2.3)
22
- actionview (= 5.2.3)
23
- activesupport (= 5.2.3)
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.2.3)
29
- activesupport (= 5.2.3)
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.3)
35
- activesupport (= 5.2.3)
36
- globalid (>= 0.3.6)
37
- activemodel (5.2.3)
38
- activesupport (= 5.2.3)
39
- activerecord (5.2.3)
40
- activemodel (= 5.2.3)
41
- activesupport (= 5.2.3)
42
- arel (>= 9.0)
43
- activestorage (5.2.3)
44
- actionpack (= 5.2.3)
45
- activerecord (= 5.2.3)
46
- marcel (~> 0.3.1)
47
- activesupport (5.2.3)
48
- concurrent-ruby (~> 1.0, >= 1.0.2)
49
- i18n (>= 0.7, < 2)
50
- minitest (~> 5.1)
51
- tzinfo (~> 1.1)
52
- appraisal (2.2.0)
53
- bundler
54
- rake
55
- thor (>= 0.14.0)
56
- arel (9.0.0)
57
- builder (3.2.3)
58
- byebug (9.0.6)
59
- coderay (1.1.2)
60
- concurrent-ruby (1.1.5)
61
- connection_pool (2.2.2)
62
- crass (1.0.4)
63
- diff-lcs (1.3)
64
- erubi (1.9.0)
65
- globalid (0.4.2)
66
- activesupport (>= 4.2.0)
67
- i18n (0.9.5)
68
- concurrent-ruby (~> 1.0)
69
- loofah (2.3.0)
70
- crass (~> 1.0.2)
71
- nokogiri (>= 1.5.9)
72
- mail (2.7.1)
73
- mini_mime (>= 0.1.1)
74
- marcel (0.3.3)
75
- mimemagic (~> 0.3.2)
76
- method_source (0.9.2)
77
- mimemagic (0.3.3)
78
- mini_mime (1.0.2)
79
- mini_portile2 (2.1.0)
80
- minitest (5.12.2)
81
- nio4r (2.3.1)
82
- nokogiri (1.7.2)
83
- mini_portile2 (~> 2.1.0)
84
- pg (1.1.4)
85
- pry (0.12.2)
86
- coderay (~> 1.1.0)
87
- method_source (~> 0.9.0)
88
- pry-byebug (3.4.3)
89
- byebug (>= 9.0, < 9.1)
90
- pry (~> 0.10)
91
- rack (2.0.7)
92
- rack-protection (2.0.7)
93
- rack
94
- rack-test (1.1.0)
95
- rack (>= 1.0, < 3)
96
- rails (5.2.3)
97
- actioncable (= 5.2.3)
98
- actionmailer (= 5.2.3)
99
- actionpack (= 5.2.3)
100
- actionview (= 5.2.3)
101
- activejob (= 5.2.3)
102
- activemodel (= 5.2.3)
103
- activerecord (= 5.2.3)
104
- activestorage (= 5.2.3)
105
- activesupport (= 5.2.3)
106
- bundler (>= 1.3.0)
107
- railties (= 5.2.3)
108
- sprockets-rails (>= 2.0.0)
109
- rails-dom-testing (2.0.3)
110
- activesupport (>= 4.2.0)
111
- nokogiri (>= 1.6)
112
- rails-html-sanitizer (1.3.0)
113
- loofah (~> 2.3)
114
- railties (5.2.3)
115
- actionpack (= 5.2.3)
116
- activesupport (= 5.2.3)
117
- method_source
118
- rake (>= 0.8.7)
119
- thor (>= 0.19.0, < 2.0)
120
- rake (12.0.0)
121
- redis (3.3.3)
122
- request_store (1.4.1)
123
- rack (>= 1.4)
124
- rspec (3.9.0)
125
- rspec-core (~> 3.9.0)
126
- rspec-expectations (~> 3.9.0)
127
- rspec-mocks (~> 3.9.0)
128
- rspec-core (3.9.0)
129
- rspec-support (~> 3.9.0)
130
- rspec-expectations (3.9.0)
131
- diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.9.0)
133
- rspec-mocks (3.9.0)
134
- diff-lcs (>= 1.2.0, < 2.0)
135
- rspec-support (~> 3.9.0)
136
- rspec-rails (3.9.0)
137
- actionpack (>= 3.0)
138
- activesupport (>= 3.0)
139
- railties (>= 3.0)
140
- rspec-core (~> 3.9.0)
141
- rspec-expectations (~> 3.9.0)
142
- rspec-mocks (~> 3.9.0)
143
- rspec-support (~> 3.9.0)
144
- rspec-support (3.9.0)
145
- sidekiq (5.0.4)
146
- concurrent-ruby (~> 1.0)
147
- connection_pool (~> 2.2, >= 2.2.0)
148
- rack-protection (>= 1.5.0)
149
- redis (~> 3.3, >= 3.3.3)
150
- sprockets (3.7.2)
151
- concurrent-ruby (~> 1.0)
152
- rack (> 1, < 3)
153
- sprockets-rails (3.2.1)
154
- actionpack (>= 4.0)
155
- activesupport (>= 4.0)
156
- sprockets (>= 3.0.0)
157
- thor (0.20.3)
158
- thread_safe (0.3.6)
159
- tzinfo (1.2.5)
160
- thread_safe (~> 0.1)
161
- websocket-driver (0.7.1)
162
- websocket-extensions (>= 0.1.0)
163
- websocket-extensions (0.1.4)
164
-
165
- PLATFORMS
166
- ruby
167
-
168
- DEPENDENCIES
169
- activerecord (~> 5.2.0)
170
- activerecord-multi-tenant!
171
- appraisal
172
- byebug (~> 9.0.6)
173
- i18n (~> 0.9.5)
174
- nio4r (~> 2.3.1)
175
- nokogiri (~> 1.7.1)
176
- pg
177
- pry
178
- pry-byebug
179
- rake (= 12.0.0)
180
- redis (= 3.3.3)
181
- rspec (>= 3.0)
182
- rspec-rails
183
- sidekiq
184
- sprockets (~> 3.7.1)
185
- thor
186
-
187
- BUNDLED WITH
188
- 1.17.3