password_strength 1.0.1 → 1.0.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +11 -10
- data/lib/password_strength/version.rb +1 -1
- data/password_strength.gemspec +3 -2
- metadata +20 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5e3b8abca743f54f9e90b9f2ad06c0167ae283c9
|
|
4
|
+
data.tar.gz: 857b943282d9a8d17d40536b110c66f4ce4896f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58cfc6aa1a651abb8c2e9f3c85b9c2c28935cc665b65cd285a27c3ffd43390f81b9f74ee6211a1d850ed15c1695182709a9006985a9b47753d61d6a09d4e2aa6
|
|
7
|
+
data.tar.gz: 7f36ddb9d0431c974fe43afb9a1e73f028109cf5137b032b672d50627b68c9eae9d33686004b1af11f71f338827e842830b17204ab5501d4281bf6560911ed18
|
data/Gemfile.lock
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
password_strength (1.0.
|
|
5
|
-
|
|
4
|
+
password_strength (1.0.2)
|
|
5
|
+
activemodel
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: http://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activemodel (4.1.
|
|
11
|
-
activesupport (= 4.1.
|
|
10
|
+
activemodel (4.1.6)
|
|
11
|
+
activesupport (= 4.1.6)
|
|
12
12
|
builder (~> 3.1)
|
|
13
|
-
activerecord (4.1.
|
|
14
|
-
activemodel (= 4.1.
|
|
15
|
-
activesupport (= 4.1.
|
|
13
|
+
activerecord (4.1.6)
|
|
14
|
+
activemodel (= 4.1.6)
|
|
15
|
+
activesupport (= 4.1.6)
|
|
16
16
|
arel (~> 5.0.0)
|
|
17
|
-
activesupport (4.1.
|
|
17
|
+
activesupport (4.1.6)
|
|
18
18
|
i18n (~> 0.6, >= 0.6.9)
|
|
19
19
|
json (~> 1.7, >= 1.7.7)
|
|
20
20
|
minitest (~> 5.1)
|
|
@@ -27,8 +27,8 @@ GEM
|
|
|
27
27
|
i18n (0.6.11)
|
|
28
28
|
json (1.8.1)
|
|
29
29
|
method_source (0.8.2)
|
|
30
|
-
minitest (5.4.
|
|
31
|
-
power_assert (0.1.
|
|
30
|
+
minitest (5.4.2)
|
|
31
|
+
power_assert (0.1.4)
|
|
32
32
|
pry (0.10.1)
|
|
33
33
|
coderay (~> 1.1.0)
|
|
34
34
|
method_source (~> 0.8.1)
|
|
@@ -56,6 +56,7 @@ PLATFORMS
|
|
|
56
56
|
ruby
|
|
57
57
|
|
|
58
58
|
DEPENDENCIES
|
|
59
|
+
activerecord
|
|
59
60
|
password_strength!
|
|
60
61
|
pry-meta
|
|
61
62
|
rake
|
data/password_strength.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |s|
|
|
|
8
8
|
s.authors = ["Nando Vieira"]
|
|
9
9
|
s.email = ["fnando.vieira@gmail.com"]
|
|
10
10
|
s.homepage = "http://github.com/fnando/password_strength"
|
|
11
|
-
s.summary = "Check password strength against several rules. Includes ActiveRecord support."
|
|
11
|
+
s.summary = "Check password strength against several rules. Includes ActiveRecord/ActiveModel support."
|
|
12
12
|
s.description = s.summary
|
|
13
13
|
s.license = "MIT"
|
|
14
14
|
|
|
@@ -17,8 +17,9 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
18
18
|
s.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
s.add_dependency "
|
|
20
|
+
s.add_dependency "activemodel"
|
|
21
21
|
|
|
22
|
+
s.add_development_dependency "activerecord"
|
|
22
23
|
s.add_development_dependency "rake"
|
|
23
24
|
s.add_development_dependency "pry-meta"
|
|
24
25
|
s.add_development_dependency "sqlite3"
|
metadata
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: password_strength
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nando Vieira
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-09-
|
|
11
|
+
date: 2014-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: activemodel
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: activerecord
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
27
41
|
- !ruby/object:Gem::Dependency
|
|
28
42
|
name: rake
|
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -80,7 +94,7 @@ dependencies:
|
|
|
80
94
|
- - ">="
|
|
81
95
|
- !ruby/object:Gem::Version
|
|
82
96
|
version: '0'
|
|
83
|
-
description: Check password strength against several rules. Includes ActiveRecord
|
|
97
|
+
description: Check password strength against several rules. Includes ActiveRecord/ActiveModel
|
|
84
98
|
support.
|
|
85
99
|
email:
|
|
86
100
|
- fnando.vieira@gmail.com
|
|
@@ -145,7 +159,8 @@ rubyforge_project:
|
|
|
145
159
|
rubygems_version: 2.2.2
|
|
146
160
|
signing_key:
|
|
147
161
|
specification_version: 4
|
|
148
|
-
summary: Check password strength against several rules. Includes ActiveRecord
|
|
162
|
+
summary: Check password strength against several rules. Includes ActiveRecord/ActiveModel
|
|
163
|
+
support.
|
|
149
164
|
test_files:
|
|
150
165
|
- test/active_model_test.rb
|
|
151
166
|
- test/jquery-1.4.2.js
|