tagz 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 (73) hide show
  1. data/a.rb +11 -0
  2. data/gemspec.rb +27 -0
  3. data/gen_readme.rb +32 -0
  4. data/install.rb +210 -0
  5. data/lib/tagz.rb +376 -0
  6. data/lib/tagz/rails.rb +198 -0
  7. data/rails/README +182 -0
  8. data/rails/Rakefile +10 -0
  9. data/rails/app/controllers/application.rb +7 -0
  10. data/rails/app/controllers/tagz_controller.rb +51 -0
  11. data/rails/app/helpers/application_helper.rb +3 -0
  12. data/rails/app/helpers/tagz_helper.rb +2 -0
  13. data/rails/app/views/layouts/layout.rb +16 -0
  14. data/rails/app/views/tagz/b.rb +19 -0
  15. data/rails/app/views/tagz/c.rb +9 -0
  16. data/rails/app/views/tagz/d.rhtml +17 -0
  17. data/rails/app/views/tagz/e.rb +3 -0
  18. data/rails/config/boot.rb +45 -0
  19. data/rails/config/database.yml +36 -0
  20. data/rails/config/environment.rb +65 -0
  21. data/rails/config/environments/development.rb +21 -0
  22. data/rails/config/environments/production.rb +18 -0
  23. data/rails/config/environments/test.rb +19 -0
  24. data/rails/config/lighttpd.conf +54 -0
  25. data/rails/config/routes.rb +23 -0
  26. data/rails/doc/README_FOR_APP +2 -0
  27. data/rails/log/development.log +6713 -0
  28. data/rails/log/fastcgi.crash.log +103 -0
  29. data/rails/log/lighttpd.access.log +171 -0
  30. data/rails/log/lighttpd.error.log +116 -0
  31. data/rails/log/production.log +0 -0
  32. data/rails/log/server.log +0 -0
  33. data/rails/log/test.log +0 -0
  34. data/rails/public/404.html +30 -0
  35. data/rails/public/500.html +30 -0
  36. data/rails/public/dispatch.cgi +10 -0
  37. data/rails/public/dispatch.fcgi +24 -0
  38. data/rails/public/dispatch.rb +10 -0
  39. data/rails/public/favicon.ico +0 -0
  40. data/rails/public/images/rails.png +0 -0
  41. data/rails/public/index.html +277 -0
  42. data/rails/public/javascripts/application.js +2 -0
  43. data/rails/public/javascripts/controls.js +833 -0
  44. data/rails/public/javascripts/dragdrop.js +942 -0
  45. data/rails/public/javascripts/effects.js +1088 -0
  46. data/rails/public/javascripts/prototype.js +2515 -0
  47. data/rails/public/robots.txt +1 -0
  48. data/rails/script/about +3 -0
  49. data/rails/script/breakpointer +3 -0
  50. data/rails/script/console +3 -0
  51. data/rails/script/destroy +3 -0
  52. data/rails/script/generate +3 -0
  53. data/rails/script/performance/benchmarker +3 -0
  54. data/rails/script/performance/profiler +3 -0
  55. data/rails/script/plugin +3 -0
  56. data/rails/script/process/inspector +3 -0
  57. data/rails/script/process/reaper +3 -0
  58. data/rails/script/process/spawner +3 -0
  59. data/rails/script/runner +3 -0
  60. data/rails/script/server +4 -0
  61. data/rails/test/functional/tagz_controller_test.rb +18 -0
  62. data/rails/test/test_helper.rb +28 -0
  63. data/rails/tmp/cache/index.html-gzip-1958902-7552-1181801882 +0 -0
  64. data/rails/tmp/cache/javascripts/effects.js-gzip-1958907-38200-1181801882 +0 -0
  65. data/rails/tmp/cache/javascripts/prototype.js-gzip-1958906-71260-1181801882 +0 -0
  66. data/rails/tmp/sessions/ruby_sess.365e696810aa7418 +0 -0
  67. data/rails/tmp/sessions/ruby_sess.3ab0cb2f589d3855 +0 -0
  68. data/rails/tmp/sessions/ruby_sess.c812e68d96a6e99f +0 -0
  69. data/rails/tmp/sessions/ruby_sess.e0a954440a7e27d7 +0 -0
  70. data/sample/a.rb +9 -0
  71. data/test/tagz.rb +436 -0
  72. data/tidy +3 -0
  73. metadata +161 -0
data/tidy ADDED
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'hpricot'
3
+ puts Hpricot(ARGF)
metadata ADDED
@@ -0,0 +1,161 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.2
3
+ specification_version: 1
4
+ name: tagz
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.0.1
7
+ date: 2007-07-17 00:00:00 -06:00
8
+ summary: tagz
9
+ require_paths:
10
+ - lib
11
+ email: ara.t.howard@noaa.gov
12
+ homepage: http://codeforpeople.com/lib/ruby/tagz/
13
+ rubyforge_project:
14
+ description:
15
+ autorequire: tagz
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
+ - a.rb
33
+ - gemspec.rb
34
+ - gen_readme.rb
35
+ - install.rb
36
+ - lib
37
+ - lib/tagz
38
+ - lib/tagz/rails.rb
39
+ - lib/tagz.rb
40
+ - rails
41
+ - rails/app
42
+ - rails/app/controllers
43
+ - rails/app/controllers/application.rb
44
+ - rails/app/controllers/tagz_controller.rb
45
+ - rails/app/helpers
46
+ - rails/app/helpers/application_helper.rb
47
+ - rails/app/helpers/tagz_helper.rb
48
+ - rails/app/models
49
+ - rails/app/views
50
+ - rails/app/views/layouts
51
+ - rails/app/views/layouts/layout.rb
52
+ - rails/app/views/layouts/tagz
53
+ - rails/app/views/tagz
54
+ - rails/app/views/tagz/b.rb
55
+ - rails/app/views/tagz/c.rb
56
+ - rails/app/views/tagz/d.rhtml
57
+ - rails/app/views/tagz/e.rb
58
+ - rails/components
59
+ - rails/config
60
+ - rails/config/boot.rb
61
+ - rails/config/database.yml
62
+ - rails/config/environment.rb
63
+ - rails/config/environments
64
+ - rails/config/environments/development.rb
65
+ - rails/config/environments/production.rb
66
+ - rails/config/environments/test.rb
67
+ - rails/config/lighttpd.conf
68
+ - rails/config/routes.rb
69
+ - rails/db
70
+ - rails/doc
71
+ - rails/doc/README_FOR_APP
72
+ - rails/lib
73
+ - rails/lib/tasks
74
+ - rails/log
75
+ - rails/log/development.log
76
+ - rails/log/fastcgi.crash.log
77
+ - rails/log/lighttpd.access.log
78
+ - rails/log/lighttpd.error.log
79
+ - rails/log/production.log
80
+ - rails/log/server.log
81
+ - rails/log/test.log
82
+ - rails/public
83
+ - rails/public/404.html
84
+ - rails/public/500.html
85
+ - rails/public/dispatch.cgi
86
+ - rails/public/dispatch.fcgi
87
+ - rails/public/dispatch.rb
88
+ - rails/public/favicon.ico
89
+ - rails/public/images
90
+ - rails/public/images/rails.png
91
+ - rails/public/index.html
92
+ - rails/public/javascripts
93
+ - rails/public/javascripts/application.js
94
+ - rails/public/javascripts/controls.js
95
+ - rails/public/javascripts/dragdrop.js
96
+ - rails/public/javascripts/effects.js
97
+ - rails/public/javascripts/prototype.js
98
+ - rails/public/robots.txt
99
+ - rails/public/stylesheets
100
+ - rails/Rakefile
101
+ - rails/README
102
+ - rails/script
103
+ - rails/script/about
104
+ - rails/script/breakpointer
105
+ - rails/script/console
106
+ - rails/script/destroy
107
+ - rails/script/generate
108
+ - rails/script/performance
109
+ - rails/script/performance/benchmarker
110
+ - rails/script/performance/profiler
111
+ - rails/script/plugin
112
+ - rails/script/process
113
+ - rails/script/process/inspector
114
+ - rails/script/process/reaper
115
+ - rails/script/process/spawner
116
+ - rails/script/runner
117
+ - rails/script/server
118
+ - rails/test
119
+ - rails/test/fixtures
120
+ - rails/test/functional
121
+ - rails/test/functional/tagz_controller_test.rb
122
+ - rails/test/integration
123
+ - rails/test/mocks
124
+ - rails/test/mocks/development
125
+ - rails/test/mocks/test
126
+ - rails/test/test_helper.rb
127
+ - rails/test/unit
128
+ - rails/tmp
129
+ - rails/tmp/cache
130
+ - rails/tmp/cache/index.html-gzip-1958902-7552-1181801882
131
+ - rails/tmp/cache/javascripts
132
+ - rails/tmp/cache/javascripts/effects.js-gzip-1958907-38200-1181801882
133
+ - rails/tmp/cache/javascripts/prototype.js-gzip-1958906-71260-1181801882
134
+ - rails/tmp/pids
135
+ - rails/tmp/sessions
136
+ - rails/tmp/sessions/ruby_sess.365e696810aa7418
137
+ - rails/tmp/sessions/ruby_sess.3ab0cb2f589d3855
138
+ - rails/tmp/sessions/ruby_sess.c812e68d96a6e99f
139
+ - rails/tmp/sessions/ruby_sess.e0a954440a7e27d7
140
+ - rails/tmp/sockets
141
+ - rails/vendor
142
+ - rails/vendor/plugins
143
+ - sample
144
+ - sample/a.rb
145
+ - test
146
+ - test/tagz.rb
147
+ - tidy
148
+ test_files:
149
+ - test/tagz.rb
150
+ rdoc_options: []
151
+
152
+ extra_rdoc_files: []
153
+
154
+ executables: []
155
+
156
+ extensions: []
157
+
158
+ requirements: []
159
+
160
+ dependencies: []
161
+