scottmotte-merb_auth_slice_multisite 0.3.1 → 0.3.2

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.
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 3
4
- :patch: 1
4
+ :patch: 2
@@ -9,8 +9,8 @@ module Merb
9
9
  property :site_id, Integer
10
10
  # Validations
11
11
  validates_present :site_id
12
- validates_is_unique :login, :scope => :site_id
13
- validates_is_unique :email, :scope => :site_id
12
+ validates_is_unique :login
13
+ validates_is_unique :email
14
14
  # Relationships/Associations
15
15
  belongs_to :site
16
16
  end # base.class_eval
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scottmotte-merb_auth_slice_multisite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - scottmotte
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-04-06 00:00:00 -07:00
12
+ date: 2009-04-08 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -19,9 +19,8 @@ executables: []
19
19
 
20
20
  extensions: []
21
21
 
22
- extra_rdoc_files:
23
- - README.textile
24
- - LICENSE
22
+ extra_rdoc_files: []
23
+
25
24
  files:
26
25
  - README.textile
27
26
  - VERSION.yml
@@ -39,7 +38,6 @@ files:
39
38
  - spec/mixins/user_belongs_to_site_spec.rb
40
39
  - spec/models
41
40
  - spec/models/site_spec.rb
42
- - spec/requests
43
41
  - spec/spec_helper.rb
44
42
  - app/controllers
45
43
  - app/controllers/application.rb
@@ -61,7 +59,6 @@ files:
61
59
  - stubs/app
62
60
  - stubs/app/controllers
63
61
  - stubs/app/controllers/application.rb
64
- - LICENSE
65
62
  has_rdoc: true
66
63
  homepage: http://github.com/scottmotte/merb_auth_slice_multisite
67
64
  post_install_message:
data/LICENSE DELETED
@@ -1,20 +0,0 @@
1
- Copyright (c) 2009 Scott Motte
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.