rbpass 0.0.1 → 0.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.
- data/Gemfile +1 -1
- data/README.md +2 -2
- data/lib/rbpass.rb +1 -1
- data/spec/rbpass/rbpass_spec.rb +1 -1
- metadata +1 -1
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Or install it yourself as:
|
|
|
23
23
|
|
|
24
24
|
password_hasher = RbPass::PasswordHasher.new(8, false)
|
|
25
25
|
|
|
26
|
-
#
|
|
26
|
+
# Password hashing
|
|
27
27
|
password = 'somepasswordhere'
|
|
28
28
|
password_hash = password_hasher.hash(password)
|
|
29
29
|
|
|
@@ -39,4 +39,4 @@ Or install it yourself as:
|
|
|
39
39
|
|
|
40
40
|
## Copyright
|
|
41
41
|
|
|
42
|
-
Copyright © 2013 Pablo Elices. See [license](https://github.com/pabloelices/rbpass/blob/master/LICENSE.
|
|
42
|
+
Copyright © 2013 Pablo Elices. See [license](https://github.com/pabloelices/rbpass/blob/master/LICENSE.txt) for details.
|
data/lib/rbpass.rb
CHANGED
data/spec/rbpass/rbpass_spec.rb
CHANGED