rails_multitenant 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +1 -1
- data/lib/rails_multitenant/version.rb +1 -1
- data/rails_multitenant.gemspec +1 -1
- metadata +24 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '0934514796a4abd1d808f13834e57a8bd5518652'
|
4
|
+
data.tar.gz: 5a16cd56507b118219a22859d19b7c9b5c2a80d6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9fcfd6d79d3c610bdfef2342675c6060374186098ada4b3a695fa66be7ed50de1cc271a79fd796e5daba19a4774fc3940e04b7e695cfd89f29f960b3aebb2d3
|
7
|
+
data.tar.gz: 37399384a6d6b550f17fc23b1acdfd466e5ea6ba7ddecf9f0b1de2495f97470ffd5f6290fd6e5b45e92c3274419326395378c993cf1e840fdc3e13ba03cc9f28
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -103,5 +103,5 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
103
103
|
|
104
104
|
## Contributing
|
105
105
|
|
106
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/salsify/
|
106
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/salsify/rails-multitenant. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
107
107
|
|
data/rails_multitenant.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.email = ["pbreault@salsify.com"]
|
11
11
|
spec.summary = %q{Automatically configures multiple tenants in a Rails environment}
|
12
12
|
spec.description = %q{Handles multiple tenants in a Rails environment}
|
13
|
-
spec.homepage = "https://github.com/salsify/
|
13
|
+
spec.homepage = "https://github.com/salsify/rails-multitenant"
|
14
14
|
spec.license = 'MIT'
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_multitenant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pat Breault
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -28,30 +28,42 @@ dependencies:
|
|
28
28
|
name: activerecord
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.1'
|
34
|
+
- - "<"
|
32
35
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
36
|
+
version: '5.1'
|
34
37
|
type: :runtime
|
35
38
|
prerelease: false
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
37
40
|
requirements:
|
38
|
-
- -
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '4.1'
|
44
|
+
- - "<"
|
39
45
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
46
|
+
version: '5.1'
|
41
47
|
- !ruby/object:Gem::Dependency
|
42
48
|
name: activesupport
|
43
49
|
requirement: !ruby/object:Gem::Requirement
|
44
50
|
requirements:
|
45
|
-
- -
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '4.1'
|
54
|
+
- - "<"
|
46
55
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
56
|
+
version: '5.1'
|
48
57
|
type: :runtime
|
49
58
|
prerelease: false
|
50
59
|
version_requirements: !ruby/object:Gem::Requirement
|
51
60
|
requirements:
|
52
|
-
- -
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '4.1'
|
64
|
+
- - "<"
|
53
65
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
66
|
+
version: '5.1'
|
55
67
|
- !ruby/object:Gem::Dependency
|
56
68
|
name: coveralls
|
57
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -170,7 +182,7 @@ files:
|
|
170
182
|
- spec/item_subtype_spec.rb
|
171
183
|
- spec/item_with_optional_org_spec.rb
|
172
184
|
- spec/spec_helper.rb
|
173
|
-
homepage: https://github.com/salsify/
|
185
|
+
homepage: https://github.com/salsify/rails-multitenant
|
174
186
|
licenses:
|
175
187
|
- MIT
|
176
188
|
metadata: {}
|
@@ -190,7 +202,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
190
202
|
version: '0'
|
191
203
|
requirements: []
|
192
204
|
rubyforge_project:
|
193
|
-
rubygems_version: 2.5.
|
205
|
+
rubygems_version: 2.5.2
|
194
206
|
signing_key:
|
195
207
|
specification_version: 4
|
196
208
|
summary: Automatically configures multiple tenants in a Rails environment
|