Skip to content

Commit

Permalink
master: roadmap, rakefile, doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jodell committed May 6, 2010
1 parent a41eba4 commit 4d67538
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
2 changes: 1 addition & 1 deletion EXAMPLE
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Could not decrypt ciphertext: Playfair Decryption: Impossible scenario!

== Analysis ==

Show character frequency:
Show character frequency with analysis flag:

> toycipher -a < /tmp/shmoocon2010_1
A: ############################ (28)
Expand Down
4 changes: 4 additions & 0 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ A ruby implementation of classic ciphers, including:
* Vigenere
* Caesar

== CLI

Supports a command line script (SEE EXAMPLE)

== Author

Jeffrey O'Dell <jefferey dot odell at gmail dot com>
9 changes: 3 additions & 6 deletions ROADMAP
Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@

0.1

* Playfair
* Caesar
* Vigenere
* OTP

0.2

* CLI script
* tests
* documentation

0.3

* Support reading from STDIN
* Support matrix transposition

Expand All @@ -25,11 +21,12 @@
* LICENSE
* Support supplying a key file

1.0
0.5
* Ruby gem support

1.0
* Large text testing

1.1

* Brute-force heuristic

11 changes: 11 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@


#require 'rake'
require 'rake/testtask'

task :default => :test

desc 'Run tests'
task :test do
sh "ruby test/ts_toycipher.rb"
end

0 comments on commit 4d67538

Please sign in to comment.