flatulent 0.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 (87) hide show
  1. data/README +41 -0
  2. data/flatulent-0.0.0.gem +0 -0
  3. data/gemspec.rb +28 -0
  4. data/lib/flatulent.rb +239 -0
  5. data/lib/flatulent/attributes.rb +79 -0
  6. data/lib/flatulent/fontfiles/banner.flf +2494 -0
  7. data/lib/flatulent/fontfiles/big.flf +2204 -0
  8. data/lib/flatulent/fontfiles/block.flf +1691 -0
  9. data/lib/flatulent/fontfiles/bubble.flf +1630 -0
  10. data/lib/flatulent/fontfiles/digital.flf +1286 -0
  11. data/lib/flatulent/fontfiles/ivrit.flf +900 -0
  12. data/lib/flatulent/fontfiles/lean.flf +1691 -0
  13. data/lib/flatulent/fontfiles/mini.flf +899 -0
  14. data/lib/flatulent/fontfiles/mnemonic.flf +3702 -0
  15. data/lib/flatulent/fontfiles/script.flf +1493 -0
  16. data/lib/flatulent/fontfiles/shadow.flf +1097 -0
  17. data/lib/flatulent/fontfiles/slant.flf +1295 -0
  18. data/lib/flatulent/fontfiles/small.flf +1097 -0
  19. data/lib/flatulent/fontfiles/smscript.flf +1097 -0
  20. data/lib/flatulent/fontfiles/smshadow.flf +899 -0
  21. data/lib/flatulent/fontfiles/smslant.flf +1097 -0
  22. data/lib/flatulent/fontfiles/standard.flf +2227 -0
  23. data/lib/flatulent/fontfiles/term.flf +600 -0
  24. data/lib/flatulent/pervasives.rb +32 -0
  25. data/lib/flatulent/text.rb +6 -0
  26. data/lib/flatulent/text/double_metaphone.rb +356 -0
  27. data/lib/flatulent/text/figlet.rb +17 -0
  28. data/lib/flatulent/text/figlet/font.rb +117 -0
  29. data/lib/flatulent/text/figlet/smusher.rb +64 -0
  30. data/lib/flatulent/text/figlet/typesetter.rb +68 -0
  31. data/lib/flatulent/text/levenshtein.rb +65 -0
  32. data/lib/flatulent/text/metaphone.rb +97 -0
  33. data/lib/flatulent/text/porter_stemming.rb +171 -0
  34. data/lib/flatulent/text/soundex.rb +61 -0
  35. data/rails/README +182 -0
  36. data/rails/Rakefile +10 -0
  37. data/rails/app/controllers/application.rb +7 -0
  38. data/rails/app/controllers/flatulent_controller.rb +20 -0
  39. data/rails/app/helpers/application_helper.rb +3 -0
  40. data/rails/app/helpers/flatulent_helper.rb +2 -0
  41. data/rails/config/boot.rb +45 -0
  42. data/rails/config/database.yml +36 -0
  43. data/rails/config/environment.rb +60 -0
  44. data/rails/config/environments/development.rb +21 -0
  45. data/rails/config/environments/production.rb +18 -0
  46. data/rails/config/environments/test.rb +19 -0
  47. data/rails/config/lighttpd.conf +54 -0
  48. data/rails/config/routes.rb +23 -0
  49. data/rails/doc/README_FOR_APP +2 -0
  50. data/rails/log/development.log +950 -0
  51. data/rails/log/fastcgi.crash.log +34 -0
  52. data/rails/log/lighttpd.access.log +65 -0
  53. data/rails/log/lighttpd.error.log +33 -0
  54. data/rails/log/production.log +0 -0
  55. data/rails/log/server.log +0 -0
  56. data/rails/log/test.log +0 -0
  57. data/rails/public/404.html +30 -0
  58. data/rails/public/500.html +30 -0
  59. data/rails/public/dispatch.cgi +10 -0
  60. data/rails/public/dispatch.fcgi +24 -0
  61. data/rails/public/dispatch.rb +10 -0
  62. data/rails/public/favicon.ico +0 -0
  63. data/rails/public/images/rails.png +0 -0
  64. data/rails/public/index.html +277 -0
  65. data/rails/public/javascripts/application.js +2 -0
  66. data/rails/public/javascripts/controls.js +833 -0
  67. data/rails/public/javascripts/dragdrop.js +942 -0
  68. data/rails/public/javascripts/effects.js +1088 -0
  69. data/rails/public/javascripts/prototype.js +2515 -0
  70. data/rails/public/robots.txt +1 -0
  71. data/rails/script/about +3 -0
  72. data/rails/script/breakpointer +3 -0
  73. data/rails/script/console +3 -0
  74. data/rails/script/destroy +3 -0
  75. data/rails/script/generate +3 -0
  76. data/rails/script/performance/benchmarker +3 -0
  77. data/rails/script/performance/profiler +3 -0
  78. data/rails/script/plugin +3 -0
  79. data/rails/script/process/inspector +3 -0
  80. data/rails/script/process/reaper +3 -0
  81. data/rails/script/process/spawner +3 -0
  82. data/rails/script/runner +3 -0
  83. data/rails/script/server +3 -0
  84. data/rails/test/functional/flatulent_controller_test.rb +18 -0
  85. data/rails/test/test_helper.rb +28 -0
  86. data/rails/tmp/sessions/ruby_sess.517c54e2d384126a +0 -0
  87. metadata +174 -0
@@ -0,0 +1 @@
1
+ # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/about'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/breakpointer'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/console'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/destroy'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/generate'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/benchmarker'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/performance/profiler'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/plugin'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/inspector'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/reaper'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../../config/boot'
3
+ require 'commands/process/spawner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/runner'
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+ require File.dirname(__FILE__) + '/../config/boot'
3
+ require 'commands/server'
@@ -0,0 +1,18 @@
1
+ require File.dirname(__FILE__) + '/../test_helper'
2
+ require 'flatulent_controller'
3
+
4
+ # Re-raise errors caught by the controller.
5
+ class FlatulentController; def rescue_action(e) raise e end; end
6
+
7
+ class FlatulentControllerTest < Test::Unit::TestCase
8
+ def setup
9
+ @controller = FlatulentController.new
10
+ @request = ActionController::TestRequest.new
11
+ @response = ActionController::TestResponse.new
12
+ end
13
+
14
+ # Replace this with your real tests.
15
+ def test_truth
16
+ assert true
17
+ end
18
+ end
@@ -0,0 +1,28 @@
1
+ ENV["RAILS_ENV"] = "test"
2
+ require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
3
+ require 'test_help'
4
+
5
+ class Test::Unit::TestCase
6
+ # Transactional fixtures accelerate your tests by wrapping each test method
7
+ # in a transaction that's rolled back on completion. This ensures that the
8
+ # test database remains unchanged so your fixtures don't have to be reloaded
9
+ # between every test method. Fewer database queries means faster tests.
10
+ #
11
+ # Read Mike Clark's excellent walkthrough at
12
+ # http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
13
+ #
14
+ # Every Active Record database supports transactions except MyISAM tables
15
+ # in MySQL. Turn off transactional fixtures in this case; however, if you
16
+ # don't care one way or the other, switching from MyISAM to InnoDB tables
17
+ # is recommended.
18
+ self.use_transactional_fixtures = true
19
+
20
+ # Instantiated fixtures are slow, but give you @david where otherwise you
21
+ # would need people(:david). If you don't want to migrate your existing
22
+ # test cases which use the @david style and don't mind the speed hit (each
23
+ # instantiated fixtures translates to a database query per test method),
24
+ # then set this back to true.
25
+ self.use_instantiated_fixtures = false
26
+
27
+ # Add more helper methods to be used by all tests here...
28
+ end
metadata ADDED
@@ -0,0 +1,174 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.2
3
+ specification_version: 1
4
+ name: flatulent
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.0.1
7
+ date: 2007-07-02 00:00:00 -06:00
8
+ summary: flatulent
9
+ require_paths:
10
+ - lib
11
+ email: ara.t.howard@gmail.com
12
+ homepage: http://codeforpeople.com/lib/ruby/flatulent/
13
+ rubyforge_project:
14
+ description:
15
+ autorequire: flatulent
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: false
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - Ara T. Howard
31
+ files:
32
+ - flatulent-0.0.0.gem
33
+ - gemspec.rb
34
+ - lib
35
+ - lib/flatulent
36
+ - lib/flatulent/attributes.rb
37
+ - lib/flatulent/fontfiles
38
+ - lib/flatulent/fontfiles/banner.flf
39
+ - lib/flatulent/fontfiles/big.flf
40
+ - lib/flatulent/fontfiles/block.flf
41
+ - lib/flatulent/fontfiles/bubble.flf
42
+ - lib/flatulent/fontfiles/digital.flf
43
+ - lib/flatulent/fontfiles/ivrit.flf
44
+ - lib/flatulent/fontfiles/lean.flf
45
+ - lib/flatulent/fontfiles/mini.flf
46
+ - lib/flatulent/fontfiles/mnemonic.flf
47
+ - lib/flatulent/fontfiles/script.flf
48
+ - lib/flatulent/fontfiles/shadow.flf
49
+ - lib/flatulent/fontfiles/slant.flf
50
+ - lib/flatulent/fontfiles/small.flf
51
+ - lib/flatulent/fontfiles/smscript.flf
52
+ - lib/flatulent/fontfiles/smshadow.flf
53
+ - lib/flatulent/fontfiles/smslant.flf
54
+ - lib/flatulent/fontfiles/standard.flf
55
+ - lib/flatulent/fontfiles/term.flf
56
+ - lib/flatulent/pervasives.rb
57
+ - lib/flatulent/text
58
+ - lib/flatulent/text/double_metaphone.rb
59
+ - lib/flatulent/text/figlet
60
+ - lib/flatulent/text/figlet/font.rb
61
+ - lib/flatulent/text/figlet/smusher.rb
62
+ - lib/flatulent/text/figlet/typesetter.rb
63
+ - lib/flatulent/text/figlet.rb
64
+ - lib/flatulent/text/levenshtein.rb
65
+ - lib/flatulent/text/metaphone.rb
66
+ - lib/flatulent/text/porter_stemming.rb
67
+ - lib/flatulent/text/soundex.rb
68
+ - lib/flatulent/text.rb
69
+ - lib/flatulent.rb
70
+ - rails
71
+ - rails/app
72
+ - rails/app/controllers
73
+ - rails/app/controllers/application.rb
74
+ - rails/app/controllers/flatulent_controller.rb
75
+ - rails/app/helpers
76
+ - rails/app/helpers/application_helper.rb
77
+ - rails/app/helpers/flatulent_helper.rb
78
+ - rails/app/models
79
+ - rails/app/views
80
+ - rails/app/views/flatulent
81
+ - rails/app/views/layouts
82
+ - rails/components
83
+ - rails/config
84
+ - rails/config/boot.rb
85
+ - rails/config/database.yml
86
+ - rails/config/environment.rb
87
+ - rails/config/environments
88
+ - rails/config/environments/development.rb
89
+ - rails/config/environments/production.rb
90
+ - rails/config/environments/test.rb
91
+ - rails/config/lighttpd.conf
92
+ - rails/config/routes.rb
93
+ - rails/db
94
+ - rails/doc
95
+ - rails/doc/README_FOR_APP
96
+ - rails/lib
97
+ - rails/lib/tasks
98
+ - rails/log
99
+ - rails/log/development.log
100
+ - rails/log/fastcgi.crash.log
101
+ - rails/log/lighttpd.access.log
102
+ - rails/log/lighttpd.error.log
103
+ - rails/log/production.log
104
+ - rails/log/server.log
105
+ - rails/log/test.log
106
+ - rails/public
107
+ - rails/public/404.html
108
+ - rails/public/500.html
109
+ - rails/public/dispatch.cgi
110
+ - rails/public/dispatch.fcgi
111
+ - rails/public/dispatch.rb
112
+ - rails/public/favicon.ico
113
+ - rails/public/images
114
+ - rails/public/images/rails.png
115
+ - rails/public/index.html
116
+ - rails/public/javascripts
117
+ - rails/public/javascripts/application.js
118
+ - rails/public/javascripts/controls.js
119
+ - rails/public/javascripts/dragdrop.js
120
+ - rails/public/javascripts/effects.js
121
+ - rails/public/javascripts/prototype.js
122
+ - rails/public/robots.txt
123
+ - rails/public/stylesheets
124
+ - rails/Rakefile
125
+ - rails/README
126
+ - rails/script
127
+ - rails/script/about
128
+ - rails/script/breakpointer
129
+ - rails/script/console
130
+ - rails/script/destroy
131
+ - rails/script/generate
132
+ - rails/script/performance
133
+ - rails/script/performance/benchmarker
134
+ - rails/script/performance/profiler
135
+ - rails/script/plugin
136
+ - rails/script/process
137
+ - rails/script/process/inspector
138
+ - rails/script/process/reaper
139
+ - rails/script/process/spawner
140
+ - rails/script/runner
141
+ - rails/script/server
142
+ - rails/test
143
+ - rails/test/fixtures
144
+ - rails/test/functional
145
+ - rails/test/functional/flatulent_controller_test.rb
146
+ - rails/test/integration
147
+ - rails/test/mocks
148
+ - rails/test/mocks/development
149
+ - rails/test/mocks/test
150
+ - rails/test/test_helper.rb
151
+ - rails/test/unit
152
+ - rails/tmp
153
+ - rails/tmp/cache
154
+ - rails/tmp/pids
155
+ - rails/tmp/sessions
156
+ - rails/tmp/sessions/ruby_sess.517c54e2d384126a
157
+ - rails/tmp/sockets
158
+ - rails/vendor
159
+ - rails/vendor/plugins
160
+ - README
161
+ test_files: []
162
+
163
+ rdoc_options: []
164
+
165
+ extra_rdoc_files: []
166
+
167
+ executables: []
168
+
169
+ extensions: []
170
+
171
+ requirements: []
172
+
173
+ dependencies: []
174
+