activerecord-multi-tenant 1.0.4 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (35) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -28
  3. data/Appraisals +6 -49
  4. data/Gemfile.lock +77 -61
  5. data/gemfiles/active_record_5.2.gemfile +2 -1
  6. data/gemfiles/active_record_5.2.gemfile.lock +38 -38
  7. data/gemfiles/active_record_6.0.gemfile +1 -1
  8. data/gemfiles/active_record_6.0.gemfile.lock +95 -95
  9. data/gemfiles/rails_5.2.gemfile +2 -1
  10. data/gemfiles/rails_5.2.gemfile.lock +38 -38
  11. data/gemfiles/rails_6.0.gemfile +1 -1
  12. data/gemfiles/rails_6.0.gemfile.lock +95 -95
  13. data/lib/activerecord-multi-tenant/controller_extensions.rb +2 -6
  14. data/lib/activerecord-multi-tenant/copy_from_client.rb +2 -2
  15. data/lib/activerecord-multi-tenant/migrations.rb +2 -2
  16. data/lib/activerecord-multi-tenant/model_extensions.rb +3 -9
  17. data/lib/activerecord-multi-tenant/multi_tenant.rb +1 -0
  18. data/lib/activerecord-multi-tenant/query_rewriter.rb +22 -73
  19. data/lib/activerecord-multi-tenant/sidekiq.rb +2 -1
  20. data/lib/activerecord-multi-tenant/version.rb +1 -1
  21. data/spec/activerecord-multi-tenant/controller_extensions_spec.rb +19 -24
  22. data/spec/activerecord-multi-tenant/model_extensions_spec.rb +6 -30
  23. data/spec/activerecord-multi-tenant/query_rewriter_spec.rb +8 -0
  24. data/spec/activerecord-multi-tenant/sidekiq_spec.rb +4 -4
  25. data/spec/schema.rb +1 -4
  26. data/spec/spec_helper.rb +1 -6
  27. metadata +6 -14
  28. data/gemfiles/active_record_5.1.gemfile +0 -15
  29. data/gemfiles/active_record_5.1.gemfile.lock +0 -180
  30. data/gemfiles/rails_4.2.gemfile +0 -16
  31. data/gemfiles/rails_4.2.gemfile.lock +0 -175
  32. data/gemfiles/rails_5.0.gemfile +0 -15
  33. data/gemfiles/rails_5.0.gemfile.lock +0 -180
  34. data/gemfiles/rails_5.1.gemfile +0 -15
  35. data/gemfiles/rails_5.1.gemfile.lock +0 -180
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4ba6283cdc0a3a6156de1ed6e48674650769dd98a563175e3f0f6ad145e948a1
4
- data.tar.gz: 4e60b1920f1b14a6707adf28fbd15135830a46a8085c07912fb5b190d7b677e9
3
+ metadata.gz: 7125d7827e44ce5347a6391c97e740f74f1b20e0295ee1d88d80750c5d04c222
4
+ data.tar.gz: 5acb0ae83aef24141696b1683f759bed2ca7f5d8b6f9354b2ff9104f8c4d2f9c
5
5
  SHA512:
6
- metadata.gz: 84f4b35e8525f88193b08c719abce5c75d085bbfca9f517cc090d0a604cd435a23bf565c66e91c1cae30e45c06c92d7407829a0659a88843757baa54e0e6dd49
7
- data.tar.gz: 3495d94157cc8dc9528d55405eca44fd7c077fbd06bf841b915cc02e8d2940abff626d652802ff15b23f8a9192d8af76cbd038128be1a2a0369fba2f213458d0
6
+ metadata.gz: 761e37256c39851708bf4963a679e7d77f1f4f8c7d3a51d187bc5b6943d311caf75f9dbbd4ad5fd19a410940f245697c823c215edd38735599554b7685a1600d
7
+ data.tar.gz: 7e5063cd44d333a83afe565b713afc0af5d7e6aee2f849bd60afbb903e6aa11c4019e321019bccde91628051a558eca6e763f944b7dab327363949eabf76b27f
@@ -4,19 +4,13 @@ cache: bundler
4
4
  language: ruby
5
5
 
6
6
  rvm:
7
- - 2.2.7
8
- - 2.3.4
9
- - 2.4.1
10
- - 2.4.4
7
+ - 2.5.8
11
8
  - 2.6.4
9
+ - 2.7.1
12
10
 
13
11
  gemfile:
14
- - gemfiles/rails_4.2.gemfile
15
- - gemfiles/rails_5.0.gemfile
16
- - gemfiles/rails_5.1.gemfile
17
12
  - gemfiles/rails_5.2.gemfile
18
13
  - gemfiles/rails_6.0.gemfile
19
- - gemfiles/active_record_5.1.gemfile
20
14
  - gemfiles/active_record_5.2.gemfile
21
15
  - gemfiles/active_record_6.0.gemfile
22
16
 
@@ -26,32 +20,13 @@ env:
26
20
 
27
21
  matrix:
28
22
  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
23
 
50
24
  services:
51
25
  - docker
52
26
 
53
27
  before_install:
54
28
  - docker-compose up -d
29
+ - gem install bundler -v 2.1.4
55
30
 
56
31
  script:
57
32
  - bundle exec rake spec
data/Appraisals CHANGED
@@ -1,61 +1,17 @@
1
- appraise 'rails-4.2' do
2
- gem 'rails', '~> 4.2.8'
3
- gem 'i18n', '~> 0.9.5'
4
- gem 'nokogiri', '~> 1.7.1'
5
- gem 'nio4r', '~> 2.3.1'
6
- gem 'sprockets', '~> 3.7.1'
7
- gem 'byebug', '~> 9.0.6'
8
- gem 'rake', '12.0.0'
9
- gem 'redis', '3.3.3'
10
- gem 'pg', '~> 0.15'
11
- end
12
-
13
- appraise 'rails-5.0' do
14
- gem 'rails', '~> 5.0.1'
15
- gem 'i18n', '~> 0.9.5'
16
- gem 'nokogiri', '~> 1.7.1'
17
- gem 'nio4r', '~> 2.3.1'
18
- gem 'sprockets', '~> 3.7.1'
19
- gem 'byebug', '~> 9.0.6'
20
- gem 'rake', '12.0.0'
21
- gem 'redis', '3.3.3'
22
- end
23
-
24
- appraise 'rails-5.1' do
25
- gem 'rails', '~> 5.1.0'
26
- gem 'i18n', '~> 0.9.5'
27
- gem 'nokogiri', '~> 1.7.1'
28
- gem 'nio4r', '~> 2.3.1'
29
- gem 'sprockets', '~> 3.7.1'
30
- gem 'byebug', '~> 9.0.6'
31
- gem 'rake', '12.0.0'
32
- gem 'redis', '3.3.3'
33
- end
34
-
35
1
  appraise 'rails-5.2' do
36
2
  gem 'rails', '~> 5.2.0'
37
3
  gem 'i18n', '~> 0.9.5'
38
4
  gem 'nokogiri', '~> 1.7.1'
39
5
  gem 'nio4r', '~> 2.3.1'
40
6
  gem 'sprockets', '~> 3.7.1'
41
- gem 'byebug', '~> 9.0.6'
7
+ gem 'byebug', '~> 11.0'
42
8
  gem 'rake', '12.0.0'
43
9
  gem 'redis', '3.3.3'
10
+ gem 'pry-byebug', '3.9.0'
44
11
  end
45
12
 
46
13
  appraise 'rails-6.0' do
47
- gem 'rails', '~> 6.0.0'
48
- end
49
-
50
- appraise 'active-record-5.1' do
51
- gem 'activerecord', '~> 5.1.0'
52
- gem 'i18n', '~> 0.9.5'
53
- gem 'nokogiri', '~> 1.7.1'
54
- gem 'nio4r', '~> 2.3.1'
55
- gem 'sprockets', '~> 3.7.1'
56
- gem 'byebug', '~> 9.0.6'
57
- gem 'rake', '12.0.0'
58
- gem 'redis', '3.3.3'
14
+ gem 'rails', '~> 6.0.3'
59
15
  end
60
16
 
61
17
  appraise 'active-record-5.2' do
@@ -64,11 +20,12 @@ appraise 'active-record-5.2' do
64
20
  gem 'nokogiri', '~> 1.7.1'
65
21
  gem 'nio4r', '~> 2.3.1'
66
22
  gem 'sprockets', '~> 3.7.1'
67
- gem 'byebug', '~> 9.0.6'
23
+ gem 'byebug', '~> 11.0'
68
24
  gem 'rake', '12.0.0'
69
25
  gem 'redis', '3.3.3'
26
+ gem 'pry-byebug', '3.9.0'
70
27
  end
71
28
 
72
29
  appraise 'active-record-6.0' do
73
- gem 'activerecord', '~> 6.0.0'
30
+ gem 'activerecord', '~> 6.0.3'
74
31
  end
@@ -1,72 +1,85 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activerecord-multi-tenant (1.0.4)
4
+ activerecord-multi-tenant (1.1.0)
5
5
  rails (>= 4.2)
6
6
  request_store (>= 1.0.5)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actioncable (5.2.3)
12
- actionpack (= 5.2.3)
11
+ actioncable (6.0.3.2)
12
+ actionpack (= 6.0.3.2)
13
13
  nio4r (~> 2.0)
14
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)
15
+ actionmailbox (6.0.3.2)
16
+ actionpack (= 6.0.3.2)
17
+ activejob (= 6.0.3.2)
18
+ activerecord (= 6.0.3.2)
19
+ activestorage (= 6.0.3.2)
20
+ activesupport (= 6.0.3.2)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.0.3.2)
23
+ actionpack (= 6.0.3.2)
24
+ actionview (= 6.0.3.2)
25
+ activejob (= 6.0.3.2)
19
26
  mail (~> 2.5, >= 2.5.4)
20
27
  rails-dom-testing (~> 2.0)
21
- actionpack (5.2.3)
22
- actionview (= 5.2.3)
23
- activesupport (= 5.2.3)
24
- rack (~> 2.0)
28
+ actionpack (6.0.3.2)
29
+ actionview (= 6.0.3.2)
30
+ activesupport (= 6.0.3.2)
31
+ rack (~> 2.0, >= 2.0.8)
25
32
  rack-test (>= 0.6.3)
26
33
  rails-dom-testing (~> 2.0)
27
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.2.3)
29
- activesupport (= 5.2.3)
34
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
+ actiontext (6.0.3.2)
36
+ actionpack (= 6.0.3.2)
37
+ activerecord (= 6.0.3.2)
38
+ activestorage (= 6.0.3.2)
39
+ activesupport (= 6.0.3.2)
40
+ nokogiri (>= 1.8.5)
41
+ actionview (6.0.3.2)
42
+ activesupport (= 6.0.3.2)
30
43
  builder (~> 3.1)
31
44
  erubi (~> 1.4)
32
45
  rails-dom-testing (~> 2.0)
33
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.3)
35
- activesupport (= 5.2.3)
46
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
+ activejob (6.0.3.2)
48
+ activesupport (= 6.0.3.2)
36
49
  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)
50
+ activemodel (6.0.3.2)
51
+ activesupport (= 6.0.3.2)
52
+ activerecord (6.0.3.2)
53
+ activemodel (= 6.0.3.2)
54
+ activesupport (= 6.0.3.2)
55
+ activestorage (6.0.3.2)
56
+ actionpack (= 6.0.3.2)
57
+ activejob (= 6.0.3.2)
58
+ activerecord (= 6.0.3.2)
46
59
  marcel (~> 0.3.1)
47
- activesupport (5.2.3)
60
+ activesupport (6.0.3.2)
48
61
  concurrent-ruby (~> 1.0, >= 1.0.2)
49
62
  i18n (>= 0.7, < 2)
50
63
  minitest (~> 5.1)
51
64
  tzinfo (~> 1.1)
65
+ zeitwerk (~> 2.2, >= 2.2.2)
52
66
  appraisal (2.2.0)
53
67
  bundler
54
68
  rake
55
69
  thor (>= 0.14.0)
56
- arel (9.0.0)
57
- builder (3.2.3)
70
+ builder (3.2.4)
58
71
  byebug (11.0.1)
59
72
  coderay (1.1.2)
60
- concurrent-ruby (1.1.5)
73
+ concurrent-ruby (1.1.6)
61
74
  connection_pool (2.2.2)
62
- crass (1.0.4)
75
+ crass (1.0.6)
63
76
  diff-lcs (1.3)
64
- erubi (1.8.0)
77
+ erubi (1.9.0)
65
78
  globalid (0.4.2)
66
79
  activesupport (>= 4.2.0)
67
- i18n (1.6.0)
80
+ i18n (1.8.3)
68
81
  concurrent-ruby (~> 1.0)
69
- loofah (2.2.3)
82
+ loofah (2.6.0)
70
83
  crass (~> 1.0.2)
71
84
  nokogiri (>= 1.5.9)
72
85
  mail (2.7.1)
@@ -74,12 +87,12 @@ GEM
74
87
  marcel (0.3.3)
75
88
  mimemagic (~> 0.3.2)
76
89
  method_source (0.9.2)
77
- mimemagic (0.3.3)
90
+ mimemagic (0.3.5)
78
91
  mini_mime (1.0.2)
79
92
  mini_portile2 (2.4.0)
80
- minitest (5.11.3)
93
+ minitest (5.14.1)
81
94
  nio4r (2.5.2)
82
- nokogiri (1.10.4)
95
+ nokogiri (1.10.9)
83
96
  mini_portile2 (~> 2.4.0)
84
97
  pg (1.1.4)
85
98
  pry (0.12.2)
@@ -88,36 +101,38 @@ GEM
88
101
  pry-byebug (3.7.0)
89
102
  byebug (~> 11.0)
90
103
  pry (~> 0.10)
91
- rack (2.0.7)
104
+ rack (2.2.3)
92
105
  rack-protection (2.0.5)
93
106
  rack
94
107
  rack-test (1.1.0)
95
108
  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)
109
+ rails (6.0.3.2)
110
+ actioncable (= 6.0.3.2)
111
+ actionmailbox (= 6.0.3.2)
112
+ actionmailer (= 6.0.3.2)
113
+ actionpack (= 6.0.3.2)
114
+ actiontext (= 6.0.3.2)
115
+ actionview (= 6.0.3.2)
116
+ activejob (= 6.0.3.2)
117
+ activemodel (= 6.0.3.2)
118
+ activerecord (= 6.0.3.2)
119
+ activestorage (= 6.0.3.2)
120
+ activesupport (= 6.0.3.2)
106
121
  bundler (>= 1.3.0)
107
- railties (= 5.2.3)
122
+ railties (= 6.0.3.2)
108
123
  sprockets-rails (>= 2.0.0)
109
124
  rails-dom-testing (2.0.3)
110
125
  activesupport (>= 4.2.0)
111
126
  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)
127
+ rails-html-sanitizer (1.3.0)
128
+ loofah (~> 2.3)
129
+ railties (6.0.3.2)
130
+ actionpack (= 6.0.3.2)
131
+ activesupport (= 6.0.3.2)
117
132
  method_source
118
133
  rake (>= 0.8.7)
119
- thor (>= 0.19.0, < 2.0)
120
- rake (12.3.2)
134
+ thor (>= 0.20.3, < 2.0)
135
+ rake (13.0.1)
121
136
  redis (4.1.2)
122
137
  request_store (1.4.1)
123
138
  rack (>= 1.4)
@@ -147,7 +162,7 @@ GEM
147
162
  rack (>= 1.5.0)
148
163
  rack-protection (>= 1.5.0)
149
164
  redis (>= 3.3.5, < 5)
150
- sprockets (4.0.0)
165
+ sprockets (4.0.2)
151
166
  concurrent-ruby (~> 1.0)
152
167
  rack (> 1, < 3)
153
168
  sprockets-rails (3.2.1)
@@ -156,11 +171,12 @@ GEM
156
171
  sprockets (>= 3.0.0)
157
172
  thor (0.20.3)
158
173
  thread_safe (0.3.6)
159
- tzinfo (1.2.5)
174
+ tzinfo (1.2.7)
160
175
  thread_safe (~> 0.1)
161
- websocket-driver (0.7.1)
176
+ websocket-driver (0.7.2)
162
177
  websocket-extensions (>= 0.1.0)
163
- websocket-extensions (0.1.4)
178
+ websocket-extensions (0.1.5)
179
+ zeitwerk (2.3.0)
164
180
 
165
181
  PLATFORMS
166
182
  ruby
@@ -178,4 +194,4 @@ DEPENDENCIES
178
194
  thor
179
195
 
180
196
  BUNDLED WITH
181
- 1.17.2
197
+ 2.1.4
@@ -8,8 +8,9 @@ gem "i18n", "~> 0.9.5"
8
8
  gem "nokogiri", "~> 1.7.1"
9
9
  gem "nio4r", "~> 2.3.1"
10
10
  gem "sprockets", "~> 3.7.1"
11
- gem "byebug", "~> 9.0.6"
11
+ gem "byebug", "~> 11.0"
12
12
  gem "rake", "12.0.0"
13
13
  gem "redis", "3.3.3"
14
+ gem "pry-byebug", "3.9.0"
14
15
 
15
16
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- activerecord-multi-tenant (1.0.4)
4
+ activerecord-multi-tenant (1.1.0)
5
5
  rails (>= 4.2)
6
6
  request_store (>= 1.0.5)
7
7
 
@@ -54,42 +54,42 @@ GEM
54
54
  rake
55
55
  thor (>= 0.14.0)
56
56
  arel (9.0.0)
57
- builder (3.2.3)
58
- byebug (9.0.6)
57
+ builder (3.2.4)
58
+ byebug (11.1.3)
59
59
  coderay (1.1.2)
60
- concurrent-ruby (1.1.5)
60
+ concurrent-ruby (1.1.6)
61
61
  connection_pool (2.2.2)
62
- crass (1.0.4)
62
+ crass (1.0.6)
63
63
  diff-lcs (1.3)
64
64
  erubi (1.9.0)
65
65
  globalid (0.4.2)
66
66
  activesupport (>= 4.2.0)
67
67
  i18n (0.9.5)
68
68
  concurrent-ruby (~> 1.0)
69
- loofah (2.3.0)
69
+ loofah (2.5.0)
70
70
  crass (~> 1.0.2)
71
71
  nokogiri (>= 1.5.9)
72
72
  mail (2.7.1)
73
73
  mini_mime (>= 0.1.1)
74
74
  marcel (0.3.3)
75
75
  mimemagic (~> 0.3.2)
76
- method_source (0.9.2)
77
- mimemagic (0.3.3)
76
+ method_source (1.0.0)
77
+ mimemagic (0.3.5)
78
78
  mini_mime (1.0.2)
79
79
  mini_portile2 (2.1.0)
80
- minitest (5.12.2)
80
+ minitest (5.14.1)
81
81
  nio4r (2.3.1)
82
82
  nokogiri (1.7.2)
83
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)
84
+ pg (1.2.3)
85
+ pry (0.13.1)
86
+ coderay (~> 1.1)
87
+ method_source (~> 1.0)
88
+ pry-byebug (3.9.0)
89
+ byebug (~> 11.0)
90
+ pry (~> 0.13.0)
91
+ rack (2.2.2)
92
+ rack-protection (2.0.8.1)
93
93
  rack
94
94
  rack-test (1.1.0)
95
95
  rack (>= 1.0, < 3)
@@ -119,29 +119,29 @@ GEM
119
119
  thor (>= 0.19.0, < 2.0)
120
120
  rake (12.0.0)
121
121
  redis (3.3.3)
122
- request_store (1.4.1)
122
+ request_store (1.5.0)
123
123
  rack (>= 1.4)
124
124
  rspec (3.9.0)
125
125
  rspec-core (~> 3.9.0)
126
126
  rspec-expectations (~> 3.9.0)
127
127
  rspec-mocks (~> 3.9.0)
128
- rspec-core (3.9.0)
129
- rspec-support (~> 3.9.0)
130
- rspec-expectations (3.9.0)
128
+ rspec-core (3.9.2)
129
+ rspec-support (~> 3.9.3)
130
+ rspec-expectations (3.9.2)
131
131
  diff-lcs (>= 1.2.0, < 2.0)
132
132
  rspec-support (~> 3.9.0)
133
- rspec-mocks (3.9.0)
133
+ rspec-mocks (3.9.1)
134
134
  diff-lcs (>= 1.2.0, < 2.0)
135
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)
136
+ rspec-rails (4.0.1)
137
+ actionpack (>= 4.2)
138
+ activesupport (>= 4.2)
139
+ railties (>= 4.2)
140
+ rspec-core (~> 3.9)
141
+ rspec-expectations (~> 3.9)
142
+ rspec-mocks (~> 3.9)
143
+ rspec-support (~> 3.9)
144
+ rspec-support (3.9.3)
145
145
  sidekiq (5.0.4)
146
146
  concurrent-ruby (~> 1.0)
147
147
  connection_pool (~> 2.2, >= 2.2.0)
@@ -154,11 +154,11 @@ GEM
154
154
  actionpack (>= 4.0)
155
155
  activesupport (>= 4.0)
156
156
  sprockets (>= 3.0.0)
157
- thor (0.20.3)
157
+ thor (1.0.1)
158
158
  thread_safe (0.3.6)
159
- tzinfo (1.2.5)
159
+ tzinfo (1.2.7)
160
160
  thread_safe (~> 0.1)
161
- websocket-driver (0.7.1)
161
+ websocket-driver (0.7.2)
162
162
  websocket-extensions (>= 0.1.0)
163
163
  websocket-extensions (0.1.4)
164
164
 
@@ -169,13 +169,13 @@ DEPENDENCIES
169
169
  activerecord (~> 5.2.0)
170
170
  activerecord-multi-tenant!
171
171
  appraisal
172
- byebug (~> 9.0.6)
172
+ byebug (~> 11.0)
173
173
  i18n (~> 0.9.5)
174
174
  nio4r (~> 2.3.1)
175
175
  nokogiri (~> 1.7.1)
176
176
  pg
177
177
  pry
178
- pry-byebug
178
+ pry-byebug (= 3.9.0)
179
179
  rake (= 12.0.0)
180
180
  redis (= 3.3.3)
181
181
  rspec (>= 3.0)
@@ -185,4 +185,4 @@ DEPENDENCIES
185
185
  thor
186
186
 
187
187
  BUNDLED WITH
188
- 1.17.3
188
+ 2.1.4