activerecord-multi-tenant 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 83824a22e79b637451bceca429cbb612db9d971321336e3fc5734cf50313853a
4
- data.tar.gz: c5d4b5875b249725b8262a2acb9844c06b203d202eabd81cefa4fe6b1ce8d695
3
+ metadata.gz: b3b3e919bcbd114ed5158b9532a28338ef32dd84ebc618d0b43a0d7758228c1c
4
+ data.tar.gz: c6b27ea4f4a18c45c5280b264d586aa97e9fc68bc6b9e09bcfda03976ecf7416
5
5
  SHA512:
6
- metadata.gz: 93b9d758a3a8512593f038c8dedd0158fee44e8a3a014add6111e7f158898fb93c0ede679f608c449e389c19373b7d05fe5894604f27340454e2c27071f6bec4
7
- data.tar.gz: 55ce58357e6993b0929779ab4500757a27034776608d4bbd9eb2a440f82a7d1b346567fc22757d658f0f6b4138a48667f6c2bf0402a379f370f9409552795c38
6
+ metadata.gz: 4904fbc68420aeb50c90176c13559fe1270a02266195a69b735d3bafb8d38307e411bb811e3e278164903bfdccd4f8ad115029ff101f51faa56cb66689c8928e
7
+ data.tar.gz: ac167e7a648a6f877407a8662e9e06ae70fa802f3b7314f62ffe4396d51d4111302a9edfc9d7cbdda5c9611e71bee95b70396518a32364133bedd3e75664a908
data/Appraisals CHANGED
@@ -1,32 +1,74 @@
1
1
  appraise 'rails-4.2' do
2
- gem 'rails', '4.2.8'
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'
3
11
  end
4
12
 
5
13
  appraise 'rails-5.0' do
6
- gem 'rails', '5.0.1'
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'
7
22
  end
8
23
 
9
24
  appraise 'rails-5.1' do
10
- gem 'rails', '5.1.0'
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'
11
33
  end
12
34
 
13
35
  appraise 'rails-5.2' do
14
- gem 'rails', '5.2.0'
36
+ gem 'rails', '~> 5.2.0'
37
+ gem 'i18n', '~> 0.9.5'
38
+ gem 'nokogiri', '~> 1.7.1'
39
+ gem 'nio4r', '~> 2.3.1'
40
+ gem 'sprockets', '~> 3.7.1'
41
+ gem 'byebug', '~> 9.0.6'
42
+ gem 'rake', '12.0.0'
43
+ gem 'redis', '3.3.3'
15
44
  end
16
45
 
17
46
  appraise 'rails-6.0' do
18
- gem 'rails', '6.0.0.rc1'
47
+ gem 'rails', '~> 6.0.0'
19
48
  end
20
49
 
21
50
  appraise 'active-record-5.1' do
22
- gem 'activerecord', '5.1.0'
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'
23
59
  end
24
60
 
25
61
  appraise 'active-record-5.2' do
26
- gem 'activerecord', '5.2.0'
62
+ gem 'activerecord', '~> 5.2.0'
63
+ gem 'i18n', '~> 0.9.5'
64
+ gem 'nokogiri', '~> 1.7.1'
65
+ gem 'nio4r', '~> 2.3.1'
66
+ gem 'sprockets', '~> 3.7.1'
67
+ gem 'byebug', '~> 9.0.6'
68
+ gem 'rake', '12.0.0'
69
+ gem 'redis', '3.3.3'
27
70
  end
28
71
 
29
-
30
72
  appraise 'active-record-6.0' do
31
- gem 'activerecord', '6.0.0.rc1'
73
+ gem 'activerecord', '~> 6.0.0'
32
74
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- activerecord-multi-tenant (1.0.2)
4
+ activerecord-multi-tenant (1.0.3)
5
5
  rails (>= 4.2)
6
6
  request_store (>= 1.0.5)
7
7
 
@@ -78,7 +78,7 @@ GEM
78
78
  mini_mime (1.0.2)
79
79
  mini_portile2 (2.4.0)
80
80
  minitest (5.11.3)
81
- nio4r (2.4.0)
81
+ nio4r (2.5.2)
82
82
  nokogiri (1.10.4)
83
83
  mini_portile2 (~> 2.4.0)
84
84
  pg (1.1.4)
@@ -147,7 +147,7 @@ GEM
147
147
  rack (>= 1.5.0)
148
148
  rack-protection (>= 1.5.0)
149
149
  redis (>= 3.3.5, < 5)
150
- sprockets (3.7.2)
150
+ sprockets (4.0.0)
151
151
  concurrent-ruby (~> 1.0)
152
152
  rack (> 1, < 3)
153
153
  sprockets-rails (3.2.1)
@@ -3,6 +3,13 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "activerecord", "5.1.0"
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"
7
14
 
8
15
  gemspec path: "../"
@@ -1,48 +1,48 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- activerecord-multi-tenant (1.0.2)
4
+ activerecord-multi-tenant (1.0.3)
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.1.0)
12
- actionpack (= 5.1.0)
11
+ actioncable (5.1.7)
12
+ actionpack (= 5.1.7)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (~> 0.6.1)
15
- actionmailer (5.1.0)
16
- actionpack (= 5.1.0)
17
- actionview (= 5.1.0)
18
- activejob (= 5.1.0)
15
+ actionmailer (5.1.7)
16
+ actionpack (= 5.1.7)
17
+ actionview (= 5.1.7)
18
+ activejob (= 5.1.7)
19
19
  mail (~> 2.5, >= 2.5.4)
20
20
  rails-dom-testing (~> 2.0)
21
- actionpack (5.1.0)
22
- actionview (= 5.1.0)
23
- activesupport (= 5.1.0)
21
+ actionpack (5.1.7)
22
+ actionview (= 5.1.7)
23
+ activesupport (= 5.1.7)
24
24
  rack (~> 2.0)
25
- rack-test (~> 0.6.3)
25
+ rack-test (>= 0.6.3)
26
26
  rails-dom-testing (~> 2.0)
27
27
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.1.0)
29
- activesupport (= 5.1.0)
28
+ actionview (5.1.7)
29
+ activesupport (= 5.1.7)
30
30
  builder (~> 3.1)
31
31
  erubi (~> 1.4)
32
32
  rails-dom-testing (~> 2.0)
33
33
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.1.0)
35
- activesupport (= 5.1.0)
34
+ activejob (5.1.7)
35
+ activesupport (= 5.1.7)
36
36
  globalid (>= 0.3.6)
37
- activemodel (5.1.0)
38
- activesupport (= 5.1.0)
39
- activerecord (5.1.0)
40
- activemodel (= 5.1.0)
41
- activesupport (= 5.1.0)
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
42
  arel (~> 8.0)
43
- activesupport (5.1.0)
43
+ activesupport (5.1.7)
44
44
  concurrent-ruby (~> 1.0, >= 1.0.2)
45
- i18n (~> 0.7)
45
+ i18n (>= 0.7, < 2)
46
46
  minitest (~> 5.1)
47
47
  tzinfo (~> 1.1)
48
48
  appraisal (2.2.0)
@@ -52,58 +52,60 @@ GEM
52
52
  arel (8.0.0)
53
53
  builder (3.2.3)
54
54
  byebug (9.0.6)
55
- coderay (1.1.1)
56
- concurrent-ruby (1.0.5)
57
- connection_pool (2.2.1)
55
+ coderay (1.1.2)
56
+ concurrent-ruby (1.1.5)
57
+ connection_pool (2.2.2)
58
+ crass (1.0.4)
58
59
  diff-lcs (1.3)
59
- erubi (1.6.0)
60
+ erubi (1.9.0)
60
61
  globalid (0.4.2)
61
62
  activesupport (>= 4.2.0)
62
- i18n (0.8.1)
63
- loofah (2.0.3)
63
+ i18n (0.9.5)
64
+ concurrent-ruby (~> 1.0)
65
+ loofah (2.3.0)
66
+ crass (~> 1.0.2)
64
67
  nokogiri (>= 1.5.9)
65
68
  mail (2.7.1)
66
69
  mini_mime (>= 0.1.1)
67
- method_source (0.8.2)
68
- mini_mime (1.0.1)
70
+ method_source (0.9.2)
71
+ mini_mime (1.0.2)
69
72
  mini_portile2 (2.1.0)
70
- minitest (5.10.1)
73
+ minitest (5.12.2)
71
74
  nio4r (2.3.1)
72
- nokogiri (1.7.1)
75
+ nokogiri (1.7.2)
73
76
  mini_portile2 (~> 2.1.0)
74
- pg (0.20.0)
75
- pry (0.10.4)
77
+ pg (1.1.4)
78
+ pry (0.12.2)
76
79
  coderay (~> 1.1.0)
77
- method_source (~> 0.8.1)
78
- slop (~> 3.4)
79
- pry-byebug (3.4.2)
80
- byebug (~> 9.0)
80
+ method_source (~> 0.9.0)
81
+ pry-byebug (3.4.3)
82
+ byebug (>= 9.0, < 9.1)
81
83
  pry (~> 0.10)
82
- rack (2.0.5)
83
- rack-protection (1.5.3)
84
+ rack (2.0.7)
85
+ rack-protection (2.0.7)
84
86
  rack
85
- rack-test (0.6.3)
86
- rack (>= 1.0)
87
- rails (5.1.0)
88
- actioncable (= 5.1.0)
89
- actionmailer (= 5.1.0)
90
- actionpack (= 5.1.0)
91
- actionview (= 5.1.0)
92
- activejob (= 5.1.0)
93
- activemodel (= 5.1.0)
94
- activerecord (= 5.1.0)
95
- activesupport (= 5.1.0)
96
- bundler (>= 1.3.0, < 2.0)
97
- railties (= 5.1.0)
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)
98
100
  sprockets-rails (>= 2.0.0)
99
- rails-dom-testing (2.0.2)
100
- activesupport (>= 4.2.0, < 6.0)
101
- nokogiri (~> 1.6)
102
- rails-html-sanitizer (1.0.3)
103
- loofah (~> 2.0)
104
- railties (5.1.0)
105
- actionpack (= 5.1.0)
106
- activesupport (= 5.1.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)
107
109
  method_source
108
110
  rake (>= 0.8.7)
109
111
  thor (>= 0.18.1, < 2.0)
@@ -111,33 +113,32 @@ GEM
111
113
  redis (3.3.3)
112
114
  request_store (1.4.1)
113
115
  rack (>= 1.4)
114
- rspec (3.6.0)
115
- rspec-core (~> 3.6.0)
116
- rspec-expectations (~> 3.6.0)
117
- rspec-mocks (~> 3.6.0)
118
- rspec-core (3.6.0)
119
- rspec-support (~> 3.6.0)
120
- rspec-expectations (3.6.0)
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)
121
123
  diff-lcs (>= 1.2.0, < 2.0)
122
- rspec-support (~> 3.6.0)
123
- rspec-mocks (3.6.0)
124
+ rspec-support (~> 3.9.0)
125
+ rspec-mocks (3.9.0)
124
126
  diff-lcs (>= 1.2.0, < 2.0)
125
- rspec-support (~> 3.6.0)
126
- rspec-rails (3.6.0)
127
+ rspec-support (~> 3.9.0)
128
+ rspec-rails (3.9.0)
127
129
  actionpack (>= 3.0)
128
130
  activesupport (>= 3.0)
129
131
  railties (>= 3.0)
130
- rspec-core (~> 3.6.0)
131
- rspec-expectations (~> 3.6.0)
132
- rspec-mocks (~> 3.6.0)
133
- rspec-support (~> 3.6.0)
134
- rspec-support (3.6.0)
135
- sidekiq (4.2.10)
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)
136
138
  concurrent-ruby (~> 1.0)
137
139
  connection_pool (~> 2.2, >= 2.2.0)
138
140
  rack-protection (>= 1.5.0)
139
- redis (~> 3.2, >= 3.2.1)
140
- slop (3.6.0)
141
+ redis (~> 3.3, >= 3.3.3)
141
142
  sprockets (3.7.2)
142
143
  concurrent-ruby (~> 1.0)
143
144
  rack (> 1, < 3)
@@ -145,9 +146,9 @@ GEM
145
146
  actionpack (>= 4.0)
146
147
  activesupport (>= 4.0)
147
148
  sprockets (>= 3.0.0)
148
- thor (0.19.4)
149
+ thor (0.20.3)
149
150
  thread_safe (0.3.6)
150
- tzinfo (1.2.3)
151
+ tzinfo (1.2.5)
151
152
  thread_safe (~> 0.1)
152
153
  websocket-driver (0.6.5)
153
154
  websocket-extensions (>= 0.1.0)
@@ -157,17 +158,23 @@ PLATFORMS
157
158
  ruby
158
159
 
159
160
  DEPENDENCIES
160
- activerecord (= 5.1.0)
161
+ activerecord (~> 5.1.0)
161
162
  activerecord-multi-tenant!
162
163
  appraisal
164
+ byebug (~> 9.0.6)
165
+ i18n (~> 0.9.5)
166
+ nio4r (~> 2.3.1)
167
+ nokogiri (~> 1.7.1)
163
168
  pg
164
169
  pry
165
170
  pry-byebug
166
- rake
171
+ rake (= 12.0.0)
172
+ redis (= 3.3.3)
167
173
  rspec (>= 3.0)
168
174
  rspec-rails
169
175
  sidekiq
176
+ sprockets (~> 3.7.1)
170
177
  thor
171
178
 
172
179
  BUNDLED WITH
173
- 1.17.2
180
+ 1.17.3
@@ -3,6 +3,13 @@
3
3
  source "https://rubygems.org"
4
4
 
5
5
  gem "appraisal"
6
- gem "activerecord", "5.2.0"
6
+ gem "activerecord", "~> 5.2.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"
7
14
 
8
15
  gemspec path: "../"
@@ -1,50 +1,50 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- activerecord-multi-tenant (1.0.2)
4
+ activerecord-multi-tenant (1.0.3)
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.0)
12
- actionpack (= 5.2.0)
11
+ actioncable (5.2.3)
12
+ actionpack (= 5.2.3)
13
13
  nio4r (~> 2.0)
14
14
  websocket-driver (>= 0.6.1)
15
- actionmailer (5.2.0)
16
- actionpack (= 5.2.0)
17
- actionview (= 5.2.0)
18
- activejob (= 5.2.0)
15
+ actionmailer (5.2.3)
16
+ actionpack (= 5.2.3)
17
+ actionview (= 5.2.3)
18
+ activejob (= 5.2.3)
19
19
  mail (~> 2.5, >= 2.5.4)
20
20
  rails-dom-testing (~> 2.0)
21
- actionpack (5.2.0)
22
- actionview (= 5.2.0)
23
- activesupport (= 5.2.0)
21
+ actionpack (5.2.3)
22
+ actionview (= 5.2.3)
23
+ activesupport (= 5.2.3)
24
24
  rack (~> 2.0)
25
25
  rack-test (>= 0.6.3)
26
26
  rails-dom-testing (~> 2.0)
27
27
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
- actionview (5.2.0)
29
- activesupport (= 5.2.0)
28
+ actionview (5.2.3)
29
+ activesupport (= 5.2.3)
30
30
  builder (~> 3.1)
31
31
  erubi (~> 1.4)
32
32
  rails-dom-testing (~> 2.0)
33
33
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
- activejob (5.2.0)
35
- activesupport (= 5.2.0)
34
+ activejob (5.2.3)
35
+ activesupport (= 5.2.3)
36
36
  globalid (>= 0.3.6)
37
- activemodel (5.2.0)
38
- activesupport (= 5.2.0)
39
- activerecord (5.2.0)
40
- activemodel (= 5.2.0)
41
- activesupport (= 5.2.0)
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
42
  arel (>= 9.0)
43
- activestorage (5.2.0)
44
- actionpack (= 5.2.0)
45
- activerecord (= 5.2.0)
43
+ activestorage (5.2.3)
44
+ actionpack (= 5.2.3)
45
+ activerecord (= 5.2.3)
46
46
  marcel (~> 0.3.1)
47
- activesupport (5.2.0)
47
+ activesupport (5.2.3)
48
48
  concurrent-ruby (~> 1.0, >= 1.0.2)
49
49
  i18n (>= 0.7, < 2)
50
50
  minitest (~> 5.1)
@@ -55,98 +55,98 @@ GEM
55
55
  thor (>= 0.14.0)
56
56
  arel (9.0.0)
57
57
  builder (3.2.3)
58
- byebug (10.0.2)
58
+ byebug (9.0.6)
59
59
  coderay (1.1.2)
60
- concurrent-ruby (1.0.5)
60
+ concurrent-ruby (1.1.5)
61
61
  connection_pool (2.2.2)
62
62
  crass (1.0.4)
63
63
  diff-lcs (1.3)
64
- erubi (1.7.1)
64
+ erubi (1.9.0)
65
65
  globalid (0.4.2)
66
66
  activesupport (>= 4.2.0)
67
- i18n (1.0.1)
67
+ i18n (0.9.5)
68
68
  concurrent-ruby (~> 1.0)
69
- loofah (2.2.2)
69
+ loofah (2.3.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.0)
76
+ method_source (0.9.2)
77
77
  mimemagic (0.3.3)
78
- mini_mime (1.0.1)
79
- mini_portile2 (2.3.0)
80
- minitest (5.11.3)
78
+ mini_mime (1.0.2)
79
+ mini_portile2 (2.1.0)
80
+ minitest (5.12.2)
81
81
  nio4r (2.3.1)
82
- nokogiri (1.8.2)
83
- mini_portile2 (~> 2.3.0)
84
- pg (1.0.0)
85
- pry (0.11.3)
82
+ nokogiri (1.7.2)
83
+ mini_portile2 (~> 2.1.0)
84
+ pg (1.1.4)
85
+ pry (0.12.2)
86
86
  coderay (~> 1.1.0)
87
87
  method_source (~> 0.9.0)
88
- pry-byebug (3.6.0)
89
- byebug (~> 10.0)
88
+ pry-byebug (3.4.3)
89
+ byebug (>= 9.0, < 9.1)
90
90
  pry (~> 0.10)
91
- rack (2.0.5)
92
- rack-protection (2.0.3)
91
+ rack (2.0.7)
92
+ rack-protection (2.0.7)
93
93
  rack
94
- rack-test (1.0.0)
94
+ rack-test (1.1.0)
95
95
  rack (>= 1.0, < 3)
96
- rails (5.2.0)
97
- actioncable (= 5.2.0)
98
- actionmailer (= 5.2.0)
99
- actionpack (= 5.2.0)
100
- actionview (= 5.2.0)
101
- activejob (= 5.2.0)
102
- activemodel (= 5.2.0)
103
- activerecord (= 5.2.0)
104
- activestorage (= 5.2.0)
105
- activesupport (= 5.2.0)
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
106
  bundler (>= 1.3.0)
107
- railties (= 5.2.0)
107
+ railties (= 5.2.3)
108
108
  sprockets-rails (>= 2.0.0)
109
109
  rails-dom-testing (2.0.3)
110
110
  activesupport (>= 4.2.0)
111
111
  nokogiri (>= 1.6)
112
- rails-html-sanitizer (1.0.4)
113
- loofah (~> 2.2, >= 2.2.2)
114
- railties (5.2.0)
115
- actionpack (= 5.2.0)
116
- activesupport (= 5.2.0)
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
117
  method_source
118
118
  rake (>= 0.8.7)
119
- thor (>= 0.18.1, < 2.0)
120
- rake (12.3.1)
121
- redis (4.0.1)
119
+ thor (>= 0.19.0, < 2.0)
120
+ rake (12.0.0)
121
+ redis (3.3.3)
122
122
  request_store (1.4.1)
123
123
  rack (>= 1.4)
124
- rspec (3.7.0)
125
- rspec-core (~> 3.7.0)
126
- rspec-expectations (~> 3.7.0)
127
- rspec-mocks (~> 3.7.0)
128
- rspec-core (3.7.1)
129
- rspec-support (~> 3.7.0)
130
- rspec-expectations (3.7.0)
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
131
  diff-lcs (>= 1.2.0, < 2.0)
132
- rspec-support (~> 3.7.0)
133
- rspec-mocks (3.7.0)
132
+ rspec-support (~> 3.9.0)
133
+ rspec-mocks (3.9.0)
134
134
  diff-lcs (>= 1.2.0, < 2.0)
135
- rspec-support (~> 3.7.0)
136
- rspec-rails (3.7.2)
135
+ rspec-support (~> 3.9.0)
136
+ rspec-rails (3.9.0)
137
137
  actionpack (>= 3.0)
138
138
  activesupport (>= 3.0)
139
139
  railties (>= 3.0)
140
- rspec-core (~> 3.7.0)
141
- rspec-expectations (~> 3.7.0)
142
- rspec-mocks (~> 3.7.0)
143
- rspec-support (~> 3.7.0)
144
- rspec-support (3.7.1)
145
- sidekiq (5.1.3)
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
146
  concurrent-ruby (~> 1.0)
147
147
  connection_pool (~> 2.2, >= 2.2.0)
148
148
  rack-protection (>= 1.5.0)
149
- redis (>= 3.3.5, < 5)
149
+ redis (~> 3.3, >= 3.3.3)
150
150
  sprockets (3.7.2)
151
151
  concurrent-ruby (~> 1.0)
152
152
  rack (> 1, < 3)
@@ -154,7 +154,7 @@ GEM
154
154
  actionpack (>= 4.0)
155
155
  activesupport (>= 4.0)
156
156
  sprockets (>= 3.0.0)
157
- thor (0.20.0)
157
+ thor (0.20.3)
158
158
  thread_safe (0.3.6)
159
159
  tzinfo (1.2.5)
160
160
  thread_safe (~> 0.1)
@@ -166,17 +166,23 @@ PLATFORMS
166
166
  ruby
167
167
 
168
168
  DEPENDENCIES
169
- activerecord (= 5.2.0)
169
+ activerecord (~> 5.2.0)
170
170
  activerecord-multi-tenant!
171
171
  appraisal
172
+ byebug (~> 9.0.6)
173
+ i18n (~> 0.9.5)
174
+ nio4r (~> 2.3.1)
175
+ nokogiri (~> 1.7.1)
172
176
  pg
173
177
  pry
174
178
  pry-byebug
175
- rake
179
+ rake (= 12.0.0)
180
+ redis (= 3.3.3)
176
181
  rspec (>= 3.0)
177
182
  rspec-rails
178
183
  sidekiq
184
+ sprockets (~> 3.7.1)
179
185
  thor
180
186
 
181
187
  BUNDLED WITH
182
- 1.17.2
188
+ 1.17.3