jt-rails-generator-user 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0f5b69d33209d4864f7bd83f4fca4af58259746f
4
- data.tar.gz: fa045b65a2bd51a7599a36c56ad7c904b318ad97
3
+ metadata.gz: b3b75512c0261aa64aa3e6f44701331725ebbfbf
4
+ data.tar.gz: 5f920d3978b7ff92b12609c0e5f153c008d76718
5
5
  SHA512:
6
- metadata.gz: a1049df6a02d21388947ccd4bc19f7bf1cad9ec9c2d0b792920b65eb10d933514ccbb0faac0c18e875e0a5eac364cb550df403bc56448fd1840bfdcd628df881
7
- data.tar.gz: 48e1a357772036978a584b29b91db88a717ac641188bd7ead43a4231c47ce71d52e893517c5d46bd74ad0f1adaa8c0db37d03f3293bc095d879cb0bbcbc7e3c8
6
+ metadata.gz: 4d6b2ea4f30364999c2b7b3e9df37bcc8e47bc6e06572762e20d538a8fb761570b7e2ac75ad1d09198d1ddbda4f33ffb376e51b8ee19e91d099289b803424467
7
+ data.tar.gz: f739e611e7c9c174c9c45d266f6a9c57d017804c0d52cd28cee4c3a2fe5b73774d8faeee1c29ea027b7a9f00c8e42e58866f0cf10d4ae168e9930940b28ab000
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.summary = "Generate a scaffold for user authentication in Ruby On Rails"
4
4
  s.description = "JTRailsGeneratorUser is a generator for user authentication. You have the login and sign up page, password forgot feature."
5
5
  s.homepage = 'https://github.com/jonathantribouharet/jt-rails-generator-user'
6
- s.version = '1.0.0'
6
+ s.version = '1.0.1'
7
7
  s.files = `git ls-files`.split("\n")
8
8
  s.require_paths = ['lib']
9
9
  s.authors = ['Jonathan TRIBOUHARET']
@@ -3,7 +3,7 @@ module UserAuthentication
3
3
 
4
4
  included do
5
5
 
6
- has_secure_password(validations: false)
6
+ has_secure_password
7
7
 
8
8
  validates :email, presence: true, email_format: true, uniqueness: { case_sensitive: false}
9
9
  validates :password_token, uniqueness: true, if: Proc.new {|u| !u.password_token.blank? }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jt-rails-generator-user
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan TRIBOUHARET
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-02 00:00:00.000000000 Z
11
+ date: 2015-07-07 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: JTRailsGeneratorUser is a generator for user authentication. You have
14
14
  the login and sign up page, password forgot feature.