pontifex 1.0.1

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 (41) hide show
  1. data/.rvmrc +1 -0
  2. data/Gemfile +16 -0
  3. data/Gemfile.lock +50 -0
  4. data/LICENSE.txt +20 -0
  5. data/README.markdown +53 -0
  6. data/Rakefile +54 -0
  7. data/VERSION +1 -0
  8. data/bin/pontifex +5 -0
  9. data/cucumber.yml +3 -0
  10. data/feature/pontifex_interactive.feature +161 -0
  11. data/feature/pontifex_with_files.feature +137 -0
  12. data/feature/support/env.rb +15 -0
  13. data/lib/pontifex/card.rb +70 -0
  14. data/lib/pontifex/cipher.rb +49 -0
  15. data/lib/pontifex/key_stream.rb +79 -0
  16. data/lib/pontifex.rb +114 -0
  17. data/pontifex.gemspec +99 -0
  18. data/spec/pontifex/card_spec.rb +84 -0
  19. data/spec/pontifex/cipher_spec.rb +23 -0
  20. data/spec/pontifex/key_stream_spec.rb +92 -0
  21. data/spec/pontifex/pontifex_spec.rb +4 -0
  22. data/spec/spec_helper.rb +12 -0
  23. data/vendor/cache/aruba-0.3.6.gem +0 -0
  24. data/vendor/cache/builder-3.0.0.gem +0 -0
  25. data/vendor/cache/childprocess-0.1.9.gem +0 -0
  26. data/vendor/cache/cucumber-0.10.3.gem +0 -0
  27. data/vendor/cache/diff-lcs-1.1.2.gem +0 -0
  28. data/vendor/cache/ffi-1.0.9.gem +0 -0
  29. data/vendor/cache/gherkin-2.3.9.gem +0 -0
  30. data/vendor/cache/git-1.2.5.gem +0 -0
  31. data/vendor/cache/jeweler-1.6.0.gem +0 -0
  32. data/vendor/cache/json-1.5.1.gem +0 -0
  33. data/vendor/cache/rake-0.9.0.gem +0 -0
  34. data/vendor/cache/rcov-0.9.9.gem +0 -0
  35. data/vendor/cache/rspec-2.6.0.gem +0 -0
  36. data/vendor/cache/rspec-core-2.6.3.gem +0 -0
  37. data/vendor/cache/rspec-expectations-2.6.0.gem +0 -0
  38. data/vendor/cache/rspec-mocks-2.6.0.gem +0 -0
  39. data/vendor/cache/term-ansicolor-1.0.5.gem +0 -0
  40. data/vendor/cache/trollop-1.16.2.gem +0 -0
  41. metadata +175 -0
metadata ADDED
@@ -0,0 +1,175 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pontifex
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 1.0.1
6
+ platform: ruby
7
+ authors:
8
+ - Errin Larsen
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-06-01 00:00:00 -05:00
14
+ default_executable: pontifex
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: trollop
18
+ requirement: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: *id001
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 2.6.0
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: *id002
38
+ - !ruby/object:Gem::Dependency
39
+ name: cucumber
40
+ requirement: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "0"
46
+ type: :development
47
+ prerelease: false
48
+ version_requirements: *id003
49
+ - !ruby/object:Gem::Dependency
50
+ name: aruba
51
+ requirement: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: "0"
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: *id004
60
+ - !ruby/object:Gem::Dependency
61
+ name: bundler
62
+ requirement: &id005 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: 1.0.0
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: *id005
71
+ - !ruby/object:Gem::Dependency
72
+ name: jeweler
73
+ requirement: &id006 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: 1.6.0
79
+ type: :development
80
+ prerelease: false
81
+ version_requirements: *id006
82
+ - !ruby/object:Gem::Dependency
83
+ name: rcov
84
+ requirement: &id007 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: "0"
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: *id007
93
+ description: "This gem is a solution to ruby quiz #1: http://www.rubyquiz.com/quiz1.html"
94
+ email: errinlarsen@gmail.com
95
+ executables:
96
+ - pontifex
97
+ extensions: []
98
+
99
+ extra_rdoc_files:
100
+ - LICENSE.txt
101
+ - README.markdown
102
+ files:
103
+ - .rvmrc
104
+ - Gemfile
105
+ - Gemfile.lock
106
+ - LICENSE.txt
107
+ - README.markdown
108
+ - Rakefile
109
+ - VERSION
110
+ - bin/pontifex
111
+ - cucumber.yml
112
+ - feature/pontifex_interactive.feature
113
+ - feature/pontifex_with_files.feature
114
+ - feature/support/env.rb
115
+ - lib/pontifex.rb
116
+ - lib/pontifex/card.rb
117
+ - lib/pontifex/cipher.rb
118
+ - lib/pontifex/key_stream.rb
119
+ - pontifex.gemspec
120
+ - spec/pontifex/card_spec.rb
121
+ - spec/pontifex/cipher_spec.rb
122
+ - spec/pontifex/key_stream_spec.rb
123
+ - spec/pontifex/pontifex_spec.rb
124
+ - spec/spec_helper.rb
125
+ - vendor/cache/aruba-0.3.6.gem
126
+ - vendor/cache/builder-3.0.0.gem
127
+ - vendor/cache/childprocess-0.1.9.gem
128
+ - vendor/cache/cucumber-0.10.3.gem
129
+ - vendor/cache/diff-lcs-1.1.2.gem
130
+ - vendor/cache/ffi-1.0.9.gem
131
+ - vendor/cache/gherkin-2.3.9.gem
132
+ - vendor/cache/git-1.2.5.gem
133
+ - vendor/cache/jeweler-1.6.0.gem
134
+ - vendor/cache/json-1.5.1.gem
135
+ - vendor/cache/rake-0.9.0.gem
136
+ - vendor/cache/rcov-0.9.9.gem
137
+ - vendor/cache/rspec-2.6.0.gem
138
+ - vendor/cache/rspec-core-2.6.3.gem
139
+ - vendor/cache/rspec-expectations-2.6.0.gem
140
+ - vendor/cache/rspec-mocks-2.6.0.gem
141
+ - vendor/cache/term-ansicolor-1.0.5.gem
142
+ - vendor/cache/trollop-1.16.2.gem
143
+ has_rdoc: true
144
+ homepage: http://github.com/errinlarsen/pontifex
145
+ licenses:
146
+ - MIT
147
+ post_install_message:
148
+ rdoc_options: []
149
+
150
+ require_paths:
151
+ - lib
152
+ required_ruby_version: !ruby/object:Gem::Requirement
153
+ none: false
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ hash: 576233914763177853
158
+ segments:
159
+ - 0
160
+ version: "0"
161
+ required_rubygems_version: !ruby/object:Gem::Requirement
162
+ none: false
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: "0"
167
+ requirements: []
168
+
169
+ rubyforge_project:
170
+ rubygems_version: 1.6.2
171
+ signing_key:
172
+ specification_version: 3
173
+ summary: An implementation of the Solitaire Cipher in Ruby
174
+ test_files: []
175
+