password_strength 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: 857925632a4b2c53d8fa8f98dd2851da7e88d720
4
- data.tar.gz: 042a655e9cfc485aa5cefd63bd1ee42c17385178
3
+ metadata.gz: a26d1b4bca06d36d07de042c5d6828b9bef22cbf
4
+ data.tar.gz: 8afa992308aa4a82b32fbef89d79c0c1da8e0ac8
5
5
  SHA512:
6
- metadata.gz: 22a3db0a2a7ab3eb678e4a314218911dfe7815283d145fbe688429e0310b642913ef3a5042fa71e16e129ed822410914320622768b001bc1603d7eee1e83b263
7
- data.tar.gz: ed37ba3e80c3b8b2f18e9d6c0711bf5ab091682eb26312715a3efd94b73fe3d5f93e9c0fef2369a08411cafeba47403caa3a427c27859ec599bd7127d0335310
6
+ metadata.gz: bffbc6750720796940a3bf9179f81602be70c2e36f958ff5bb9c78d3980a8c0bbe4ae93ad2251ca213b15e3ed3735de0f8b8abb1e5ee73ff2e2e48f1d5f4f7bc
7
+ data.tar.gz: 715a3f9ea0f4ee453cc752cdfe0c3cf1d5c1f98e3b2d9251e417ca87b14b4c18e6c73dac883912b3e21551ae7c4edaaec11038adce5c594a3c65fb2fedded3b2
data/Gemfile.lock CHANGED
@@ -1,20 +1,20 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- password_strength (1.0.0)
4
+ password_strength (1.0.1)
5
5
  activerecord
6
6
 
7
7
  GEM
8
8
  remote: http://rubygems.org/
9
9
  specs:
10
- activemodel (4.1.4)
11
- activesupport (= 4.1.4)
10
+ activemodel (4.1.5)
11
+ activesupport (= 4.1.5)
12
12
  builder (~> 3.1)
13
- activerecord (4.1.4)
14
- activemodel (= 4.1.4)
15
- activesupport (= 4.1.4)
13
+ activerecord (4.1.5)
14
+ activemodel (= 4.1.5)
15
+ activesupport (= 4.1.5)
16
16
  arel (~> 5.0.0)
17
- activesupport (4.1.4)
17
+ activesupport (4.1.5)
18
18
  i18n (~> 0.6, >= 0.6.9)
19
19
  json (~> 1.7, >= 1.7.7)
20
20
  minitest (~> 5.1)
@@ -27,25 +27,27 @@ GEM
27
27
  i18n (0.6.11)
28
28
  json (1.8.1)
29
29
  method_source (0.8.2)
30
- minitest (5.4.0)
31
- pry (0.9.12.6)
32
- coderay (~> 1.0)
33
- method_source (~> 0.8)
30
+ minitest (5.4.1)
31
+ power_assert (0.1.3)
32
+ pry (0.10.1)
33
+ coderay (~> 1.1.0)
34
+ method_source (~> 0.8.1)
34
35
  slop (~> 3.4)
35
36
  pry-meta (0.0.9)
36
37
  awesome_print
37
38
  pry
38
39
  pry-nav
39
40
  pry-remote
40
- pry-nav (0.2.3)
41
- pry (~> 0.9.10)
41
+ pry-nav (0.2.4)
42
+ pry (>= 0.9.10, < 0.11.0)
42
43
  pry-remote (0.1.8)
43
44
  pry (~> 0.9)
44
45
  slop (~> 3.0)
45
46
  rake (10.3.2)
46
47
  slop (3.6.0)
47
48
  sqlite3 (1.3.9)
48
- test-unit (2.5.5)
49
+ test-unit (3.0.1)
50
+ power_assert
49
51
  thread_safe (0.3.4)
50
52
  tzinfo (1.2.2)
51
53
  thread_safe (~> 0.1)
data/README.md CHANGED
@@ -123,7 +123,7 @@ PasswordStrength implements two validators: `PasswordStrength::Base` and `Passwo
123
123
 
124
124
  The PasswordStrength also implements the algorithm in the JavaScript.
125
125
 
126
- ```ruby
126
+ ```javascript
127
127
  var strength = PasswordStrength.test("johndoe", "mypass");
128
128
  strength.isGood();
129
129
  strength.isStrong();
@@ -135,14 +135,14 @@ The API is basically the same!
135
135
 
136
136
  You can use the `:exclude` option. Only regular expressions are supported for now.
137
137
 
138
- ```ruby
138
+ ```javascript
139
139
  var strength = PasswordStrength.test("johndoe", "password with whitespaces", {exclude: /\s/});
140
140
  strength.isInvalid();
141
141
  ```
142
142
 
143
143
  Additionaly, a jQuery plugin is available.
144
144
 
145
- ```ruby
145
+ ```javascript
146
146
  $.strength("#username", "#password");
147
147
  ```
148
148
 
@@ -152,7 +152,7 @@ The result will be an image to the respective strength status. By default the im
152
152
 
153
153
  You can overwrite the image path and the default callback.
154
154
 
155
- ```ruby
155
+ ```javascript
156
156
  $.strength.weakImage = "/weak.png";
157
157
  $.strength.goodImage = "/good.png";
158
158
  $.strength.strongImage = "/strong.png";
@@ -163,7 +163,7 @@ $.strength.callback = function(username, password, strength) {
163
163
 
164
164
  If you just want to overwrite the callback, you can simple do
165
165
 
166
- ```ruby
166
+ ```javascript
167
167
  $.strength("#username", "#password", function(username, password, strength){
168
168
  // do whatever you want
169
169
  });
@@ -165,7 +165,7 @@ var PasswordStrength = (function(){
165
165
  } else if (level == "good") {
166
166
  return this.isStrong() || this.isGood();
167
167
  } else {
168
- return !this.containInvalidMatches();
168
+ return !this.containInvalidMatches() && !this.usesCommonWord();
169
169
  }
170
170
  };
171
171
 
@@ -264,7 +264,7 @@ var PasswordStrength = (function(){
264
264
  return strength;
265
265
  };
266
266
 
267
- PasswordStrength.commonWords = ["000000", "010203", "1111", "11111", "111111", "11111111", "112233", "1212", "121212", "123123", "1234", "12345", "123456", "1234567", "12345678", "123456789", "1234567890", "1313", "131313", "2000", "2112", "2222", "232323", "3333", "4128", "4321", "4444", "5150", "5555", "555555", "654321", "6666", "666666", "6969", "696969", "7777", "777777", "7777777", "8675309", "987654", "aaaa", "aaaaaa", "abc123", "abcdef", "abgrtyu", "access", "access14", "action", "admin", "adobe123", "albert", "alex", "alexis", "amanda", "amateur", "andrea", "andrew", "angel", "angela", "angels", "animal", "anthony", "apollo", "apple", "apples", "arsenal", "arthur", "asdf", "asdfgh", "ashley", "asshole", "august", "austin", "azerty", "baby", "badboy", "bailey", "banana", "barney", "baseball", "batman", "beach", "bear", "beaver", "beavis", "beer", "bigcock", "bigdaddy", "bigdick", "bigdog", "bigtits", "bill", "billy", "birdie", "bitch", "bitches", "biteme", "black", "blazer", "blonde", "blondes", "blowjob", "blowme", "blue", "bond007", "bonnie", "booboo", "boobs", "booger", "boomer", "booty", "boston", "brandon", "brandy", "braves", "brazil", "brian", "bronco", "broncos", "bubba", "buddy", "bulldog", "buster", "butter", "butthead", "calvin", "camaro", "cameron", "canada", "captain", "carlos", "carter", "casper", "charles", "charlie", "cheese", "chelsea", "chester", "chevy", "chicago", "chicken", "chris", "cocacola", "cock", "coffee", "college", "compaq", "computer", "cookie", "cool", "cooper", "corvette", "cowboy", "cowboys", "cream", "crystal", "cumming", "cumshot", "cunt", "dakota", "dallas", "daniel", "danielle", "dave", "david", "debbie", "dennis", "deuseamor", "diablo", "diamond", "dick", "dirty", "doctor", "doggie", "dolphin", "dolphins", "donald", "dragon", "dreams", "driver", "eagle", "eagle1", "eagles", "edward", "einstein", "enjoy", "enter", "eric", "erotic", "extreme", "falcon", "FaMiLia", "fender", "ferrari", "fire", "firebird", "fish", "fishing", "florida", "flower", "flyers", "football", "ford", "forever", "frank", "fred", "freddy", "freedom", "fuck", "fucked", "fucker", "fucking", "fuckme", "fuckyou", "gandalf", "gateway", "gators", "gemini", "george", "giants", "ginger", "girl", "girls", "golden", "golf", "golfer", "gordon", "great", "green", "gregory", "guitar", "gunner", "hammer", "hannah", "happy", "hardcore", "harley", "heather", "hello", "helpme", "hentai", "hockey", "hooters", "horney", "horny", "hotdog", "house", "hunter", "hunting", "iceman", "iloveyou", "internet", "iwantu", "jack", "jackie", "jackson", "jaguar", "jake", "james", "japan", "jasmine", "jason", "jasper", "jennifer", "jeremy", "jessica", "jesus", "jesuscristo", "john", "johnny", "johnson", "jordan", "joseph", "joshua", "juice", "junior", "justin", "kelly", "kevin", "killer", "king", "kitty", "knight", "ladies", "lakers", "lauren", "leather", "legend", "letmein", "little", "london", "love", "lover", "lovers", "lucky", "maddog", "madison", "maggie", "magic", "magnum", "MARCELO", "marine", "mark", "marlboro", "martin", "marvin", "master", "matrix", "matt", "matthew", "maverick", "maxwell", "melissa", "member", "mercedes", "merlin", "michael", "michelle", "mickey", "midnight", "mike", "miller", "mine", "mistress", "money", "monica", "monkey", "monster", "morgan", "mother", "mountain", "movie", "muffin", "murphy", "music", "mustang", "naked", "nascar", "nathan", "naughty", "ncc1701", "newyork", "nicholas", "nicole", "ninja", "nipple", "nipples", "oliver", "orange", "ou812", "packers", "panther", "panties", "paris", "parker", "pass", "passw0rd", "password", "password1", "password12", "password123", "patrick", "paul", "peaches", "peanut", "penis", "pepper", "peter", "phantom", "phoenix", "photoshop", "player", "please", "pookie", "porn", "porno", "porsche", "power", "prince", "princess", "private", "purple", "pussies", "pussy", "qazwsx", "qwert", "qwerty", "qwertyui", "rabbit", "rachel", "racing", "raiders", "rainbow", "ranger", "rangers", "rebecca", "redskins", "redsox", "redwings", "richard", "robert", "rock", "rocket", "rosebud", "runner", "rush2112", "russia", "samantha", "sammy", "samson", "sandra", "saturn", "scooby", "scooter", "scorpio", "scorpion", "scott", "secret", "sexsex", "sexy", "shadow", "shannon", "shaved", "shit", "sierra", "silver", "skippy", "slayer", "slut", "smith", "smokey", "snoopy", "soccer", "sophie", "spanky", "sparky", "spider", "squirt", "srinivas", "star", "stars", "startrek", "starwars", "steelers", "steve", "steven", "sticky", "stupid", "success", "suckit", "summer", "sunshine", "super", "superman", "surfer", "swimming", "sydney", "taylor", "teens", "tennis", "teresa", "test", "tester", "testing", "theman", "thomas", "thunder", "thx1138", "tiffany", "tiger", "tigers", "tigger", "time", "tits", "tomcat", "topgun", "toyota", "travis", "trouble", "trustno1", "tucker", "turtle", "twitter", "united", "vagina", "victor", "victoria", "video", "viking", "viper", "voodoo", "voyager", "walter", "warrior", "welcome", "whatever", "white", "william", "willie", "wilson", "winner", "winston", "winter", "wizard", "wolf", "women", "xavier", "xxxx", "xxxxx", "xxxxxx", "xxxxxxxx", "yamaha", "yankee", "yankees", "yellow", "young", "zxcvbn", "zxcvbnm", "zzzzzz"];
267
+ PasswordStrength.commonWords = ["!qaz1qaz", "!qaz2wsx", "!qaz2wsx", "!qazxsw2", "!qazzaq1", "#edc4rfv", "000000", "010203", "1111", "11111", "111111", "11111111", "112233", "1212", "121212", "123123", "1234", "12345", "123456", "1234567", "12345678", "123456789", "1234567890", "123qweasd", "12qw!@qw", "1313", "131313", "1941.salembbb.41", "1qaz!qaz", "1qaz@wsx", "1qazxsw@", "1qazzaq!", "2000", "2112", "2222", "232323", "2wsx@wsx", "3333", "3edc#edc", "4128", "4321", "4444", "5150", "5555", "555555", "654321", "6666", "666666", "6969", "696969", "7777", "777777", "7777777", "8675309", "987654", "@wsx2wsx", "aaaa", "aaaaaa", "aaliyah1", "abc123", "abc123abc", "abc123abc", "abcabc123", "abcabc123", "abcd1234", "abcdef", "abgrtyu", "abigail1", "access", "access14", "action", "addison1", "admin", "adobe123", "airforce1", "alabama1", "albert", "alex", "alexander1", "alexandra1", "alexis", "allison1", "amanda", "amateur", "america1", "anderson1", "andrea", "andrew", "angel", "angel101", "angel123", "angela", "angelina1", "angels", "animal", "annabelle1", "anthony", "anthony1", "anthony11", "antonio1", "apollo", "apple", "apples", "arianna1", "arsenal", "arsenal1", "arsenal12", "arsenal123", "arthur", "asdf", "asdfgh", "ashley", "ashley12", "asshole", "asshole1", "atlanta1", "august", "august08", "august10", "august12", "august20", "august22", "austin", "austin02", "austin316", "australia1", "awesome1", "azerty", "baby", "babyboy1", "babygirl1", "babygirl1", "babygurl1", "badboy", "bailey", "bailey12", "banana", "barcelona1", "barney", "baseball", "baseball1", "batista1", "batman", "beach", "bear", "beautiful1", "beaver", "beavis", "beckham7", "beer", "bella123", "benjamin1", "bentley1", "bethany1", "bigcock", "bigdaddy", "bigdaddy1", "bigdick", "bigdog", "bigtits", "bill", "billy", "birdie", "bitch", "bitches", "biteme", "black", "blazer", "blessed1", "blink-182", "blink182", "blonde", "blondes", "blondie1", "blowjob", "blowme", "blue", "bond007", "bonnie", "booboo", "boobs", "booger", "boomer", "booty", "boricua1", "boston", "bradley1", "brandon", "brandon1", "brandon2", "brandon7", "brandy", "braves", "braxton1", "brayden1", "brazil", "breanna1", "brian", "brianna1", "brittany1", "brittney1", "bronco", "broncos", "broncos1", "brooklyn1", "brownie1", "bubba", "bubbles1", "buddy", "buddy123", "bulldog", "buster", "butter", "buttercup1", "butterfly1", "butterfly7", "butthead", "buttons1", "calvin", "camaro", "cameron", "cameron1", "canada", "candy123", "captain", "carlos", "carolina1", "carter", "casper", "cassandra1", "catherine1", "celtic1888", "chargers1", "charles", "charles1", "charlie", "charlie1", "charlotte1", "charmed1", "cheese", "chelsea", "chelsea1", "chelsea123", "chester", "chester1", "chevy", "cheyenne1", "chicago", "chicago1", "chicken", "chicken1", "chocolate1", "chopper1", "chris", "chris123", "christian1", "christina1", "christine1", "christmas1", "classof08", "clayton1", "cocacola", "cock", "coffee", "college", "college1", "colombia1", "colorado1", "compaq", "computer", "computer1", "cookie", "cool", "cooper", "corvette", "courtney1", "cowboy", "cowboys", "cowboys1", "cream", "cricket1", "crystal", "crystal1", "cumming", "cumshot", "cunt", "cutiepie1", "daisy123", "dakota", "dallas", "dallas22", "dan1elle", "daniel", "daniela1", "danielle", "danielle1", "dave", "david", "david123", "death666", "debbie", "december1", "december21", "dennis", "derrick1", "destiny1", "deuseamor", "devil666", "diablo", "diamond", "diamond1", "diamonds1", "dick", "dirty", "doctor", "doggie", "dolphin", "dolphin1", "dolphins", "dolphins1", "dominic1", "donald", "douglas1", "dragon", "dreams", "driver", "eagle", "eagle1", "eagles", "edward", "einstein", "elizabeth1", "elizabeth2", "england1", "enjoy", "enter", "eric", "erotic", "extreme", "falcon", "falcons1", "falcons7", "familia", "fender", "ferrari", "fire", "firebird", "fish", "fishing", "florida", "florida1", "flower", "flyers", "football", "football1", "ford", "forever", "forever1", "forever21", "formula1", "frank", "frankie1", "fred", "freddie1", "freddy", "freedom", "freedom1", "friday13", "friends1", "friends2", "fuck", "fucked", "fucker", "fucking", "fuckme", "fuckoff1", "fuckyou", "fuckyou1", "fuckyou2", "fuckyou2", "gabriel1", "gandalf", "gangsta1", "garrett1", "gateway", "gateway1", "gators", "gemini", "genesis1", "george", "georgia1", "gerrard8", "giants", "giggles1", "ginger", "girl", "girls", "goddess1", "godislove1", "golden", "golf", "golfer", "gordon", "gordon24", "grandma1", "great", "green", "greenday1", "gregory", "guitar", "gunner", "hammer", "hannah", "happy", "hardcore", "harley", "harry123", "hawaii50", "heather", "heather1", "hello", "hello123", "helpme", "hentai", "hershey1", "hockey", "holiday1", "hollywood1", "honey123", "hooters", "horney", "horny", "hotdog", "house", "houston1", "hunter", "hunter01", "hunting", "iceman", "iloveme1", "iloveme2", "iloveyou", "iloveyou1", "iloveyou2", "iloveyou2", "internet", "internet1", "inuyasha1", "ireland1", "isabella1", "isabelle1", "iverson3", "iwantu", "iydgtvmujl6f", "jack", "jackie", "jackson", "jackson1", "jackson5", "jaguar", "jake", "jamaica1", "james", "james123", "january1", "january29", "japan", "jasmine", "jasmine1", "jason", "jasper", "jazmine1", "jeffrey1", "jehovah1", "jennifer", "jennifer1", "jennifer2", "jeremiah1", "jeremy", "jessica", "jessica1", "jessica7", "jesus", "jesus123", "jesus143", "jesus1st", "jesus4me", "jesus777", "jesuscristo", "jesusis#1", "jesusis1", "john", "john3:16", "johncena1", "johnny", "johnson", "jonathan1", "jordan", "jordan01", "jordan12", "jordan23", "joseph", "joshua", "joshua01", "juice", "junior", "justice1", "justin", "justin01", "justin11", "justin21", "justin23", "katelyn1", "katherine1", "kathryn1", "katrina1", "kelly", "kendall1", "kennedy1", "kenneth1", "kevin", "killer", "kimberly1", "king", "kitty", "knight", "kristen1", "kristin1", "l6fkiy9on", "ladies", "ladybug1", "lakers", "lakers24", "lampard8", "laura123", "lauren", "leather", "lebron23", "legend", "letmein", "letmein1", "liberty1", "lindsay1", "lindsey1", "little", "liverp00l", "liverpool1", "liverpool123", "london", "longhorns1", "love", "love4ever", "lover", "lovers", "loveyou2", "lucky", "lucky123", "m1chelle", "mackenzie1", "maddog", "madison", "madison01", "madison1", "madonna1", "maggie", "magic", "magnum", "makayla1", "marcelo", "marie123", "marine", "marines1", "marissa1", "mark", "marlboro", "marshall1", "martin", "marvin", "master", "matrix", "matt", "matthew", "matthew1", "matthew2", "matthew3", "maverick", "maxwell", "maxwell1", "melanie1", "melissa", "melissa1", "member", "mercedes", "mercedes1", "merlin", "metallica1", "michael", "michael01", "michael07", "michael1", "michael2", "michael7", "micheal1", "michele1", "michelle", "michelle1", "michelle2", "mickey", "midnight", "midnight1", "mike", "miller", "mine", "miranda1", "mistress", "molly123", "money", "monica", "monique1", "monkey", "monkey01", "monkey12", "monkey13", "monkeys1", "monster", "monster1", "montana1", "morgan", "mother", "mountain", "movie", "muffin", "murphy", "music", "music123", "mustang", "mustang1", "myspace1", "naked", "nascar", "natalie1", "natasha1", "nathan", "nathan06", "naughty", "ncc1701", "newyork", "newyork1", "nicholas", "nicholas1", "nichole1", "nicole", "nicole12", "ninja", "nipple", "nipples", "nirvana1", "november1", "november11", "november15", "november16", "nursing1", "october1", "october13", "october22", "oliver", "omarion1", "orange", "orlando1", "ou812", "p4ssword", "p@$$w0rd", "p@55w0rd", "p@ssw0rd", "pa$$w0rd", "pa55w0rd", "pa55word", "packers", "panther", "panther1", "panthers1", "panties", "paris", "parker", "pass", "pass1234", "passion1", "passw0rd", "passw0rd", "passw0rd1", "password", "password01", "password1", "password1", "password1!", "password11", "password12", "password12", "password123", "password123", "password13", "password2", "password21", "password3", "password4", "password5", "password7", "password9", "patches1", "patricia1", "patrick", "patrick1", "paul", "peaches", "peaches1", "peanut", "peanut01", "peanut11", "pebbles1", "penguin1", "penis", "pepper", "peter", "phantom", "phantom1", "phoenix", "phoenix1", "photoshop", "pickles1", "playboy1", "player", "please", "pokemon1", "poohbear1", "poohbear1", "pookie", "popcorn1", "porn", "porno", "porsche", "power", "pr1nc3ss", "pr1ncess", "precious1", "preston1", "prince", "princess", "princess01", "princess07", "princess08", "princess1", "princess12", "princess123", "princess13", "princess15", "princess18", "princess19", "princess2", "princess21", "princess23", "princess24", "princess4", "princess5", "princess7", "private", "prototype1", "pumpkin1", "purple", "pussies", "pussy", "qazwsx", "qwert", "qwerty", "qwerty123", "qwertyui", "rabbit", "rachel", "racing", "raiders", "raiders1", "rainbow", "rainbow1", "ranger", "rangers", "rangers1", "raymond1", "rebecca", "rebecca1", "rebelde1", "redskins", "redskins1", "redsox", "redwings", "ricardo1", "richard", "richard1", "robert", "robert01", "rock", "rocket", "rockstar1", "rocky123", "rockyou1", "rockyou1", "ronaldo7", "rosebud", "runner", "rush2112", "russell1", "russia", "rusty123", "sabrina1", "sail2boat3", "samantha", "samantha1", "sammy", "samson", "sandra", "santana1", "saturn", "savannah1", "scooby", "scooter", "scooter1", "scorpio", "scorpio1", "scorpion", "scotland1", "scott", "scrappy1", "sebastian1", "secret", "senior06", "senior07", "september1", "serenity1", "sexsex", "sexy", "shadow", "shannon", "shannon1", "shaved", "shit", "shopping1", "sierra", "silver", "skippy", "skittles1", "slayer", "slipknot1", "slut", "smith", "smokey", "smokey01", "snickers1", "snoopy", "snowball1", "soccer", "soccer11", "soccer12", "soccer13", "soccer14", "soccer17", "softball1", "sophie", "spanky", "sparky", "spartan117", "special1", "spencer1", "spider", "spiderman1", "spongebob1", "squirt", "srinivas", "star", "stars", "start123", "startrek", "starwars", "starwars1", "steelers", "steelers1", "stephanie1", "stephen1", "steve", "steven", "sticky", "stupid", "success", "suckit", "summer", "summer01", "summer05", "summer06", "summer07", "summer08", "summer99", "sunshine", "sunshine1", "super", "superman", "superman1", "superstar1", "surfer", "sweetie1", "sweetpea1", "swimming", "sydney", "taylor", "taylor13", "tbfkiy9on", "teddybear1", "teens", "tennis", "teresa", "test", "tester", "testing", "theman", "thesims2", "thirteen13", "thomas", "thumper1", "thunder", "thunder1", "thx1138", "tiffany", "tiffany1", "tiger", "tiger123", "tigers", "tigger", "tigger01", "tigger12", "tigger123", "time", "timothy1", "tinkerbell1", "titanic1", "tits", "tomcat", "topgun", "toyota", "travis", "trinity1", "trinity3", "tristan1", "trouble", "trouble1", "trustno1", "trustno1", "trustno1", "tucker", "turtle", "twilight1", "twitter", "unicorn1", "united", "vagina", "valerie1", "vampire1", "vanessa1", "vanilla1", "veronica1", "victor", "victoria", "victoria1", "video", "viking", "vincent1", "viper", "voodoo", "voyager", "walter", "warrior", "welcome", "welcome1", "welcome123", "welcome2", "whatever", "whatever1", "white", "whitney1", "william", "william1", "willie", "wilson", "winner", "winston", "winston1", "winter", "winter06", "wizard", "wolf", "women", "xavier", "xxxx", "xxxxx", "xxxxxx", "xxxxxxxx", "yamaha", "yankee", "yankees", "yankees1", "yankees2", "yellow", "young", "z,iyd86i", "zachary1", "zaq!1qaz", "zaq!2wsx", "zaq!xsw2", "zaq1!qaz", "zaq1@wsx", "zaq1zaq!", "zxcvbn", "zxcvbnm", "zzzzzz"];
268
268
 
269
269
  return PasswordStrength;
270
270
  })();
@@ -2,7 +2,7 @@ module PasswordStrength
2
2
  module Version # :nodoc: all
3
3
  MAJOR = 1
4
4
  MINOR = 0
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
data/support/common.txt CHANGED
@@ -1,3 +1,9 @@
1
+ !qaz1qaz
2
+ !qaz2wsx
3
+ !qaz2wsx
4
+ !qazxsw2
5
+ !qazzaq1
6
+ #edc4rfv
1
7
  000000
2
8
  010203
3
9
  1111
@@ -15,13 +21,22 @@
15
21
  12345678
16
22
  123456789
17
23
  1234567890
24
+ 123qweasd
25
+ 12qw!@qw
18
26
  1313
19
27
  131313
28
+ 1941.salembbb.41
29
+ 1qaz!qaz
30
+ 1qaz@wsx
31
+ 1qazxsw@
32
+ 1qazzaq!
20
33
  2000
21
34
  2112
22
35
  2222
23
36
  232323
37
+ 2wsx@wsx
24
38
  3333
39
+ 3edc#edc
25
40
  4128
26
41
  4321
27
42
  4444
@@ -38,54 +53,108 @@
38
53
  7777777
39
54
  8675309
40
55
  987654
56
+ @wsx2wsx
41
57
  aaaa
42
58
  aaaaaa
59
+ aaliyah1
43
60
  abc123
61
+ abc123abc
62
+ abc123abc
63
+ abcabc123
64
+ abcabc123
65
+ abcd1234
44
66
  abcdef
45
67
  abgrtyu
68
+ abigail1
46
69
  access
47
70
  access14
48
71
  action
72
+ addison1
49
73
  admin
50
74
  adobe123
75
+ airforce1
76
+ alabama1
51
77
  albert
52
78
  alex
79
+ alexander1
80
+ alexandra1
53
81
  alexis
82
+ allison1
54
83
  amanda
55
84
  amateur
85
+ america1
86
+ anderson1
56
87
  andrea
57
88
  andrew
58
89
  angel
90
+ angel101
91
+ angel123
59
92
  angela
93
+ angelina1
60
94
  angels
61
95
  animal
96
+ annabelle1
62
97
  anthony
98
+ anthony1
99
+ anthony11
100
+ antonio1
63
101
  apollo
64
102
  apple
65
103
  apples
104
+ arianna1
66
105
  arsenal
106
+ arsenal1
107
+ arsenal12
108
+ arsenal123
67
109
  arthur
68
110
  asdf
69
111
  asdfgh
70
112
  ashley
113
+ ashley12
71
114
  asshole
115
+ asshole1
116
+ atlanta1
72
117
  august
118
+ august08
119
+ august10
120
+ august12
121
+ august20
122
+ august22
73
123
  austin
124
+ austin02
125
+ austin316
126
+ australia1
127
+ awesome1
74
128
  azerty
75
129
  baby
130
+ babyboy1
131
+ babygirl1
132
+ babygirl1
133
+ babygurl1
76
134
  badboy
77
135
  bailey
136
+ bailey12
78
137
  banana
138
+ barcelona1
79
139
  barney
80
140
  baseball
141
+ baseball1
142
+ batista1
81
143
  batman
82
144
  beach
83
145
  bear
146
+ beautiful1
84
147
  beaver
85
148
  beavis
149
+ beckham7
86
150
  beer
151
+ bella123
152
+ benjamin1
153
+ bentley1
154
+ bethany1
87
155
  bigcock
88
156
  bigdaddy
157
+ bigdaddy1
89
158
  bigdick
90
159
  bigdog
91
160
  bigtits
@@ -97,8 +166,12 @@ bitches
97
166
  biteme
98
167
  black
99
168
  blazer
169
+ blessed1
170
+ blink-182
171
+ blink182
100
172
  blonde
101
173
  blondes
174
+ blondie1
102
175
  blowjob
103
176
  blowme
104
177
  blue
@@ -109,72 +182,145 @@ boobs
109
182
  booger
110
183
  boomer
111
184
  booty
185
+ boricua1
112
186
  boston
187
+ bradley1
113
188
  brandon
189
+ brandon1
190
+ brandon2
191
+ brandon7
114
192
  brandy
115
193
  braves
194
+ braxton1
195
+ brayden1
116
196
  brazil
197
+ breanna1
117
198
  brian
199
+ brianna1
200
+ brittany1
201
+ brittney1
118
202
  bronco
119
203
  broncos
204
+ broncos1
205
+ brooklyn1
206
+ brownie1
120
207
  bubba
208
+ bubbles1
121
209
  buddy
210
+ buddy123
122
211
  bulldog
123
212
  buster
124
213
  butter
214
+ buttercup1
215
+ butterfly1
216
+ butterfly7
125
217
  butthead
218
+ buttons1
126
219
  calvin
127
220
  camaro
128
221
  cameron
222
+ cameron1
129
223
  canada
224
+ candy123
130
225
  captain
131
226
  carlos
227
+ carolina1
132
228
  carter
133
229
  casper
230
+ cassandra1
231
+ catherine1
232
+ celtic1888
233
+ chargers1
134
234
  charles
235
+ charles1
135
236
  charlie
237
+ charlie1
238
+ charlotte1
239
+ charmed1
136
240
  cheese
137
241
  chelsea
242
+ chelsea1
243
+ chelsea123
138
244
  chester
245
+ chester1
139
246
  chevy
247
+ cheyenne1
140
248
  chicago
249
+ chicago1
141
250
  chicken
251
+ chicken1
252
+ chocolate1
253
+ chopper1
142
254
  chris
255
+ chris123
256
+ christian1
257
+ christina1
258
+ christine1
259
+ christmas1
260
+ classof08
261
+ clayton1
143
262
  cocacola
144
263
  cock
145
264
  coffee
146
265
  college
266
+ college1
267
+ colombia1
268
+ colorado1
147
269
  compaq
148
270
  computer
271
+ computer1
149
272
  cookie
150
273
  cool
151
274
  cooper
152
275
  corvette
276
+ courtney1
153
277
  cowboy
154
278
  cowboys
279
+ cowboys1
155
280
  cream
281
+ cricket1
156
282
  crystal
283
+ crystal1
157
284
  cumming
158
285
  cumshot
159
286
  cunt
287
+ cutiepie1
288
+ daisy123
160
289
  dakota
161
290
  dallas
291
+ dallas22
292
+ dan1elle
162
293
  daniel
294
+ daniela1
163
295
  danielle
296
+ danielle1
164
297
  dave
165
298
  david
299
+ david123
300
+ death666
166
301
  debbie
302
+ december1
303
+ december21
167
304
  dennis
305
+ derrick1
306
+ destiny1
168
307
  deuseamor
308
+ devil666
169
309
  diablo
170
310
  diamond
311
+ diamond1
312
+ diamonds1
171
313
  dick
172
314
  dirty
173
315
  doctor
174
316
  doggie
175
317
  dolphin
318
+ dolphin1
176
319
  dolphins
320
+ dolphins1
321
+ dominic1
177
322
  donald
323
+ douglas1
178
324
  dragon
179
325
  dreams
180
326
  driver
@@ -183,13 +329,18 @@ eagle1
183
329
  eagles
184
330
  edward
185
331
  einstein
332
+ elizabeth1
333
+ elizabeth2
334
+ england1
186
335
  enjoy
187
336
  enter
188
337
  eric
189
338
  erotic
190
339
  extreme
191
340
  falcon
192
- FaMiLia
341
+ falcons1
342
+ falcons7
343
+ familia
193
344
  fender
194
345
  ferrari
195
346
  fire
@@ -197,36 +348,64 @@ firebird
197
348
  fish
198
349
  fishing
199
350
  florida
351
+ florida1
200
352
  flower
201
353
  flyers
202
354
  football
355
+ football1
203
356
  ford
204
357
  forever
358
+ forever1
359
+ forever21
360
+ formula1
205
361
  frank
362
+ frankie1
206
363
  fred
364
+ freddie1
207
365
  freddy
208
366
  freedom
367
+ freedom1
368
+ friday13
369
+ friends1
370
+ friends2
209
371
  fuck
210
372
  fucked
211
373
  fucker
212
374
  fucking
213
375
  fuckme
376
+ fuckoff1
214
377
  fuckyou
378
+ fuckyou1
379
+ fuckyou2
380
+ fuckyou2
381
+ gabriel1
215
382
  gandalf
383
+ gangsta1
384
+ garrett1
216
385
  gateway
386
+ gateway1
217
387
  gators
218
388
  gemini
389
+ genesis1
219
390
  george
391
+ georgia1
392
+ gerrard8
220
393
  giants
394
+ giggles1
221
395
  ginger
222
396
  girl
223
397
  girls
398
+ goddess1
399
+ godislove1
224
400
  golden
225
401
  golf
226
402
  golfer
227
403
  gordon
404
+ gordon24
405
+ grandma1
228
406
  great
229
407
  green
408
+ greenday1
230
409
  gregory
231
410
  guitar
232
411
  gunner
@@ -235,97 +414,217 @@ hannah
235
414
  happy
236
415
  hardcore
237
416
  harley
417
+ harry123
418
+ hawaii50
238
419
  heather
420
+ heather1
239
421
  hello
422
+ hello123
240
423
  helpme
241
424
  hentai
425
+ hershey1
242
426
  hockey
427
+ holiday1
428
+ hollywood1
429
+ honey123
243
430
  hooters
244
431
  horney
245
432
  horny
246
433
  hotdog
247
434
  house
435
+ houston1
248
436
  hunter
437
+ hunter01
249
438
  hunting
250
439
  iceman
440
+ iloveme1
441
+ iloveme2
251
442
  iloveyou
443
+ iloveyou1
444
+ iloveyou2
445
+ iloveyou2
252
446
  internet
447
+ internet1
448
+ inuyasha1
449
+ ireland1
450
+ isabella1
451
+ isabelle1
452
+ iverson3
253
453
  iwantu
454
+ iydgtvmujl6f
254
455
  jack
255
456
  jackie
256
457
  jackson
458
+ jackson1
459
+ jackson5
257
460
  jaguar
258
461
  jake
462
+ jamaica1
259
463
  james
464
+ james123
465
+ january1
466
+ january29
260
467
  japan
261
468
  jasmine
469
+ jasmine1
262
470
  jason
263
471
  jasper
472
+ jazmine1
473
+ jeffrey1
474
+ jehovah1
264
475
  jennifer
476
+ jennifer1
477
+ jennifer2
478
+ jeremiah1
265
479
  jeremy
266
480
  jessica
481
+ jessica1
482
+ jessica7
267
483
  jesus
484
+ jesus123
485
+ jesus143
486
+ jesus1st
487
+ jesus4me
488
+ jesus777
268
489
  jesuscristo
490
+ jesusis#1
491
+ jesusis1
269
492
  john
493
+ john3:16
494
+ johncena1
270
495
  johnny
271
496
  johnson
497
+ jonathan1
272
498
  jordan
499
+ jordan01
500
+ jordan12
501
+ jordan23
273
502
  joseph
274
503
  joshua
504
+ joshua01
275
505
  juice
276
506
  junior
507
+ justice1
277
508
  justin
509
+ justin01
510
+ justin11
511
+ justin21
512
+ justin23
513
+ katelyn1
514
+ katherine1
515
+ kathryn1
516
+ katrina1
278
517
  kelly
518
+ kendall1
519
+ kennedy1
520
+ kenneth1
279
521
  kevin
280
522
  killer
523
+ kimberly1
281
524
  king
282
525
  kitty
283
526
  knight
527
+ kristen1
528
+ kristin1
529
+ l6fkiy9on
284
530
  ladies
531
+ ladybug1
285
532
  lakers
533
+ lakers24
534
+ lampard8
535
+ laura123
286
536
  lauren
287
537
  leather
538
+ lebron23
288
539
  legend
289
540
  letmein
541
+ letmein1
542
+ liberty1
543
+ lindsay1
544
+ lindsey1
290
545
  little
546
+ liverp00l
547
+ liverpool1
548
+ liverpool123
291
549
  london
550
+ longhorns1
292
551
  love
552
+ love4ever
293
553
  lover
294
554
  lovers
555
+ loveyou2
295
556
  lucky
557
+ lucky123
558
+ m1chelle
559
+ mackenzie1
296
560
  maddog
297
561
  madison
562
+ madison01
563
+ madison1
564
+ madonna1
298
565
  maggie
299
566
  magic
300
567
  magnum
301
- MARCELO
568
+ makayla1
569
+ marcelo
570
+ marie123
302
571
  marine
572
+ marines1
573
+ marissa1
303
574
  mark
304
575
  marlboro
576
+ marshall1
305
577
  martin
306
578
  marvin
307
579
  master
308
580
  matrix
309
581
  matt
310
582
  matthew
583
+ matthew1
584
+ matthew2
585
+ matthew3
311
586
  maverick
312
587
  maxwell
588
+ maxwell1
589
+ melanie1
313
590
  melissa
591
+ melissa1
314
592
  member
315
593
  mercedes
594
+ mercedes1
316
595
  merlin
596
+ metallica1
317
597
  michael
598
+ michael01
599
+ michael07
600
+ michael1
601
+ michael2
602
+ michael7
603
+ micheal1
604
+ michele1
318
605
  michelle
606
+ michelle1
607
+ michelle2
319
608
  mickey
320
609
  midnight
610
+ midnight1
321
611
  mike
322
612
  miller
323
613
  mine
614
+ miranda1
324
615
  mistress
616
+ molly123
325
617
  money
326
618
  monica
619
+ monique1
327
620
  monkey
621
+ monkey01
622
+ monkey12
623
+ monkey13
624
+ monkeys1
328
625
  monster
626
+ monster1
627
+ montana1
329
628
  morgan
330
629
  mother
331
630
  mountain
@@ -333,115 +632,257 @@ movie
333
632
  muffin
334
633
  murphy
335
634
  music
635
+ music123
336
636
  mustang
637
+ mustang1
638
+ myspace1
337
639
  naked
338
640
  nascar
641
+ natalie1
642
+ natasha1
339
643
  nathan
644
+ nathan06
340
645
  naughty
341
646
  ncc1701
342
647
  newyork
648
+ newyork1
343
649
  nicholas
650
+ nicholas1
651
+ nichole1
344
652
  nicole
653
+ nicole12
345
654
  ninja
346
655
  nipple
347
656
  nipples
657
+ nirvana1
658
+ november1
659
+ november11
660
+ november15
661
+ november16
662
+ nursing1
663
+ october1
664
+ october13
665
+ october22
348
666
  oliver
667
+ omarion1
349
668
  orange
669
+ orlando1
350
670
  ou812
671
+ p4ssword
672
+ p@$$w0rd
673
+ p@55w0rd
674
+ p@ssw0rd
675
+ pa$$w0rd
676
+ pa55w0rd
677
+ pa55word
351
678
  packers
352
679
  panther
680
+ panther1
681
+ panthers1
353
682
  panties
354
683
  paris
355
684
  parker
356
685
  pass
686
+ pass1234
687
+ passion1
357
688
  passw0rd
689
+ passw0rd
690
+ passw0rd1
358
691
  password
692
+ password01
693
+ password1
359
694
  password1
695
+ password1!
696
+ password11
697
+ password12
360
698
  password12
361
699
  password123
700
+ password123
701
+ password13
702
+ password2
703
+ password21
704
+ password3
705
+ password4
706
+ password5
707
+ password7
708
+ password9
709
+ patches1
710
+ patricia1
362
711
  patrick
712
+ patrick1
363
713
  paul
364
714
  peaches
715
+ peaches1
365
716
  peanut
717
+ peanut01
718
+ peanut11
719
+ pebbles1
720
+ penguin1
366
721
  penis
367
722
  pepper
368
723
  peter
369
724
  phantom
725
+ phantom1
370
726
  phoenix
727
+ phoenix1
371
728
  photoshop
729
+ pickles1
730
+ playboy1
372
731
  player
373
732
  please
733
+ pokemon1
734
+ poohbear1
735
+ poohbear1
374
736
  pookie
737
+ popcorn1
375
738
  porn
376
739
  porno
377
740
  porsche
378
741
  power
742
+ pr1nc3ss
743
+ pr1ncess
744
+ precious1
745
+ preston1
379
746
  prince
380
747
  princess
748
+ princess01
749
+ princess07
750
+ princess08
751
+ princess1
752
+ princess12
753
+ princess123
754
+ princess13
755
+ princess15
756
+ princess18
757
+ princess19
758
+ princess2
759
+ princess21
760
+ princess23
761
+ princess24
762
+ princess4
763
+ princess5
764
+ princess7
381
765
  private
766
+ prototype1
767
+ pumpkin1
382
768
  purple
383
769
  pussies
384
770
  pussy
385
771
  qazwsx
386
772
  qwert
387
773
  qwerty
774
+ qwerty123
388
775
  qwertyui
389
776
  rabbit
390
777
  rachel
391
778
  racing
392
779
  raiders
780
+ raiders1
393
781
  rainbow
782
+ rainbow1
394
783
  ranger
395
784
  rangers
785
+ rangers1
786
+ raymond1
396
787
  rebecca
788
+ rebecca1
789
+ rebelde1
397
790
  redskins
791
+ redskins1
398
792
  redsox
399
793
  redwings
794
+ ricardo1
400
795
  richard
796
+ richard1
401
797
  robert
798
+ robert01
402
799
  rock
403
800
  rocket
801
+ rockstar1
802
+ rocky123
803
+ rockyou1
804
+ rockyou1
805
+ ronaldo7
404
806
  rosebud
405
807
  runner
406
808
  rush2112
809
+ russell1
407
810
  russia
811
+ rusty123
812
+ sabrina1
813
+ sail2boat3
408
814
  samantha
815
+ samantha1
409
816
  sammy
410
817
  samson
411
818
  sandra
819
+ santana1
412
820
  saturn
821
+ savannah1
413
822
  scooby
414
823
  scooter
824
+ scooter1
415
825
  scorpio
826
+ scorpio1
416
827
  scorpion
828
+ scotland1
417
829
  scott
830
+ scrappy1
831
+ sebastian1
418
832
  secret
833
+ senior06
834
+ senior07
835
+ september1
836
+ serenity1
419
837
  sexsex
420
838
  sexy
421
839
  shadow
422
840
  shannon
841
+ shannon1
423
842
  shaved
424
843
  shit
844
+ shopping1
425
845
  sierra
426
846
  silver
427
847
  skippy
848
+ skittles1
428
849
  slayer
850
+ slipknot1
429
851
  slut
430
852
  smith
431
853
  smokey
854
+ smokey01
855
+ snickers1
432
856
  snoopy
857
+ snowball1
433
858
  soccer
859
+ soccer11
860
+ soccer12
861
+ soccer13
862
+ soccer14
863
+ soccer17
864
+ softball1
434
865
  sophie
435
866
  spanky
436
867
  sparky
868
+ spartan117
869
+ special1
870
+ spencer1
437
871
  spider
872
+ spiderman1
873
+ spongebob1
438
874
  squirt
439
875
  srinivas
440
876
  star
441
877
  stars
878
+ start123
442
879
  startrek
443
880
  starwars
881
+ starwars1
444
882
  steelers
883
+ steelers1
884
+ stephanie1
885
+ stephen1
445
886
  steve
446
887
  steven
447
888
  sticky
@@ -449,13 +890,27 @@ stupid
449
890
  success
450
891
  suckit
451
892
  summer
893
+ summer01
894
+ summer05
895
+ summer06
896
+ summer07
897
+ summer08
898
+ summer99
452
899
  sunshine
900
+ sunshine1
453
901
  super
454
902
  superman
903
+ superman1
904
+ superstar1
455
905
  surfer
906
+ sweetie1
907
+ sweetpea1
456
908
  swimming
457
909
  sydney
458
910
  taylor
911
+ taylor13
912
+ tbfkiy9on
913
+ teddybear1
459
914
  teens
460
915
  tennis
461
916
  teresa
@@ -463,44 +918,79 @@ test
463
918
  tester
464
919
  testing
465
920
  theman
921
+ thesims2
922
+ thirteen13
466
923
  thomas
924
+ thumper1
467
925
  thunder
926
+ thunder1
468
927
  thx1138
469
928
  tiffany
929
+ tiffany1
470
930
  tiger
931
+ tiger123
471
932
  tigers
472
933
  tigger
934
+ tigger01
935
+ tigger12
936
+ tigger123
473
937
  time
938
+ timothy1
939
+ tinkerbell1
940
+ titanic1
474
941
  tits
475
942
  tomcat
476
943
  topgun
477
944
  toyota
478
945
  travis
946
+ trinity1
947
+ trinity3
948
+ tristan1
479
949
  trouble
950
+ trouble1
951
+ trustno1
952
+ trustno1
480
953
  trustno1
481
954
  tucker
482
955
  turtle
956
+ twilight1
483
957
  twitter
958
+ unicorn1
484
959
  united
485
960
  vagina
961
+ valerie1
962
+ vampire1
963
+ vanessa1
964
+ vanilla1
965
+ veronica1
486
966
  victor
487
967
  victoria
968
+ victoria1
488
969
  video
489
970
  viking
971
+ vincent1
490
972
  viper
491
973
  voodoo
492
974
  voyager
493
975
  walter
494
976
  warrior
495
977
  welcome
978
+ welcome1
979
+ welcome123
980
+ welcome2
496
981
  whatever
982
+ whatever1
497
983
  white
984
+ whitney1
498
985
  william
986
+ william1
499
987
  willie
500
988
  wilson
501
989
  winner
502
990
  winston
991
+ winston1
503
992
  winter
993
+ winter06
504
994
  wizard
505
995
  wolf
506
996
  women
@@ -512,8 +1002,18 @@ xxxxxxxx
512
1002
  yamaha
513
1003
  yankee
514
1004
  yankees
1005
+ yankees1
1006
+ yankees2
515
1007
  yellow
516
1008
  young
1009
+ z,iyd86i
1010
+ zachary1
1011
+ zaq!1qaz
1012
+ zaq!2wsx
1013
+ zaq!xsw2
1014
+ zaq1!qaz
1015
+ zaq1@wsx
1016
+ zaq1zaq!
517
1017
  zxcvbn
518
1018
  zxcvbnm
519
1019
  zzzzzz
@@ -263,8 +263,7 @@ new Test.Unit.Runner({
263
263
 
264
264
  // Reject common passwords
265
265
  testRejectCommonPasswords: function() { with(this) {
266
- strength.password = "password with whitespaces";
267
- strength.exclude = /\s/;
266
+ strength.password = PasswordStrength.commonWords[0];
268
267
  strength.test();
269
268
 
270
269
  assertEqual("invalid", strength.status);
@@ -244,9 +244,12 @@ class TestPasswordStrength < Test::Unit::TestCase
244
244
  end
245
245
 
246
246
  def test_reject_common_words
247
- @strength = PasswordStrength.test("johndoe", PasswordStrength::Base.common_words.first)
248
- assert_equal :invalid, @strength.status
249
- assert @strength.invalid?
247
+ $BREAKPOINT = true
248
+ password = PasswordStrength::Base.common_words.first
249
+ @strength = PasswordStrength.test("johndoe", password)
250
+ assert @strength.invalid?, "#{password} must be invalid"
250
251
  refute @strength.valid?
252
+ assert_equal :invalid, @strength.status
253
+ $BREAKPOINT = false
251
254
  end
252
255
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: password_strength
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
  - Nando Vieira
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-19 00:00:00.000000000 Z
11
+ date: 2014-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord