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.
Files changed (5) hide show
  1. data/README.txt +46 -10
  2. data/lib/moat.rb +0 -1
  3. data/moat-0.0.2.gem +0 -0
  4. data/moat.gemspec +1 -1
  5. metadata +4 -3
data/README.txt CHANGED
@@ -1,32 +1,68 @@
1
- = moat
1
+ = moat: Brain-dead simple password storage. Improved.
2
2
 
3
- * FIX (url)
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
- FIX (describe your package)
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
- == FEATURES/PROBLEMS:
40
+ moat -G twitter wilbur
41
+ moat --generating_set twitter wilbur
10
42
 
11
- * FIX (list of features or problems)
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
- == SYNOPSIS:
46
+ moat -l 23 -G twitter wilbur
47
+ moat --length 23 --generating_set twitter wilbur
14
48
 
15
- FIX (code sample of usage)
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
- * FIX (list of requirements)
54
+ * Must not be an idiot
20
55
 
21
56
  == INSTALL:
22
57
 
23
- * FIX (sudo gem install, anything else)
58
+ * (sudo) gem install moat
24
59
 
25
60
  == LICENSE:
26
61
 
27
62
  (The MIT License)
28
63
 
29
- Copyright (c) 2010 FIX
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
@@ -1,5 +1,4 @@
1
1
  module Moat
2
- VERSION = '0.0.1'
3
2
  FILENAME = "#{ENV['HOME']}/.moatfile"
4
3
  SITES = {}
5
4
 
data/moat-0.0.2.gem ADDED
Binary file
data/moat.gemspec CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
 
3
3
  SPEC = Gem::Specification.new do |s|
4
4
  s.name = "moat"
5
- s.version = "0.0.2"
5
+ s.version = "0.0.3"
6
6
  s.author = "Bryan Woods"
7
7
  s.email = "bryanwoods4e@gmail.com"
8
8
  s.platform = Gem::Platform::RUBY
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 2
9
- version: 0.0.2
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-01 00:00:00 -04:00
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