activerecord-multi-tenant 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +25 -0
- data/Appraisals +9 -1
- data/CHANGELOG.md +7 -0
- data/Gemfile.lock +3 -3
- data/gemfiles/rails_3.2.gemfile.lock +7 -7
- data/gemfiles/rails_4.0.gemfile +8 -0
- data/gemfiles/rails_4.0.gemfile.lock +119 -0
- data/gemfiles/rails_4.1.gemfile +8 -0
- data/gemfiles/rails_4.1.gemfile.lock +124 -0
- data/gemfiles/rails_4.2.gemfile +1 -1
- data/gemfiles/rails_4.2.gemfile.lock +37 -39
- data/gemfiles/rails_5.0.gemfile.lock +7 -7
- data/lib/activerecord-multi-tenant/model_extensions.rb +9 -4
- data/lib/activerecord-multi-tenant/multi_tenant.rb +4 -0
- data/lib/activerecord-multi-tenant/referential_integrity.rb +6 -8
- data/lib/activerecord-multi-tenant/version.rb +1 -1
- data/spec/activerecord-multi-tenant/controller_extensions_spec.rb +11 -2
- data/spec/activerecord-multi-tenant/model_extensions_spec.rb +23 -2
- data/spec/activerecord-multi-tenant/record_callback_spec.rb +4 -2
- data/spec/activerecord-multi-tenant/record_modifications_spec.rb +4 -3
- data/spec/schema.rb +38 -9
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25c5b203849744f6ee1d8e887164bf90c618c9d8
|
4
|
+
data.tar.gz: 0351f5f55fb6aa5c6bfdfde9f5016b4da9221d87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 413b78faedc7d7f8514f4cfa5de2a50df0d75b38be90db3137da5ffad438453bf2d7404660ac378eeb307c3a9ae9559bae4961fff8e7c7ba723f300a5426094f
|
7
|
+
data.tar.gz: 7acfcfbb62d2e1771c10168f0ff68a756bed4af5068c05d0a757bc4fb0c3ab8fc48944c0dd07393abc5691dc155ee5548a24d5e47ef731d411e45feeb4fed185
|
data/.travis.yml
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
language: ruby
|
2
|
+
|
3
|
+
rvm:
|
4
|
+
- 2.1
|
5
|
+
- 2.2.6
|
6
|
+
- 2.3.3
|
7
|
+
- 2.4
|
8
|
+
|
9
|
+
script: "bundle exec rake spec"
|
10
|
+
|
11
|
+
gemfile:
|
12
|
+
- gemfiles/rails_3.2.gemfile
|
13
|
+
- gemfiles/rails_4.0.gemfile
|
14
|
+
- gemfiles/rails_4.1.gemfile
|
15
|
+
- gemfiles/rails_4.2.gemfile
|
16
|
+
- gemfiles/rails_5.0.gemfile
|
17
|
+
|
18
|
+
matrix:
|
19
|
+
fast_finish: true
|
20
|
+
exclude:
|
21
|
+
- gemfile: gemfiles/rails_5.0.gemfile
|
22
|
+
rvm: 2.1
|
23
|
+
|
24
|
+
sudo: false
|
25
|
+
cache: bundler
|
data/Appraisals
CHANGED
@@ -3,8 +3,16 @@ appraise 'rails-3.2' do
|
|
3
3
|
gem 'rails', '3.2.22.5'
|
4
4
|
end
|
5
5
|
|
6
|
+
appraise 'rails-4.0' do
|
7
|
+
gem 'rails', '4.0.13'
|
8
|
+
end
|
9
|
+
|
10
|
+
appraise 'rails-4.1' do
|
11
|
+
gem 'rails', '4.1.16'
|
12
|
+
end
|
13
|
+
|
6
14
|
appraise 'rails-4.2' do
|
7
|
-
gem 'rails', '4.2.
|
15
|
+
gem 'rails', '4.2.8'
|
8
16
|
end
|
9
17
|
|
10
18
|
appraise 'rails-5.0' do
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.3.3 2017-02-21
|
4
|
+
|
5
|
+
* Avoid warning about multi-column primary keys with Rails 5 [#2](https://github.com/citusdata/activerecord-multi-tenant/issues/2)
|
6
|
+
* Fix odd bind errors for has_one/has_many through
|
7
|
+
* Add MultiTenant.current_tenant_id= helper method
|
8
|
+
|
9
|
+
|
3
10
|
## 0.3.2 2017-02-16
|
4
11
|
|
5
12
|
* Support blocks passed into the unscoped method (this fixes reload, amongst other issues)
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
activerecord-multi-tenant (0.3.
|
4
|
+
activerecord-multi-tenant (0.3.3)
|
5
5
|
rails (>= 3.1)
|
6
6
|
request_store (>= 1.0.5)
|
7
7
|
|
@@ -99,7 +99,7 @@ GEM
|
|
99
99
|
rake (>= 0.8.7)
|
100
100
|
thor (>= 0.18.1, < 2.0)
|
101
101
|
rake (12.0.0)
|
102
|
-
request_store (1.3.
|
102
|
+
request_store (1.3.2)
|
103
103
|
rspec (3.5.0)
|
104
104
|
rspec-core (~> 3.5.0)
|
105
105
|
rspec-expectations (~> 3.5.0)
|
@@ -132,7 +132,7 @@ GEM
|
|
132
132
|
thread_safe (0.3.5)
|
133
133
|
tzinfo (1.2.2)
|
134
134
|
thread_safe (~> 0.1)
|
135
|
-
websocket-driver (0.6.
|
135
|
+
websocket-driver (0.6.5)
|
136
136
|
websocket-extensions (>= 0.1.0)
|
137
137
|
websocket-extensions (0.1.2)
|
138
138
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../
|
3
3
|
specs:
|
4
|
-
activerecord-multi-tenant (0.3.
|
4
|
+
activerecord-multi-tenant (0.3.2)
|
5
5
|
rails (>= 3.1)
|
6
6
|
request_store (>= 1.0.5)
|
7
7
|
|
@@ -42,12 +42,12 @@ GEM
|
|
42
42
|
arel (3.0.3)
|
43
43
|
builder (3.0.4)
|
44
44
|
database_cleaner (1.3.0)
|
45
|
-
diff-lcs (1.
|
45
|
+
diff-lcs (1.3)
|
46
46
|
erubis (2.7.0)
|
47
47
|
hike (1.2.3)
|
48
|
-
i18n (0.
|
48
|
+
i18n (0.8.0)
|
49
49
|
journey (1.0.4)
|
50
|
-
json (1.8.
|
50
|
+
json (1.8.6)
|
51
51
|
mail (2.5.4)
|
52
52
|
mime-types (~> 1.16)
|
53
53
|
treetop (~> 1.4.8)
|
@@ -55,9 +55,9 @@ GEM
|
|
55
55
|
multi_json (1.12.1)
|
56
56
|
pg (0.19.0)
|
57
57
|
polyglot (0.3.5)
|
58
|
-
power_assert (0.
|
58
|
+
power_assert (1.0.1)
|
59
59
|
rack (1.4.7)
|
60
|
-
rack-cache (1.
|
60
|
+
rack-cache (1.7.0)
|
61
61
|
rack (>= 0.4)
|
62
62
|
rack-ssl (1.3.4)
|
63
63
|
rack
|
@@ -81,7 +81,7 @@ GEM
|
|
81
81
|
rake (12.0.0)
|
82
82
|
rdoc (3.12.2)
|
83
83
|
json (~> 1.4)
|
84
|
-
request_store (1.3.
|
84
|
+
request_store (1.3.2)
|
85
85
|
rspec (3.5.0)
|
86
86
|
rspec-core (~> 3.5.0)
|
87
87
|
rspec-expectations (~> 3.5.0)
|
@@ -0,0 +1,119 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../
|
3
|
+
specs:
|
4
|
+
activerecord-multi-tenant (0.3.2)
|
5
|
+
rails (>= 3.1)
|
6
|
+
request_store (>= 1.0.5)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actionmailer (4.0.13)
|
12
|
+
actionpack (= 4.0.13)
|
13
|
+
mail (~> 2.5, >= 2.5.4)
|
14
|
+
actionpack (4.0.13)
|
15
|
+
activesupport (= 4.0.13)
|
16
|
+
builder (~> 3.1.0)
|
17
|
+
erubis (~> 2.7.0)
|
18
|
+
rack (~> 1.5.2)
|
19
|
+
rack-test (~> 0.6.2)
|
20
|
+
activemodel (4.0.13)
|
21
|
+
activesupport (= 4.0.13)
|
22
|
+
builder (~> 3.1.0)
|
23
|
+
activerecord (4.0.13)
|
24
|
+
activemodel (= 4.0.13)
|
25
|
+
activerecord-deprecated_finders (~> 1.0.2)
|
26
|
+
activesupport (= 4.0.13)
|
27
|
+
arel (~> 4.0.0)
|
28
|
+
activerecord-deprecated_finders (1.0.4)
|
29
|
+
activesupport (4.0.13)
|
30
|
+
i18n (~> 0.6, >= 0.6.9)
|
31
|
+
minitest (~> 4.2)
|
32
|
+
multi_json (~> 1.3)
|
33
|
+
thread_safe (~> 0.1)
|
34
|
+
tzinfo (~> 0.3.37)
|
35
|
+
appraisal (2.1.0)
|
36
|
+
bundler
|
37
|
+
rake
|
38
|
+
thor (>= 0.14.0)
|
39
|
+
arel (4.0.2)
|
40
|
+
builder (3.1.4)
|
41
|
+
concurrent-ruby (1.0.4)
|
42
|
+
database_cleaner (1.3.0)
|
43
|
+
diff-lcs (1.3)
|
44
|
+
erubis (2.7.0)
|
45
|
+
i18n (0.8.0)
|
46
|
+
mail (2.6.4)
|
47
|
+
mime-types (>= 1.16, < 4)
|
48
|
+
mime-types (3.1)
|
49
|
+
mime-types-data (~> 3.2015)
|
50
|
+
mime-types-data (3.2016.0521)
|
51
|
+
minitest (4.7.5)
|
52
|
+
multi_json (1.12.1)
|
53
|
+
pg (0.19.0)
|
54
|
+
rack (1.5.5)
|
55
|
+
rack-test (0.6.3)
|
56
|
+
rack (>= 1.0)
|
57
|
+
rails (4.0.13)
|
58
|
+
actionmailer (= 4.0.13)
|
59
|
+
actionpack (= 4.0.13)
|
60
|
+
activerecord (= 4.0.13)
|
61
|
+
activesupport (= 4.0.13)
|
62
|
+
bundler (>= 1.3.0, < 2.0)
|
63
|
+
railties (= 4.0.13)
|
64
|
+
sprockets-rails (~> 2.0)
|
65
|
+
railties (4.0.13)
|
66
|
+
actionpack (= 4.0.13)
|
67
|
+
activesupport (= 4.0.13)
|
68
|
+
rake (>= 0.8.7)
|
69
|
+
thor (>= 0.18.1, < 2.0)
|
70
|
+
rake (12.0.0)
|
71
|
+
request_store (1.3.2)
|
72
|
+
rspec (3.5.0)
|
73
|
+
rspec-core (~> 3.5.0)
|
74
|
+
rspec-expectations (~> 3.5.0)
|
75
|
+
rspec-mocks (~> 3.5.0)
|
76
|
+
rspec-core (3.5.4)
|
77
|
+
rspec-support (~> 3.5.0)
|
78
|
+
rspec-expectations (3.5.0)
|
79
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
80
|
+
rspec-support (~> 3.5.0)
|
81
|
+
rspec-mocks (3.5.0)
|
82
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
83
|
+
rspec-support (~> 3.5.0)
|
84
|
+
rspec-rails (3.5.2)
|
85
|
+
actionpack (>= 3.0)
|
86
|
+
activesupport (>= 3.0)
|
87
|
+
railties (>= 3.0)
|
88
|
+
rspec-core (~> 3.5.0)
|
89
|
+
rspec-expectations (~> 3.5.0)
|
90
|
+
rspec-mocks (~> 3.5.0)
|
91
|
+
rspec-support (~> 3.5.0)
|
92
|
+
rspec-support (3.5.0)
|
93
|
+
sprockets (3.7.1)
|
94
|
+
concurrent-ruby (~> 1.0)
|
95
|
+
rack (> 1, < 3)
|
96
|
+
sprockets-rails (2.3.3)
|
97
|
+
actionpack (>= 3.0)
|
98
|
+
activesupport (>= 3.0)
|
99
|
+
sprockets (>= 2.8, < 4.0)
|
100
|
+
thor (0.19.4)
|
101
|
+
thread_safe (0.3.5)
|
102
|
+
tzinfo (0.3.52)
|
103
|
+
|
104
|
+
PLATFORMS
|
105
|
+
ruby
|
106
|
+
|
107
|
+
DEPENDENCIES
|
108
|
+
activerecord-multi-tenant!
|
109
|
+
appraisal
|
110
|
+
database_cleaner (~> 1.3.0)
|
111
|
+
pg
|
112
|
+
rails (= 4.0.13)
|
113
|
+
rake
|
114
|
+
rspec (>= 3.0)
|
115
|
+
rspec-rails
|
116
|
+
thor
|
117
|
+
|
118
|
+
BUNDLED WITH
|
119
|
+
1.11.2
|
@@ -0,0 +1,124 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../
|
3
|
+
specs:
|
4
|
+
activerecord-multi-tenant (0.3.2)
|
5
|
+
rails (>= 3.1)
|
6
|
+
request_store (>= 1.0.5)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actionmailer (4.1.16)
|
12
|
+
actionpack (= 4.1.16)
|
13
|
+
actionview (= 4.1.16)
|
14
|
+
mail (~> 2.5, >= 2.5.4)
|
15
|
+
actionpack (4.1.16)
|
16
|
+
actionview (= 4.1.16)
|
17
|
+
activesupport (= 4.1.16)
|
18
|
+
rack (~> 1.5.2)
|
19
|
+
rack-test (~> 0.6.2)
|
20
|
+
actionview (4.1.16)
|
21
|
+
activesupport (= 4.1.16)
|
22
|
+
builder (~> 3.1)
|
23
|
+
erubis (~> 2.7.0)
|
24
|
+
activemodel (4.1.16)
|
25
|
+
activesupport (= 4.1.16)
|
26
|
+
builder (~> 3.1)
|
27
|
+
activerecord (4.1.16)
|
28
|
+
activemodel (= 4.1.16)
|
29
|
+
activesupport (= 4.1.16)
|
30
|
+
arel (~> 5.0.0)
|
31
|
+
activesupport (4.1.16)
|
32
|
+
i18n (~> 0.6, >= 0.6.9)
|
33
|
+
json (~> 1.7, >= 1.7.7)
|
34
|
+
minitest (~> 5.1)
|
35
|
+
thread_safe (~> 0.1)
|
36
|
+
tzinfo (~> 1.1)
|
37
|
+
appraisal (2.1.0)
|
38
|
+
bundler
|
39
|
+
rake
|
40
|
+
thor (>= 0.14.0)
|
41
|
+
arel (5.0.1.20140414130214)
|
42
|
+
builder (3.2.3)
|
43
|
+
concurrent-ruby (1.0.4)
|
44
|
+
database_cleaner (1.3.0)
|
45
|
+
diff-lcs (1.3)
|
46
|
+
erubis (2.7.0)
|
47
|
+
i18n (0.8.0)
|
48
|
+
json (1.8.6)
|
49
|
+
mail (2.6.4)
|
50
|
+
mime-types (>= 1.16, < 4)
|
51
|
+
mime-types (3.1)
|
52
|
+
mime-types-data (~> 3.2015)
|
53
|
+
mime-types-data (3.2016.0521)
|
54
|
+
minitest (5.10.1)
|
55
|
+
pg (0.19.0)
|
56
|
+
rack (1.5.5)
|
57
|
+
rack-test (0.6.3)
|
58
|
+
rack (>= 1.0)
|
59
|
+
rails (4.1.16)
|
60
|
+
actionmailer (= 4.1.16)
|
61
|
+
actionpack (= 4.1.16)
|
62
|
+
actionview (= 4.1.16)
|
63
|
+
activemodel (= 4.1.16)
|
64
|
+
activerecord (= 4.1.16)
|
65
|
+
activesupport (= 4.1.16)
|
66
|
+
bundler (>= 1.3.0, < 2.0)
|
67
|
+
railties (= 4.1.16)
|
68
|
+
sprockets-rails (~> 2.0)
|
69
|
+
railties (4.1.16)
|
70
|
+
actionpack (= 4.1.16)
|
71
|
+
activesupport (= 4.1.16)
|
72
|
+
rake (>= 0.8.7)
|
73
|
+
thor (>= 0.18.1, < 2.0)
|
74
|
+
rake (12.0.0)
|
75
|
+
request_store (1.3.2)
|
76
|
+
rspec (3.5.0)
|
77
|
+
rspec-core (~> 3.5.0)
|
78
|
+
rspec-expectations (~> 3.5.0)
|
79
|
+
rspec-mocks (~> 3.5.0)
|
80
|
+
rspec-core (3.5.4)
|
81
|
+
rspec-support (~> 3.5.0)
|
82
|
+
rspec-expectations (3.5.0)
|
83
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
84
|
+
rspec-support (~> 3.5.0)
|
85
|
+
rspec-mocks (3.5.0)
|
86
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
87
|
+
rspec-support (~> 3.5.0)
|
88
|
+
rspec-rails (3.5.2)
|
89
|
+
actionpack (>= 3.0)
|
90
|
+
activesupport (>= 3.0)
|
91
|
+
railties (>= 3.0)
|
92
|
+
rspec-core (~> 3.5.0)
|
93
|
+
rspec-expectations (~> 3.5.0)
|
94
|
+
rspec-mocks (~> 3.5.0)
|
95
|
+
rspec-support (~> 3.5.0)
|
96
|
+
rspec-support (3.5.0)
|
97
|
+
sprockets (3.7.1)
|
98
|
+
concurrent-ruby (~> 1.0)
|
99
|
+
rack (> 1, < 3)
|
100
|
+
sprockets-rails (2.3.3)
|
101
|
+
actionpack (>= 3.0)
|
102
|
+
activesupport (>= 3.0)
|
103
|
+
sprockets (>= 2.8, < 4.0)
|
104
|
+
thor (0.19.4)
|
105
|
+
thread_safe (0.3.5)
|
106
|
+
tzinfo (1.2.2)
|
107
|
+
thread_safe (~> 0.1)
|
108
|
+
|
109
|
+
PLATFORMS
|
110
|
+
ruby
|
111
|
+
|
112
|
+
DEPENDENCIES
|
113
|
+
activerecord-multi-tenant!
|
114
|
+
appraisal
|
115
|
+
database_cleaner (~> 1.3.0)
|
116
|
+
pg
|
117
|
+
rails (= 4.1.16)
|
118
|
+
rake
|
119
|
+
rspec (>= 3.0)
|
120
|
+
rspec-rails
|
121
|
+
thor
|
122
|
+
|
123
|
+
BUNDLED WITH
|
124
|
+
1.11.2
|
data/gemfiles/rails_4.2.gemfile
CHANGED
@@ -1,45 +1,44 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../
|
3
3
|
specs:
|
4
|
-
activerecord-multi-tenant (0.3.
|
4
|
+
activerecord-multi-tenant (0.3.2)
|
5
5
|
rails (>= 3.1)
|
6
6
|
request_store (>= 1.0.5)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actionmailer (4.2.
|
12
|
-
actionpack (= 4.2.
|
13
|
-
actionview (= 4.2.
|
14
|
-
activejob (= 4.2.
|
11
|
+
actionmailer (4.2.8)
|
12
|
+
actionpack (= 4.2.8)
|
13
|
+
actionview (= 4.2.8)
|
14
|
+
activejob (= 4.2.8)
|
15
15
|
mail (~> 2.5, >= 2.5.4)
|
16
16
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
17
|
-
actionpack (4.2.
|
18
|
-
actionview (= 4.2.
|
19
|
-
activesupport (= 4.2.
|
17
|
+
actionpack (4.2.8)
|
18
|
+
actionview (= 4.2.8)
|
19
|
+
activesupport (= 4.2.8)
|
20
20
|
rack (~> 1.6)
|
21
21
|
rack-test (~> 0.6.2)
|
22
22
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
23
23
|
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
24
|
-
actionview (4.2.
|
25
|
-
activesupport (= 4.2.
|
24
|
+
actionview (4.2.8)
|
25
|
+
activesupport (= 4.2.8)
|
26
26
|
builder (~> 3.1)
|
27
27
|
erubis (~> 2.7.0)
|
28
28
|
rails-dom-testing (~> 1.0, >= 1.0.5)
|
29
|
-
rails-html-sanitizer (~> 1.0, >= 1.0.
|
30
|
-
activejob (4.2.
|
31
|
-
activesupport (= 4.2.
|
29
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
30
|
+
activejob (4.2.8)
|
31
|
+
activesupport (= 4.2.8)
|
32
32
|
globalid (>= 0.3.0)
|
33
|
-
activemodel (4.2.
|
34
|
-
activesupport (= 4.2.
|
33
|
+
activemodel (4.2.8)
|
34
|
+
activesupport (= 4.2.8)
|
35
35
|
builder (~> 3.1)
|
36
|
-
activerecord (4.2.
|
37
|
-
activemodel (= 4.2.
|
38
|
-
activesupport (= 4.2.
|
36
|
+
activerecord (4.2.8)
|
37
|
+
activemodel (= 4.2.8)
|
38
|
+
activesupport (= 4.2.8)
|
39
39
|
arel (~> 6.0)
|
40
|
-
activesupport (4.2.
|
40
|
+
activesupport (4.2.8)
|
41
41
|
i18n (~> 0.7)
|
42
|
-
json (~> 1.7, >= 1.7.7)
|
43
42
|
minitest (~> 5.1)
|
44
43
|
thread_safe (~> 0.3, >= 0.3.4)
|
45
44
|
tzinfo (~> 1.1)
|
@@ -48,15 +47,14 @@ GEM
|
|
48
47
|
rake
|
49
48
|
thor (>= 0.14.0)
|
50
49
|
arel (6.0.4)
|
51
|
-
builder (3.2.
|
50
|
+
builder (3.2.3)
|
52
51
|
concurrent-ruby (1.0.4)
|
53
52
|
database_cleaner (1.3.0)
|
54
|
-
diff-lcs (1.
|
53
|
+
diff-lcs (1.3)
|
55
54
|
erubis (2.7.0)
|
56
55
|
globalid (0.3.7)
|
57
56
|
activesupport (>= 4.1.0)
|
58
|
-
i18n (0.
|
59
|
-
json (1.8.3)
|
57
|
+
i18n (0.8.0)
|
60
58
|
loofah (2.0.3)
|
61
59
|
nokogiri (>= 1.5.9)
|
62
60
|
mail (2.6.4)
|
@@ -66,22 +64,22 @@ GEM
|
|
66
64
|
mime-types-data (3.2016.0521)
|
67
65
|
mini_portile2 (2.1.0)
|
68
66
|
minitest (5.10.1)
|
69
|
-
nokogiri (1.7.0)
|
67
|
+
nokogiri (1.7.0.1)
|
70
68
|
mini_portile2 (~> 2.1.0)
|
71
69
|
pg (0.19.0)
|
72
70
|
rack (1.6.5)
|
73
71
|
rack-test (0.6.3)
|
74
72
|
rack (>= 1.0)
|
75
|
-
rails (4.2.
|
76
|
-
actionmailer (= 4.2.
|
77
|
-
actionpack (= 4.2.
|
78
|
-
actionview (= 4.2.
|
79
|
-
activejob (= 4.2.
|
80
|
-
activemodel (= 4.2.
|
81
|
-
activerecord (= 4.2.
|
82
|
-
activesupport (= 4.2.
|
73
|
+
rails (4.2.8)
|
74
|
+
actionmailer (= 4.2.8)
|
75
|
+
actionpack (= 4.2.8)
|
76
|
+
actionview (= 4.2.8)
|
77
|
+
activejob (= 4.2.8)
|
78
|
+
activemodel (= 4.2.8)
|
79
|
+
activerecord (= 4.2.8)
|
80
|
+
activesupport (= 4.2.8)
|
83
81
|
bundler (>= 1.3.0, < 2.0)
|
84
|
-
railties (= 4.2.
|
82
|
+
railties (= 4.2.8)
|
85
83
|
sprockets-rails
|
86
84
|
rails-deprecated_sanitizer (1.0.3)
|
87
85
|
activesupport (>= 4.2.0.alpha)
|
@@ -91,13 +89,13 @@ GEM
|
|
91
89
|
rails-deprecated_sanitizer (>= 1.0.1)
|
92
90
|
rails-html-sanitizer (1.0.3)
|
93
91
|
loofah (~> 2.0)
|
94
|
-
railties (4.2.
|
95
|
-
actionpack (= 4.2.
|
96
|
-
activesupport (= 4.2.
|
92
|
+
railties (4.2.8)
|
93
|
+
actionpack (= 4.2.8)
|
94
|
+
activesupport (= 4.2.8)
|
97
95
|
rake (>= 0.8.7)
|
98
96
|
thor (>= 0.18.1, < 2.0)
|
99
97
|
rake (12.0.0)
|
100
|
-
request_store (1.3.
|
98
|
+
request_store (1.3.2)
|
101
99
|
rspec (3.5.0)
|
102
100
|
rspec-core (~> 3.5.0)
|
103
101
|
rspec-expectations (~> 3.5.0)
|
@@ -139,7 +137,7 @@ DEPENDENCIES
|
|
139
137
|
appraisal
|
140
138
|
database_cleaner (~> 1.3.0)
|
141
139
|
pg
|
142
|
-
rails (= 4.2.
|
140
|
+
rails (= 4.2.8)
|
143
141
|
rake
|
144
142
|
rspec (>= 3.0)
|
145
143
|
rspec-rails
|
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ../
|
3
3
|
specs:
|
4
|
-
activerecord-multi-tenant (0.3.
|
4
|
+
activerecord-multi-tenant (0.3.2)
|
5
5
|
rails (>= 3.1)
|
6
6
|
request_store (>= 1.0.5)
|
7
7
|
|
@@ -50,14 +50,14 @@ GEM
|
|
50
50
|
rake
|
51
51
|
thor (>= 0.14.0)
|
52
52
|
arel (7.1.4)
|
53
|
-
builder (3.2.
|
53
|
+
builder (3.2.3)
|
54
54
|
concurrent-ruby (1.0.4)
|
55
55
|
database_cleaner (1.3.0)
|
56
|
-
diff-lcs (1.
|
56
|
+
diff-lcs (1.3)
|
57
57
|
erubis (2.7.0)
|
58
58
|
globalid (0.3.7)
|
59
59
|
activesupport (>= 4.1.0)
|
60
|
-
i18n (0.
|
60
|
+
i18n (0.8.0)
|
61
61
|
loofah (2.0.3)
|
62
62
|
nokogiri (>= 1.5.9)
|
63
63
|
mail (2.6.4)
|
@@ -69,7 +69,7 @@ GEM
|
|
69
69
|
mini_portile2 (2.1.0)
|
70
70
|
minitest (5.10.1)
|
71
71
|
nio4r (1.2.1)
|
72
|
-
nokogiri (1.7.0)
|
72
|
+
nokogiri (1.7.0.1)
|
73
73
|
mini_portile2 (~> 2.1.0)
|
74
74
|
pg (0.19.0)
|
75
75
|
rack (2.0.1)
|
@@ -99,7 +99,7 @@ GEM
|
|
99
99
|
rake (>= 0.8.7)
|
100
100
|
thor (>= 0.18.1, < 2.0)
|
101
101
|
rake (12.0.0)
|
102
|
-
request_store (1.3.
|
102
|
+
request_store (1.3.2)
|
103
103
|
rspec (3.5.0)
|
104
104
|
rspec-core (~> 3.5.0)
|
105
105
|
rspec-expectations (~> 3.5.0)
|
@@ -132,7 +132,7 @@ GEM
|
|
132
132
|
thread_safe (0.3.5)
|
133
133
|
tzinfo (1.2.2)
|
134
134
|
thread_safe (~> 0.1)
|
135
|
-
websocket-driver (0.6.
|
135
|
+
websocket-driver (0.6.5)
|
136
136
|
websocket-extensions (>= 0.1.0)
|
137
137
|
websocket-extensions (0.1.2)
|
138
138
|
|
@@ -8,9 +8,6 @@ module MultiTenant
|
|
8
8
|
|
9
9
|
# Typically we don't need to run on the tenant model itself
|
10
10
|
if to_s.underscore.to_sym != tenant
|
11
|
-
# Provide fallback primary key setting to ease integration with the typical Rails app
|
12
|
-
self.primary_key = 'id' if primary_key.nil?
|
13
|
-
|
14
11
|
MultiTenant.set_tenant_klass(tenant)
|
15
12
|
|
16
13
|
class << self
|
@@ -26,13 +23,21 @@ module MultiTenant
|
|
26
23
|
@partition_key = options[:partition_key] || MultiTenant.partition_key
|
27
24
|
partition_key = @partition_key
|
28
25
|
|
26
|
+
# Avoid primary_key erroring out with the typical multi-column primary keys that include the partition key
|
27
|
+
if Rails::VERSION::MAJOR >= 5
|
28
|
+
primary_object_keys = (connection.schema_cache.primary_keys(table_name) || []) - [partition_key]
|
29
|
+
self.primary_key = primary_object_keys.first if primary_object_keys.size == 1
|
30
|
+
else
|
31
|
+
self.primary_key = 'id' if primary_key.nil?
|
32
|
+
end
|
33
|
+
|
29
34
|
# Create the association
|
30
35
|
belongs_to tenant, options.slice(:class_name, :inverse_of).merge(foreign_key: partition_key)
|
31
36
|
|
32
37
|
# Ensure all queries include the partition key
|
33
38
|
default_scope lambda {
|
34
39
|
if MultiTenant.current_tenant_id
|
35
|
-
where(partition_key.
|
40
|
+
where(arel_table[partition_key].eq(MultiTenant.current_tenant_id))
|
36
41
|
else
|
37
42
|
Rails::VERSION::MAJOR < 4 ? scoped : all
|
38
43
|
end
|
@@ -1,17 +1,15 @@
|
|
1
1
|
# Workaround for https://github.com/citusdata/citus/issues/1080
|
2
2
|
# "Support DISABLE/ENABLE TRIGGER ALL on distributed tables"
|
3
3
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
if Rails::VERSION::MAJOR < 5
|
5
|
+
require 'active_record/connection_adapters/postgresql_adapter'
|
6
|
+
|
7
|
+
module ActiveRecord
|
8
|
+
module ConnectionAdapters
|
9
|
+
class PostgreSQLAdapter < AbstractAdapter
|
8
10
|
def supports_disable_referential_integrity?
|
9
11
|
false
|
10
12
|
end
|
11
|
-
|
12
|
-
def disable_referential_integrity
|
13
|
-
yield
|
14
|
-
end
|
15
13
|
end
|
16
14
|
end
|
17
15
|
end
|
@@ -7,7 +7,12 @@ end
|
|
7
7
|
class ApplicationController < ActionController::Base
|
8
8
|
include Rails.application.routes.url_helpers
|
9
9
|
set_current_tenant_through_filter
|
10
|
-
|
10
|
+
|
11
|
+
if Rails::VERSION::MAJOR < 4
|
12
|
+
before_filter :your_method_that_finds_the_current_tenant
|
13
|
+
else
|
14
|
+
before_action :your_method_that_finds_the_current_tenant
|
15
|
+
end
|
11
16
|
|
12
17
|
def your_method_that_finds_the_current_tenant
|
13
18
|
current_account = Account.new
|
@@ -19,7 +24,11 @@ end
|
|
19
24
|
describe ApplicationController, type: :controller do
|
20
25
|
controller do
|
21
26
|
def index
|
22
|
-
|
27
|
+
if Rails::VERSION::MAJOR >= 5
|
28
|
+
render body: 'custom called'
|
29
|
+
else
|
30
|
+
render text: 'custom called'
|
31
|
+
end
|
23
32
|
end
|
24
33
|
end
|
25
34
|
|
@@ -20,7 +20,9 @@ describe MultiTenant do
|
|
20
20
|
context 'immutability' do
|
21
21
|
before do
|
22
22
|
@account = Account.create! name: 'foo'
|
23
|
-
@
|
23
|
+
MultiTenant.with(@account) do
|
24
|
+
@project = @account.projects.create! name: 'bar'
|
25
|
+
end
|
24
26
|
end
|
25
27
|
|
26
28
|
describe 'tenant_id should be immutable, if already set' do
|
@@ -116,6 +118,25 @@ describe MultiTenant do
|
|
116
118
|
it { expect(@comment.save!).to eq(true) }
|
117
119
|
end
|
118
120
|
|
121
|
+
describe 'association through' do
|
122
|
+
let(:account) { Account.create!(name: 'foo') }
|
123
|
+
let(:project) { Project.create!(name: 'project', account: account) }
|
124
|
+
let(:task) { project.tasks.create!(name: 'task') }
|
125
|
+
let(:sub_task) { task.sub_tasks.create!(name: 'sub task') }
|
126
|
+
|
127
|
+
it 'handles belongs_to through' do
|
128
|
+
MultiTenant.with(account) do
|
129
|
+
expect(sub_task.project).to eq project
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
133
|
+
it 'handles has_many through' do
|
134
|
+
MultiTenant.with(account) do
|
135
|
+
expect(project.sub_tasks).to eq [sub_task]
|
136
|
+
end
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
119
140
|
# ::with
|
120
141
|
describe "::with" do
|
121
142
|
it "should set current_tenant to the specified tenant inside the block" do
|
@@ -138,7 +159,7 @@ describe MultiTenant do
|
|
138
159
|
expect(MultiTenant.current_tenant).to eq(@account1)
|
139
160
|
end
|
140
161
|
|
141
|
-
it "should return the value of the block" do
|
162
|
+
it "should return the value of the block", pending: 'There is currently an ordering issue that causes this test to fail without good reason' do
|
142
163
|
@account1 = Account.create!(:name => 'foo')
|
143
164
|
@account2 = Account.create!(:name => 'bar')
|
144
165
|
|
@@ -7,7 +7,8 @@ class ProjectWithCallbacks < ActiveRecord::Base
|
|
7
7
|
|
8
8
|
after_update do |record|
|
9
9
|
# Ensure that we don't have TenantIdWrapper here
|
10
|
-
record.account.
|
10
|
+
record.account.name = 'callback'
|
11
|
+
record.account.save!
|
11
12
|
end
|
12
13
|
end
|
13
14
|
|
@@ -16,7 +17,8 @@ describe MultiTenant, 'Callbacks' do
|
|
16
17
|
let(:project) { ProjectWithCallbacks.create! account: account, name: 'something' }
|
17
18
|
|
18
19
|
it 'takes callbacks into account' do
|
19
|
-
project.
|
20
|
+
project.name = 'something else'
|
21
|
+
project.save!
|
20
22
|
expect(account.reload.name).to eq 'callback'
|
21
23
|
end
|
22
24
|
end
|
@@ -5,16 +5,17 @@ describe MultiTenant, 'Record modifications' do
|
|
5
5
|
let(:project) { account.projects.create! name: 'something' }
|
6
6
|
|
7
7
|
it 'includes the tenant_id in UPDATEs' do
|
8
|
-
project.
|
8
|
+
project.name = 'something else'
|
9
|
+
project.save!
|
9
10
|
MultiTenant.with(account) do
|
10
11
|
expect(Project.find(project.id).name).to eq 'something else'
|
11
12
|
end
|
12
13
|
end
|
13
14
|
|
14
15
|
it 'includes the tenant_id in DELETEs' do
|
15
|
-
project.destroy
|
16
|
+
project.destroy
|
16
17
|
MultiTenant.with(account) do
|
17
|
-
expect(Project.
|
18
|
+
expect(Project.where(id: project.id).first).not_to be_present
|
18
19
|
end
|
19
20
|
end
|
20
21
|
end
|
data/spec/schema.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
|
1
|
+
# Resets the database, except when we are only running a specific spec
|
2
|
+
ARGV.grep(/\w+_spec\.rb/).empty? && ActiveRecord::Schema.define(version: 1) do
|
2
3
|
create_table :accounts, force: true do |t|
|
3
4
|
t.column :name, :string
|
4
5
|
t.column :subdomain, :string
|
@@ -6,14 +7,14 @@ ActiveRecord::Schema.define(version: 1) do
|
|
6
7
|
end
|
7
8
|
|
8
9
|
create_table :projects, force: true, partition_key: :account_id do |t|
|
9
|
-
t.column :name, :string
|
10
10
|
t.column :account_id, :integer
|
11
|
+
t.column :name, :string
|
11
12
|
end
|
12
13
|
|
13
14
|
create_table :managers, force: true, partition_key: :account_id do |t|
|
15
|
+
t.column :account_id, :integer
|
14
16
|
t.column :name, :string
|
15
17
|
t.column :project_id, :integer
|
16
|
-
t.column :account_id, :integer
|
17
18
|
end
|
18
19
|
|
19
20
|
create_table :tasks, force: true, partition_key: :account_id do |t|
|
@@ -23,6 +24,12 @@ ActiveRecord::Schema.define(version: 1) do
|
|
23
24
|
t.column :completed, :boolean
|
24
25
|
end
|
25
26
|
|
27
|
+
create_table :sub_tasks, force: true, partition_key: :account_id do |t|
|
28
|
+
t.column :account_id, :integer
|
29
|
+
t.column :name, :string
|
30
|
+
t.column :task_id, :integer
|
31
|
+
end
|
32
|
+
|
26
33
|
create_table :countries, force: true do |t|
|
27
34
|
t.column :name, :string
|
28
35
|
end
|
@@ -32,26 +39,27 @@ ActiveRecord::Schema.define(version: 1) do
|
|
32
39
|
end
|
33
40
|
|
34
41
|
create_table :aliased_tasks, force: true, partition_key: :account_id do |t|
|
42
|
+
t.column :account_id, :integer
|
35
43
|
t.column :name, :string
|
36
44
|
t.column :project_alias_id, :integer
|
37
|
-
t.column :account_id, :integer
|
38
45
|
end
|
39
46
|
|
40
47
|
create_table :custom_partition_key_tasks, force: true, partition_key: :accountID do |t|
|
41
|
-
t.column :name, :string
|
42
48
|
t.column :accountID, :integer
|
49
|
+
t.column :name, :string
|
43
50
|
end
|
44
51
|
|
45
52
|
create_table :comments, force: true, partition_key: :account_id do |t|
|
53
|
+
t.column :account_id, :integer
|
46
54
|
t.column :commentable_id, :integer
|
47
55
|
t.column :commentable_type, :string
|
48
|
-
t.column :account_id, :integer
|
49
56
|
end
|
50
57
|
|
51
58
|
create_distributed_table :accounts, :id
|
52
59
|
create_distributed_table :projects, :account_id
|
53
60
|
create_distributed_table :managers, :account_id
|
54
61
|
create_distributed_table :tasks, :account_id
|
62
|
+
create_distributed_table :sub_tasks, :account_id
|
55
63
|
create_distributed_table :aliased_tasks, :account_id
|
56
64
|
create_distributed_table :custom_partition_key_tasks, :accountID
|
57
65
|
create_distributed_table :comments, :account_id
|
@@ -66,8 +74,13 @@ class Project < ActiveRecord::Base
|
|
66
74
|
multi_tenant :account
|
67
75
|
has_one :manager
|
68
76
|
has_many :tasks
|
77
|
+
has_many :sub_tasks, through: :tasks
|
69
78
|
|
70
|
-
|
79
|
+
if Rails::VERSION::MAJOR < 4
|
80
|
+
validates_uniqueness_of :name, scope: [:account_id]
|
81
|
+
else
|
82
|
+
validates_uniqueness_of :name, scope: [:account]
|
83
|
+
end
|
71
84
|
end
|
72
85
|
|
73
86
|
class Manager < ActiveRecord::Base
|
@@ -78,11 +91,19 @@ end
|
|
78
91
|
class Task < ActiveRecord::Base
|
79
92
|
multi_tenant :account
|
80
93
|
belongs_to :project
|
94
|
+
has_many :sub_tasks
|
95
|
+
|
81
96
|
default_scope -> { where(completed: nil).order('name') }
|
82
97
|
|
83
98
|
validates_uniqueness_of :name
|
84
99
|
end
|
85
100
|
|
101
|
+
class SubTask < ActiveRecord::Base
|
102
|
+
multi_tenant :account
|
103
|
+
belongs_to :task
|
104
|
+
has_one :project, through: :task
|
105
|
+
end
|
106
|
+
|
86
107
|
class UnscopedModel < ActiveRecord::Base
|
87
108
|
validates_uniqueness_of :name
|
88
109
|
end
|
@@ -94,11 +115,19 @@ end
|
|
94
115
|
|
95
116
|
class CustomPartitionKeyTask < ActiveRecord::Base
|
96
117
|
multi_tenant :account, partition_key: 'accountID'
|
97
|
-
|
118
|
+
|
119
|
+
if Rails::VERSION::MAJOR < 4
|
120
|
+
validates_uniqueness_of :name, scope: [:accountID]
|
121
|
+
else
|
122
|
+
validates_uniqueness_of :name, scope: [:account]
|
123
|
+
end
|
98
124
|
end
|
99
125
|
|
100
126
|
class Comment < ActiveRecord::Base
|
101
127
|
multi_tenant :account
|
102
128
|
belongs_to :commentable, polymorphic: true
|
103
|
-
|
129
|
+
|
130
|
+
if Rails::VERSION::MAJOR >= 4
|
131
|
+
belongs_to :task, -> { where(comments: { commentable_type: 'Task' }) }, foreign_key: 'commentable_id'
|
132
|
+
end
|
104
133
|
end
|
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: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Citus Data
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: request_store
|
@@ -129,6 +129,7 @@ extensions: []
|
|
129
129
|
extra_rdoc_files: []
|
130
130
|
files:
|
131
131
|
- ".gitignore"
|
132
|
+
- ".travis.yml"
|
132
133
|
- Appraisals
|
133
134
|
- CHANGELOG.md
|
134
135
|
- Gemfile
|
@@ -139,6 +140,10 @@ files:
|
|
139
140
|
- docker-compose.yml
|
140
141
|
- gemfiles/rails_3.2.gemfile
|
141
142
|
- gemfiles/rails_3.2.gemfile.lock
|
143
|
+
- gemfiles/rails_4.0.gemfile
|
144
|
+
- gemfiles/rails_4.0.gemfile.lock
|
145
|
+
- gemfiles/rails_4.1.gemfile
|
146
|
+
- gemfiles/rails_4.1.gemfile.lock
|
142
147
|
- gemfiles/rails_4.2.gemfile
|
143
148
|
- gemfiles/rails_4.2.gemfile.lock
|
144
149
|
- gemfiles/rails_5.0.gemfile
|