rails_multitenant 0.5.0 → 0.5.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b26ac97762bed39380b26b1f08db3198f3d7d91f
4
- data.tar.gz: ef72bdd22908dfc9e150c168655db4f42ae26738
3
+ metadata.gz: '0934514796a4abd1d808f13834e57a8bd5518652'
4
+ data.tar.gz: 5a16cd56507b118219a22859d19b7c9b5c2a80d6
5
5
  SHA512:
6
- metadata.gz: 046aaf25a46bd08c344718ec700344b441f3b8131667f4295e0b7c6cdd7a5d2de17320356f6a94b43a8ae68907b4071a59352b6bbf0f04edcf9e693093d25ad6
7
- data.tar.gz: 2d1d346080098b3989eae5a089aa4a1d426081a1ce7413c718d81e60c2425076c9c2fc75387f7067414d873d55cbd29922ed94eb28206b871e241bc52b05d163
6
+ metadata.gz: f9fcfd6d79d3c610bdfef2342675c6060374186098ada4b3a695fa66be7ed50de1cc271a79fd796e5daba19a4774fc3940e04b7e695cfd89f29f960b3aebb2d3
7
+ data.tar.gz: 37399384a6d6b550f17fc23b1acdfd466e5ea6ba7ddecf9f0b1de2495f97470ffd5f6290fd6e5b45e92c3274419326395378c993cf1e840fdc3e13ba03cc9f28
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.5.1
4
+ * Fix incorrect Rails version dependency in rubygems.org.
5
+
3
6
  ### 0.5.0
4
7
  * Add `required` option to `multitenant_on` and `multitenant_on_model`.
5
8
 
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/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.
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
 
@@ -1,3 +1,3 @@
1
1
  module RailsMultitenant
2
- VERSION = '0.5.0'
2
+ VERSION = '0.5.1'
3
3
  end
@@ -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/rails_multitenant"
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.0
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-09-19 00:00:00.000000000 Z
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: '4.2'
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: '4.2'
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: '4.2'
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: '4.2'
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/rails_multitenant
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.1
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