minimalist_authentication 0.6.11 → 0.6.12

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: 17ebdced075f1ae091b76cb326265c31a57f04a7
4
- data.tar.gz: ac12a475c905e5e11a92b9367a9cd76a41be3f04
3
+ metadata.gz: ec4bb7c6fa5f0765b046204b52fc749e4e2b691c
4
+ data.tar.gz: 6567469a779c333801e11f3b87005787c416e1bd
5
5
  SHA512:
6
- metadata.gz: 8f89afe9dcf6fbca2774452dfd3134386584162d4d325a652be15a8cca9504150e581313be2ae9bf67ffcba1eada8e810d927927c55055edb6dd22aed910b2ca
7
- data.tar.gz: f29a55ece983cc45b0c2fbee6c3108750babc8605de96b83e6e7158a3b6780a7deaf5c654518a85cbeda84498725b14b3927f1e0a559019dbe312c51ded3e5cb
6
+ metadata.gz: 2071d40253de882b347472343462eb5884a54296d63b3db2ce3588afc6167a912661bfd1c7de0f3fd5bd5bf6c45478cf4333ac255a80038ee182bd27a20e996e
7
+ data.tar.gz: 2fda7cfc4a65f3a0ebc6a5707ebf0f2be9fccca676743af9ca506616c69a28ada1aa73a072136c49aa638e97ff8187c5533ced14a22411523264fc4523eb0ecc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minimalist_authentication (0.6.11)
4
+ minimalist_authentication (0.6.12)
5
5
  bcrypt (~> 3.1, >= 3.1.3)
6
6
 
7
7
  GEM
@@ -35,7 +35,7 @@ GEM
35
35
  i18n (~> 0.6, >= 0.6.4)
36
36
  multi_json (~> 1.0)
37
37
  arel (3.0.3)
38
- bcrypt (3.1.10)
38
+ bcrypt (3.1.11)
39
39
  builder (3.0.4)
40
40
  erubis (2.7.0)
41
41
  factory_girl (4.5.0)
@@ -96,3 +96,6 @@ DEPENDENCIES
96
96
  minimalist_authentication!
97
97
  rails (= 3.2.14)
98
98
  sqlite3 (~> 1.3, >= 1.3.9)
99
+
100
+ BUNDLED WITH
101
+ 1.11.2
@@ -26,7 +26,7 @@ module Minimalist
26
26
  validates_confirmation_of :password, :if => :password_required?
27
27
  validates_length_of :password, :within => 6..40, :if => :password_required?
28
28
 
29
- scope :active, -> { where active: true }
29
+ scope :active, ->(active = true) { where active: active }
30
30
 
31
31
 
32
32
  end
@@ -1,3 +1,3 @@
1
1
  module MinimalistAuthentication
2
- VERSION = '0.6.11'
2
+ VERSION = '0.6.12'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minimalist_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.11
4
+ version: 0.6.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Baldwin
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-06-01 00:00:00.000000000 Z
12
+ date: 2016-06-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bcrypt
@@ -168,7 +168,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
168
  version: '0'
169
169
  requirements: []
170
170
  rubyforge_project:
171
- rubygems_version: 2.2.2
171
+ rubygems_version: 2.5.1
172
172
  signing_key:
173
173
  specification_version: 4
174
174
  summary: A Rails authentication plugin that takes a minimalist approach.