moat 0.0.2 → 0.0.3
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/README.txt +46 -10
- data/lib/moat.rb +0 -1
- data/moat-0.0.2.gem +0 -0
- data/moat.gemspec +1 -1
- metadata +4 -3
data/README.txt
CHANGED
@@ -1,32 +1,68 @@
|
|
1
|
-
= moat
|
1
|
+
= moat: Brain-dead simple password storage. Improved.
|
2
2
|
|
3
|
-
|
3
|
+
Moat is "Heavily inspired" (ripped off completely) from password,
|
4
|
+
by Giles Bowkett
|
5
|
+
http://gilesbowkett.blogspot.com/2008/02/sudo-gem-install-password.html
|
6
|
+
|
7
|
+
Moat improves password by removing the ActiveSupport requirement,
|
8
|
+
generating cleaner alphanumeric passwords, and hiding itself in a moatfile.
|
9
|
+
Everything else should be exactly the same.
|
10
|
+
|
11
|
+
Long story short, it's password. Just faster, more stable, and should generate
|
12
|
+
passwords that even your bank will treat as valid. Though you might not want to use it there.
|
4
13
|
|
5
14
|
== DESCRIPTION:
|
6
15
|
|
7
|
-
|
16
|
+
moat is a simple command-line tool to store your INESSENTIAL passwords.
|
17
|
+
|
18
|
+
All passwords stored with moat are stored as plain text in a hidden file called
|
19
|
+
".moatfile" in your home directory.
|
20
|
+
|
21
|
+
If you store vitally essential personal information using moat, you are a
|
22
|
+
dumb motherfucker. (Or, at least, much braver than smart.)
|
23
|
+
|
24
|
+
== CODE EXAMPLES:
|
25
|
+
|
26
|
+
moat -g twitter
|
27
|
+
moat --get twitter
|
28
|
+
|
29
|
+
Prints your Twitter username and password to the terminal.
|
30
|
+
|
31
|
+
moat -a
|
32
|
+
|
33
|
+
Prints every known username/password combo to the terminal.
|
34
|
+
|
35
|
+
moat -s twitter wilbur s3cr3t
|
36
|
+
moat --set twitter wilbur s3cr3t
|
37
|
+
|
38
|
+
Sets your moat entry for "twitter" to username "wilbur" and password "s3cr3t".
|
8
39
|
|
9
|
-
|
40
|
+
moat -G twitter wilbur
|
41
|
+
moat --generating_set twitter wilbur
|
10
42
|
|
11
|
-
|
43
|
+
Sets your moat entry for "twitter" to username "wilbur" and a 10-digit
|
44
|
+
autogenerated password, and prints the new username/password combo.
|
12
45
|
|
13
|
-
|
46
|
+
moat -l 23 -G twitter wilbur
|
47
|
+
moat --length 23 --generating_set twitter wilbur
|
14
48
|
|
15
|
-
|
49
|
+
Sets your moat entry for "twitter" to username "wilbur" and a 23-digit
|
50
|
+
autogenerated password, and prints the new username/password combo.
|
16
51
|
|
17
52
|
== REQUIREMENTS:
|
18
53
|
|
19
|
-
*
|
54
|
+
* Must not be an idiot
|
20
55
|
|
21
56
|
== INSTALL:
|
22
57
|
|
23
|
-
*
|
58
|
+
* (sudo) gem install moat
|
24
59
|
|
25
60
|
== LICENSE:
|
26
61
|
|
27
62
|
(The MIT License)
|
28
63
|
|
29
|
-
Copyright (c)
|
64
|
+
Copyright (c) 2008 Giles Bowkett
|
65
|
+
Copyright (c) 2010 Bryan Woods
|
30
66
|
|
31
67
|
Permission is hereby granted, free of charge, to any person obtaining
|
32
68
|
a copy of this software and associated documentation files (the
|
data/lib/moat.rb
CHANGED
data/moat-0.0.2.gem
ADDED
Binary file
|
data/moat.gemspec
CHANGED
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 3
|
9
|
+
version: 0.0.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Bryan Woods
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2010-04-
|
17
|
+
date: 2010-04-02 00:00:00 -04:00
|
18
18
|
default_executable:
|
19
19
|
dependencies: []
|
20
20
|
|
@@ -32,6 +32,7 @@ files:
|
|
32
32
|
- lib/moat.rb
|
33
33
|
- Manifest.txt
|
34
34
|
- moat-0.0.1.gem
|
35
|
+
- moat-0.0.2.gem
|
35
36
|
- moat.gemspec
|
36
37
|
- Rakefile
|
37
38
|
- README.txt
|