Last active
June 4, 2016 18:25
Revisions
-
KyCodeHuynh revised this gist
Jun 4, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ Make sure that the `bcrypt` [gem](https://github.com/codahale/bcrypt-ruby) has been installed. ```ruby require 'Benchmark' -
KyCodeHuynh revised this gist
Jun 4, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,7 @@ Make sure that `bcrypt` [gem](https://github.com/codahale/bcrypt-ruby) has been installed. ```ruby require 'Benchmark' require 'bcrypt' Benchmark.measure { BCrypt::Password.create('secret', :cost => 12) } ``` -
KyCodeHuynh renamed this gist
Mar 27, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
KyCodeHuynh renamed this gist
Mar 27, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
KyCodeHuynh renamed this gist
Jan 2, 2016 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
KyCodeHuynh created this gist
Jan 2, 2016 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ Make sure that `bcrypt` [gem](https://github.com/codahale/bcrypt-ruby) has been installed. ```ruby require 'bcrypt' Benchmark.measure { BCrypt::Password.create('secret', :cost => 12) } ```