flatulent 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. data/README +60 -16
  2. data/flatulent-0.0.2.gem +0 -0
  3. data/lib/flatulent/crypt/blowfish-tables.rb +190 -0
  4. data/lib/flatulent/crypt/blowfish.rb +109 -0
  5. data/lib/flatulent/crypt/cbc.rb +123 -0
  6. data/lib/flatulent/crypt/gost.rb +140 -0
  7. data/lib/flatulent/crypt/idea.rb +193 -0
  8. data/lib/flatulent/crypt/noise.rb +94 -0
  9. data/lib/flatulent/crypt/purerubystringio.rb +378 -0
  10. data/lib/flatulent/crypt/rijndael-tables.rb +117 -0
  11. data/lib/flatulent/crypt/rijndael.rb +269 -0
  12. data/lib/flatulent/crypt/stringxor.rb +27 -0
  13. data/lib/flatulent.rb +332 -121
  14. data/lib/flatulent.rb.bak +337 -0
  15. data/rails/app/controllers/flatulent_controller.rb +61 -6
  16. data/rails/lib/flatulent/attributes.rb +79 -0
  17. data/rails/lib/flatulent/crypt/blowfish-tables.rb +190 -0
  18. data/rails/lib/flatulent/crypt/blowfish.rb +109 -0
  19. data/rails/lib/flatulent/crypt/cbc.rb +123 -0
  20. data/rails/lib/flatulent/crypt/gost.rb +140 -0
  21. data/rails/lib/flatulent/crypt/idea.rb +193 -0
  22. data/rails/lib/flatulent/crypt/noise.rb +94 -0
  23. data/rails/lib/flatulent/crypt/purerubystringio.rb +378 -0
  24. data/rails/lib/flatulent/crypt/rijndael-tables.rb +117 -0
  25. data/rails/lib/flatulent/crypt/rijndael.rb +269 -0
  26. data/rails/lib/flatulent/fontfiles/banner.flf +2494 -0
  27. data/rails/lib/flatulent/fontfiles/big.flf +2204 -0
  28. data/rails/lib/flatulent/fontfiles/block.flf +1691 -0
  29. data/rails/lib/flatulent/fontfiles/bubble.flf +1630 -0
  30. data/rails/lib/flatulent/fontfiles/digital.flf +1286 -0
  31. data/rails/lib/flatulent/fontfiles/ivrit.flf +900 -0
  32. data/rails/lib/flatulent/fontfiles/lean.flf +1691 -0
  33. data/rails/lib/flatulent/fontfiles/mini.flf +899 -0
  34. data/rails/lib/flatulent/fontfiles/mnemonic.flf +3702 -0
  35. data/rails/lib/flatulent/fontfiles/script.flf +1493 -0
  36. data/rails/lib/flatulent/fontfiles/shadow.flf +1097 -0
  37. data/rails/lib/flatulent/fontfiles/slant.flf +1295 -0
  38. data/rails/lib/flatulent/fontfiles/small.flf +1097 -0
  39. data/rails/lib/flatulent/fontfiles/smscript.flf +1097 -0
  40. data/rails/lib/flatulent/fontfiles/smshadow.flf +899 -0
  41. data/rails/lib/flatulent/fontfiles/smslant.flf +1097 -0
  42. data/rails/lib/flatulent/fontfiles/standard.flf +2227 -0
  43. data/rails/lib/flatulent/fontfiles/term.flf +600 -0
  44. data/rails/lib/flatulent/pervasives.rb +32 -0
  45. data/rails/lib/flatulent/stringxor.rb +27 -0
  46. data/rails/lib/flatulent/text/double_metaphone.rb +356 -0
  47. data/rails/lib/flatulent/text/figlet/font.rb +117 -0
  48. data/rails/lib/flatulent/text/figlet/smusher.rb +64 -0
  49. data/rails/lib/flatulent/text/figlet/typesetter.rb +68 -0
  50. data/rails/lib/flatulent/text/figlet.rb +17 -0
  51. data/rails/lib/flatulent/text/levenshtein.rb +65 -0
  52. data/rails/lib/flatulent/text/metaphone.rb +97 -0
  53. data/rails/lib/flatulent/text/porter_stemming.rb +171 -0
  54. data/rails/lib/flatulent/text/soundex.rb +61 -0
  55. data/rails/lib/flatulent/text.rb +6 -0
  56. data/rails/lib/flatulent.rb +450 -0
  57. data/rails/log/development.log +14297 -0
  58. data/rails/log/fastcgi.crash.log +111 -0
  59. data/rails/log/lighttpd.access.log +3993 -0
  60. data/rails/log/lighttpd.error.log +111 -0
  61. data/rails/tmp/cache/javascripts/prototype.js-gzip-3275912-71260-1183440172 +0 -0
  62. data/rails/tmp/sessions/ruby_sess.32d68bc997054475 +0 -0
  63. data/rails/tmp/sessions/ruby_sess.4694a4b9bdf9bcf4 +0 -0
  64. data/rails/tmp/sessions/ruby_sess.99469fde69043a05 +0 -0
  65. data/rails/tmp/sessions/ruby_sess.a588c0a457345912 +0 -0
  66. data/rails/tmp/sessions/ruby_sess.b3344125a84a3efa +0 -0
  67. data/samples.rb +10 -0
  68. metadata +69 -3
  69. data/flatulent-0.0.0.gem +0 -0
@@ -31,3 +31,114 @@
31
31
  2007-07-02 18:43:19: (log.c.75) server started
32
32
  2007-07-02 18:45:37: (server.c.1252) [note] graceful shutdown started
33
33
  2007-07-02 18:45:37: (log.c.135) server stopped
34
+ 2007-07-02 19:12:25: (log.c.75) server started
35
+ 2007-07-02 19:13:57: (server.c.1252) [note] graceful shutdown started
36
+ 2007-07-02 19:13:57: (log.c.135) server stopped
37
+ 2007-07-02 22:32:32: (log.c.75) server started
38
+ 2007-07-02 22:35:10: (server.c.1252) [note] graceful shutdown started
39
+ 2007-07-02 22:35:10: (log.c.135) server stopped
40
+ 2007-07-02 22:35:29: (log.c.75) server started
41
+ 2007-07-02 23:22:38: (server.c.1252) [note] graceful shutdown started
42
+ 2007-07-02 23:22:38: (log.c.135) server stopped
43
+ 2007-07-03 01:20:58: (log.c.75) server started
44
+ 2007-07-03 01:22:01: (server.c.1252) [note] graceful shutdown started
45
+ 2007-07-03 01:22:01: (log.c.135) server stopped
46
+ 2007-07-03 01:22:03: (log.c.75) server started
47
+ 2007-07-03 01:29:48: (server.c.1252) [note] graceful shutdown started
48
+ 2007-07-03 01:29:48: (log.c.135) server stopped
49
+ 2007-07-03 01:29:49: (log.c.75) server started
50
+ 2007-07-03 08:55:14: (server.c.1252) [note] graceful shutdown started
51
+ 2007-07-03 08:55:14: (log.c.135) server stopped
52
+ 2007-07-03 08:55:15: (log.c.75) server started
53
+ 2007-07-03 08:58:29: (server.c.1252) [note] graceful shutdown started
54
+ 2007-07-03 08:58:29: (log.c.135) server stopped
55
+ 2007-07-03 08:58:31: (log.c.75) server started
56
+ 2007-07-03 09:06:47: (server.c.1252) [note] graceful shutdown started
57
+ 2007-07-03 09:06:47: (log.c.135) server stopped
58
+ 2007-07-03 09:06:49: (log.c.75) server started
59
+ 2007-07-03 09:09:49: (server.c.1252) [note] graceful shutdown started
60
+ 2007-07-03 09:09:49: (log.c.135) server stopped
61
+ 2007-07-03 09:09:50: (log.c.75) server started
62
+ 2007-07-03 09:26:45: (server.c.1252) [note] graceful shutdown started
63
+ 2007-07-03 09:26:45: (log.c.135) server stopped
64
+ 2007-07-03 12:28:20: (log.c.75) server started
65
+ 2007-07-03 12:32:10: (server.c.1252) [note] graceful shutdown started
66
+ 2007-07-03 12:32:10: (log.c.135) server stopped
67
+ 2007-07-03 12:32:11: (log.c.75) server started
68
+ 2007-07-03 12:34:12: (server.c.1252) [note] graceful shutdown started
69
+ 2007-07-03 12:34:12: (log.c.135) server stopped
70
+ 2007-07-03 12:34:13: (log.c.75) server started
71
+ 2007-07-03 13:53:29: (server.c.1252) [note] graceful shutdown started
72
+ 2007-07-03 13:53:29: (log.c.135) server stopped
73
+ 2007-07-03 13:53:31: (log.c.75) server started
74
+ 2007-07-03 13:57:00: (server.c.1252) [note] graceful shutdown started
75
+ 2007-07-03 13:57:00: (log.c.135) server stopped
76
+ 2007-07-03 13:57:02: (log.c.75) server started
77
+ 2007-07-03 14:07:01: (server.c.1252) [note] graceful shutdown started
78
+ 2007-07-03 14:07:01: (log.c.135) server stopped
79
+ 2007-07-03 14:07:03: (log.c.75) server started
80
+ 2007-07-03 14:07:33: (server.c.1252) [note] graceful shutdown started
81
+ 2007-07-03 14:07:33: (log.c.135) server stopped
82
+ 2007-07-03 14:07:34: (log.c.75) server started
83
+ 2007-07-04 10:43:34: (server.c.1252) [note] graceful shutdown started
84
+ 2007-07-04 10:43:34: (log.c.135) server stopped
85
+ 2007-07-04 10:43:38: (log.c.75) server started
86
+ 2007-07-04 13:00:41: (server.c.1252) [note] graceful shutdown started
87
+ 2007-07-04 13:00:41: (log.c.135) server stopped
88
+ 2007-07-04 13:00:43: (log.c.75) server started
89
+ 2007-07-04 13:00:56: (server.c.1252) [note] graceful shutdown started
90
+ 2007-07-04 13:00:56: (log.c.135) server stopped
91
+ 2007-07-04 13:01:16: (log.c.75) server started
92
+ 2007-07-04 13:01:48: (server.c.1252) [note] graceful shutdown started
93
+ 2007-07-04 13:01:48: (log.c.135) server stopped
94
+ 2007-07-04 13:01:50: (log.c.75) server started
95
+ 2007-07-04 13:03:21: (server.c.1252) [note] graceful shutdown started
96
+ 2007-07-04 13:03:21: (log.c.135) server stopped
97
+ 2007-07-04 13:03:22: (log.c.75) server started
98
+ 2007-07-04 13:04:56: (server.c.1252) [note] graceful shutdown started
99
+ 2007-07-04 13:04:56: (log.c.135) server stopped
100
+ 2007-07-04 13:06:24: (log.c.75) server started
101
+ 2007-07-04 13:07:37: (server.c.1252) [note] graceful shutdown started
102
+ 2007-07-04 13:07:37: (log.c.135) server stopped
103
+ 2007-07-04 13:07:39: (log.c.75) server started
104
+ 2007-07-04 13:26:10: (server.c.1252) [note] graceful shutdown started
105
+ 2007-07-04 13:26:10: (log.c.135) server stopped
106
+ 2007-07-04 13:26:12: (log.c.75) server started
107
+ 2007-07-04 13:31:36: (server.c.1252) [note] graceful shutdown started
108
+ 2007-07-04 13:31:36: (log.c.135) server stopped
109
+ 2007-07-04 13:34:18: (log.c.75) server started
110
+ 2007-07-04 13:42:35: (server.c.1252) [note] graceful shutdown started
111
+ 2007-07-04 13:42:35: (log.c.135) server stopped
112
+ 2007-07-04 13:42:39: (log.c.75) server started
113
+ 2007-07-04 13:44:51: (server.c.1252) [note] graceful shutdown started
114
+ 2007-07-04 13:44:51: (log.c.135) server stopped
115
+ 2007-07-04 13:44:53: (log.c.75) server started
116
+ 2007-07-04 14:11:07: (server.c.1252) [note] graceful shutdown started
117
+ 2007-07-04 14:11:07: (log.c.135) server stopped
118
+ 2007-07-04 14:11:09: (log.c.75) server started
119
+ 2007-07-04 14:15:44: (server.c.1252) [note] graceful shutdown started
120
+ 2007-07-04 14:15:44: (log.c.135) server stopped
121
+ 2007-07-04 14:15:46: (log.c.75) server started
122
+ 2007-07-04 14:18:45: (server.c.1252) [note] graceful shutdown started
123
+ 2007-07-04 14:18:45: (log.c.135) server stopped
124
+ 2007-07-04 14:18:47: (log.c.75) server started
125
+ 2007-07-04 14:31:40: (server.c.1252) [note] graceful shutdown started
126
+ 2007-07-04 14:31:40: (log.c.135) server stopped
127
+ 2007-07-04 14:31:42: (log.c.75) server started
128
+ 2007-07-04 15:00:01: (server.c.1252) [note] graceful shutdown started
129
+ 2007-07-04 15:00:01: (log.c.135) server stopped
130
+ 2007-07-04 15:00:03: (log.c.75) server started
131
+ 2007-07-04 15:00:31: (server.c.1252) [note] graceful shutdown started
132
+ 2007-07-04 15:00:32: (log.c.135) server stopped
133
+ 2007-07-04 15:00:36: (log.c.75) server started
134
+ 2007-07-04 15:01:59: (server.c.1252) [note] graceful shutdown started
135
+ 2007-07-04 15:01:59: (log.c.135) server stopped
136
+ 2007-07-04 15:02:02: (log.c.75) server started
137
+ 2007-07-04 15:03:56: (server.c.1252) [note] graceful shutdown started
138
+ 2007-07-04 15:03:56: (log.c.135) server stopped
139
+ 2007-07-04 15:03:58: (log.c.75) server started
140
+ 2007-07-04 15:04:43: (server.c.1252) [note] graceful shutdown started
141
+ 2007-07-04 15:04:43: (log.c.135) server stopped
142
+ 2007-07-04 15:04:45: (log.c.75) server started
143
+ 2007-07-04 15:49:35: (server.c.1252) [note] graceful shutdown started
144
+ 2007-07-04 15:49:35: (log.c.135) server stopped
data/samples.rb ADDED
@@ -0,0 +1,10 @@
1
+ require 'lib/flatulent'
2
+
3
+ puts '<hr>'
4
+ puts Flatulent.element('FOO')
5
+ puts '<hr>'
6
+ puts Flatulent.element('BAR')
7
+ puts '<hr>'
8
+ puts Flatulent.element('FOOBAR')
9
+ puts '<hr>'
10
+ puts Flatulent.element('BARFOO')
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: flatulent
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.1
7
- date: 2007-07-02 00:00:00 -06:00
6
+ version: 0.0.2
7
+ date: 2007-07-04 00:00:00 -06:00
8
8
  summary: flatulent
9
9
  require_paths:
10
10
  - lib
@@ -29,11 +29,22 @@ post_install_message:
29
29
  authors:
30
30
  - Ara T. Howard
31
31
  files:
32
- - flatulent-0.0.0.gem
32
+ - flatulent-0.0.2.gem
33
33
  - gemspec.rb
34
34
  - lib
35
35
  - lib/flatulent
36
36
  - lib/flatulent/attributes.rb
37
+ - lib/flatulent/crypt
38
+ - lib/flatulent/crypt/blowfish-tables.rb
39
+ - lib/flatulent/crypt/blowfish.rb
40
+ - lib/flatulent/crypt/cbc.rb
41
+ - lib/flatulent/crypt/gost.rb
42
+ - lib/flatulent/crypt/idea.rb
43
+ - lib/flatulent/crypt/noise.rb
44
+ - lib/flatulent/crypt/purerubystringio.rb
45
+ - lib/flatulent/crypt/rijndael-tables.rb
46
+ - lib/flatulent/crypt/rijndael.rb
47
+ - lib/flatulent/crypt/stringxor.rb
37
48
  - lib/flatulent/fontfiles
38
49
  - lib/flatulent/fontfiles/banner.flf
39
50
  - lib/flatulent/fontfiles/big.flf
@@ -67,6 +78,7 @@ files:
67
78
  - lib/flatulent/text/soundex.rb
68
79
  - lib/flatulent/text.rb
69
80
  - lib/flatulent.rb
81
+ - lib/flatulent.rb.bak
70
82
  - rails
71
83
  - rails/app
72
84
  - rails/app/controllers
@@ -94,6 +106,52 @@ files:
94
106
  - rails/doc
95
107
  - rails/doc/README_FOR_APP
96
108
  - rails/lib
109
+ - rails/lib/flatulent
110
+ - rails/lib/flatulent/attributes.rb
111
+ - rails/lib/flatulent/crypt
112
+ - rails/lib/flatulent/crypt/blowfish-tables.rb
113
+ - rails/lib/flatulent/crypt/blowfish.rb
114
+ - rails/lib/flatulent/crypt/cbc.rb
115
+ - rails/lib/flatulent/crypt/gost.rb
116
+ - rails/lib/flatulent/crypt/idea.rb
117
+ - rails/lib/flatulent/crypt/noise.rb
118
+ - rails/lib/flatulent/crypt/purerubystringio.rb
119
+ - rails/lib/flatulent/crypt/rijndael-tables.rb
120
+ - rails/lib/flatulent/crypt/rijndael.rb
121
+ - rails/lib/flatulent/fontfiles
122
+ - rails/lib/flatulent/fontfiles/banner.flf
123
+ - rails/lib/flatulent/fontfiles/big.flf
124
+ - rails/lib/flatulent/fontfiles/block.flf
125
+ - rails/lib/flatulent/fontfiles/bubble.flf
126
+ - rails/lib/flatulent/fontfiles/digital.flf
127
+ - rails/lib/flatulent/fontfiles/ivrit.flf
128
+ - rails/lib/flatulent/fontfiles/lean.flf
129
+ - rails/lib/flatulent/fontfiles/mini.flf
130
+ - rails/lib/flatulent/fontfiles/mnemonic.flf
131
+ - rails/lib/flatulent/fontfiles/script.flf
132
+ - rails/lib/flatulent/fontfiles/shadow.flf
133
+ - rails/lib/flatulent/fontfiles/slant.flf
134
+ - rails/lib/flatulent/fontfiles/small.flf
135
+ - rails/lib/flatulent/fontfiles/smscript.flf
136
+ - rails/lib/flatulent/fontfiles/smshadow.flf
137
+ - rails/lib/flatulent/fontfiles/smslant.flf
138
+ - rails/lib/flatulent/fontfiles/standard.flf
139
+ - rails/lib/flatulent/fontfiles/term.flf
140
+ - rails/lib/flatulent/pervasives.rb
141
+ - rails/lib/flatulent/stringxor.rb
142
+ - rails/lib/flatulent/text
143
+ - rails/lib/flatulent/text/double_metaphone.rb
144
+ - rails/lib/flatulent/text/figlet
145
+ - rails/lib/flatulent/text/figlet/font.rb
146
+ - rails/lib/flatulent/text/figlet/smusher.rb
147
+ - rails/lib/flatulent/text/figlet/typesetter.rb
148
+ - rails/lib/flatulent/text/figlet.rb
149
+ - rails/lib/flatulent/text/levenshtein.rb
150
+ - rails/lib/flatulent/text/metaphone.rb
151
+ - rails/lib/flatulent/text/porter_stemming.rb
152
+ - rails/lib/flatulent/text/soundex.rb
153
+ - rails/lib/flatulent/text.rb
154
+ - rails/lib/flatulent.rb
97
155
  - rails/lib/tasks
98
156
  - rails/log
99
157
  - rails/log/development.log
@@ -151,13 +209,21 @@ files:
151
209
  - rails/test/unit
152
210
  - rails/tmp
153
211
  - rails/tmp/cache
212
+ - rails/tmp/cache/javascripts
213
+ - rails/tmp/cache/javascripts/prototype.js-gzip-3275912-71260-1183440172
154
214
  - rails/tmp/pids
155
215
  - rails/tmp/sessions
216
+ - rails/tmp/sessions/ruby_sess.32d68bc997054475
217
+ - rails/tmp/sessions/ruby_sess.4694a4b9bdf9bcf4
156
218
  - rails/tmp/sessions/ruby_sess.517c54e2d384126a
219
+ - rails/tmp/sessions/ruby_sess.99469fde69043a05
220
+ - rails/tmp/sessions/ruby_sess.a588c0a457345912
221
+ - rails/tmp/sessions/ruby_sess.b3344125a84a3efa
157
222
  - rails/tmp/sockets
158
223
  - rails/vendor
159
224
  - rails/vendor/plugins
160
225
  - README
226
+ - samples.rb
161
227
  test_files: []
162
228
 
163
229
  rdoc_options: []
data/flatulent-0.0.0.gem DELETED
Binary file