swiftiply 0.5.0

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 (76) hide show
  1. data/README +126 -0
  2. data/bin/mongrel_rails +254 -0
  3. data/bin/swiftiply +136 -0
  4. data/bin/swiftiply_mongrel_rails +54 -0
  5. data/external/package.rb +672 -0
  6. data/external/test_support.rb +58 -0
  7. data/setup.rb +40 -0
  8. data/src/ramaze/adapter/evented_mongrel.rb +2 -0
  9. data/src/ramaze/adapter/swiftiplied_mongrel.rb +2 -0
  10. data/src/swiftcore/Swiftiply.rb +444 -0
  11. data/src/swiftcore/Swiftiply.rb.orig +390 -0
  12. data/src/swiftcore/evented_mongrel.rb +182 -0
  13. data/src/swiftcore/swiftiplied_mongrel.rb +212 -0
  14. data/swiftiply.gemspec +41 -0
  15. data/test/rails/README +182 -0
  16. data/test/rails/Rakefile +10 -0
  17. data/test/rails/app/controllers/application.rb +6 -0
  18. data/test/rails/app/controllers/tests_controller.rb +15 -0
  19. data/test/rails/app/helpers/application_helper.rb +3 -0
  20. data/test/rails/config/boot.rb +45 -0
  21. data/test/rails/config/database.yml +36 -0
  22. data/test/rails/config/environment.rb +60 -0
  23. data/test/rails/config/environments/development.rb +21 -0
  24. data/test/rails/config/environments/production.rb +18 -0
  25. data/test/rails/config/environments/production_no_caching.rb +18 -0
  26. data/test/rails/config/environments/test.rb +19 -0
  27. data/test/rails/config/routes.rb +23 -0
  28. data/test/rails/doc/README_FOR_APP +2 -0
  29. data/test/rails/observe_ram.rb +10 -0
  30. data/test/rails/public/404.html +30 -0
  31. data/test/rails/public/500.html +30 -0
  32. data/test/rails/public/dispatch.cgi +10 -0
  33. data/test/rails/public/dispatch.fcgi +24 -0
  34. data/test/rails/public/dispatch.rb +10 -0
  35. data/test/rails/public/favicon.ico +0 -0
  36. data/test/rails/public/images/rails.png +0 -0
  37. data/test/rails/public/index.html +277 -0
  38. data/test/rails/public/javascripts/application.js +2 -0
  39. data/test/rails/public/javascripts/controls.js +833 -0
  40. data/test/rails/public/javascripts/dragdrop.js +942 -0
  41. data/test/rails/public/javascripts/effects.js +1088 -0
  42. data/test/rails/public/javascripts/prototype.js +2515 -0
  43. data/test/rails/public/robots.txt +1 -0
  44. data/test/rails/script/about +3 -0
  45. data/test/rails/script/breakpointer +3 -0
  46. data/test/rails/script/console +3 -0
  47. data/test/rails/script/destroy +3 -0
  48. data/test/rails/script/generate +3 -0
  49. data/test/rails/script/performance/benchmarker +3 -0
  50. data/test/rails/script/performance/profiler +3 -0
  51. data/test/rails/script/plugin +3 -0
  52. data/test/rails/script/process/inspector +3 -0
  53. data/test/rails/script/process/reaper +3 -0
  54. data/test/rails/script/process/spawner +3 -0
  55. data/test/rails/script/runner +3 -0
  56. data/test/rails/script/server +3 -0
  57. data/test/rails/test/test_helper.rb +28 -0
  58. data/test/ramaze/conf/benchmark.yaml +35 -0
  59. data/test/ramaze/conf/debug.yaml +34 -0
  60. data/test/ramaze/conf/live.yaml +33 -0
  61. data/test/ramaze/conf/silent.yaml +31 -0
  62. data/test/ramaze/conf/stage.yaml +33 -0
  63. data/test/ramaze/main.rb +18 -0
  64. data/test/ramaze/public/404.jpg +0 -0
  65. data/test/ramaze/public/css/coderay.css +105 -0
  66. data/test/ramaze/public/css/ramaze_error.css +42 -0
  67. data/test/ramaze/public/error.zmr +77 -0
  68. data/test/ramaze/public/favicon.ico +0 -0
  69. data/test/ramaze/public/js/jquery.js +1923 -0
  70. data/test/ramaze/public/ramaze.png +0 -0
  71. data/test/ramaze/src/controller/main.rb +8 -0
  72. data/test/ramaze/src/element/page.rb +17 -0
  73. data/test/ramaze/src/model.rb +6 -0
  74. data/test/ramaze/template/index.xhtml +6 -0
  75. data/test/ramaze/yaml.db +0 -0
  76. metadata +189 -0
Binary file
@@ -0,0 +1,8 @@
1
+ # Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ class MainController < Controller
5
+ def index
6
+ "Hello, World"
7
+ end
8
+ end
@@ -0,0 +1,17 @@
1
+ # Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ class Page < Ezamar::Element
5
+ def render
6
+ %{
7
+ <html>
8
+ <head>
9
+ <title>Welcome to Ramaze</title>
10
+ </head>
11
+ <body>
12
+ #{content}
13
+ </body>
14
+ </html>
15
+ }
16
+ end
17
+ end
@@ -0,0 +1,6 @@
1
+ # Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
2
+ # All files in this distribution are subject to the terms of the Ruby license.
3
+
4
+ require 'ramaze/store/default'
5
+
6
+ Db = Ramaze::Store::Default.new('yaml.db')
@@ -0,0 +1,6 @@
1
+ <Page>
2
+ <h1>Welcome to Ramaze</h1>
3
+ <p>
4
+ blah, blah, blah
5
+ </p>
6
+ </Page>
File without changes
metadata ADDED
@@ -0,0 +1,189 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.2
3
+ specification_version: 1
4
+ name: swiftiply
5
+ version: !ruby/object:Gem::Version
6
+ version: 0.5.0
7
+ date: 2007-05-12 00:00:00 +02:00
8
+ summary: A fast clustering proxy for web applications.
9
+ require_paths:
10
+ - src
11
+ email: wyhaines@gmail.com
12
+ homepage: http://swiftiply.swiftcore.org/
13
+ rubyforge_project: swiftiply
14
+ description: ""
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
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
+ - Kirk Haines
31
+ files:
32
+ - README
33
+ - bin
34
+ - external
35
+ - setup.rb
36
+ - src
37
+ - test
38
+ - swiftiply.gemspec
39
+ - bin/swiftiply
40
+ - bin/mongrel_rails
41
+ - bin/swiftiply_mongrel_rails
42
+ - external/test_support.rb
43
+ - external/package.rb
44
+ - src/swiftcore
45
+ - src/ramaze
46
+ - src/swiftcore/Swiftiply.rb.orig
47
+ - src/swiftcore/Swiftiply.rb
48
+ - src/swiftcore/swiftiplied_mongrel.rb
49
+ - src/swiftcore/evented_mongrel.rb
50
+ - src/ramaze/adapter
51
+ - src/ramaze/adapter/swiftiplied_mongrel.rb
52
+ - src/ramaze/adapter/evented_mongrel.rb
53
+ - test/rails
54
+ - test/merb
55
+ - test/camping
56
+ - test/ramaze
57
+ - test/rails/test
58
+ - test/rails/README
59
+ - test/rails/Rakefile
60
+ - test/rails/app
61
+ - test/rails/components
62
+ - test/rails/config
63
+ - test/rails/db
64
+ - test/rails/doc
65
+ - test/rails/lib
66
+ - test/rails/log
67
+ - test/rails/observe_ram.rb
68
+ - test/rails/public
69
+ - test/rails/script
70
+ - test/rails/tmp
71
+ - test/rails/vendor
72
+ - test/rails/test/fixtures
73
+ - test/rails/test/functional
74
+ - test/rails/test/integration
75
+ - test/rails/test/mocks
76
+ - test/rails/test/unit
77
+ - test/rails/test/test_helper.rb
78
+ - test/rails/test/mocks/development
79
+ - test/rails/test/mocks/test
80
+ - test/rails/app/controllers
81
+ - test/rails/app/helpers
82
+ - test/rails/app/models
83
+ - test/rails/app/views
84
+ - test/rails/app/controllers/application.rb
85
+ - test/rails/app/controllers/tests_controller.rb
86
+ - test/rails/app/helpers/application_helper.rb
87
+ - test/rails/app/views/layouts
88
+ - test/rails/config/environments
89
+ - test/rails/config/database.yml
90
+ - test/rails/config/routes.rb
91
+ - test/rails/config/boot.rb
92
+ - test/rails/config/environment.rb
93
+ - test/rails/config/environments/production.rb
94
+ - test/rails/config/environments/development.rb
95
+ - test/rails/config/environments/test.rb
96
+ - test/rails/config/environments/production_no_caching.rb
97
+ - test/rails/doc/README_FOR_APP
98
+ - test/rails/lib/tasks
99
+ - test/rails/public/images
100
+ - test/rails/public/javascripts
101
+ - test/rails/public/stylesheets
102
+ - test/rails/public/dispatch.rb
103
+ - test/rails/public/dispatch.cgi
104
+ - test/rails/public/dispatch.fcgi
105
+ - test/rails/public/404.html
106
+ - test/rails/public/500.html
107
+ - test/rails/public/index.html
108
+ - test/rails/public/favicon.ico
109
+ - test/rails/public/robots.txt
110
+ - test/rails/public/images/rails.png
111
+ - test/rails/public/javascripts/prototype.js
112
+ - test/rails/public/javascripts/effects.js
113
+ - test/rails/public/javascripts/dragdrop.js
114
+ - test/rails/public/javascripts/controls.js
115
+ - test/rails/public/javascripts/application.js
116
+ - test/rails/script/performance
117
+ - test/rails/script/process
118
+ - test/rails/script/about
119
+ - test/rails/script/breakpointer
120
+ - test/rails/script/console
121
+ - test/rails/script/destroy
122
+ - test/rails/script/generate
123
+ - test/rails/script/runner
124
+ - test/rails/script/server
125
+ - test/rails/script/plugin
126
+ - test/rails/script/performance/benchmarker
127
+ - test/rails/script/performance/profiler
128
+ - test/rails/script/process/reaper
129
+ - test/rails/script/process/spawner
130
+ - test/rails/script/process/inspector
131
+ - test/rails/tmp/sessions
132
+ - test/rails/tmp/sockets
133
+ - test/rails/tmp/cache
134
+ - test/rails/tmp/pids
135
+ - test/rails/vendor/plugins
136
+ - test/ramaze/main.rb
137
+ - test/ramaze/yaml.db
138
+ - test/ramaze/conf
139
+ - test/ramaze/public
140
+ - test/ramaze/src
141
+ - test/ramaze/template
142
+ - test/ramaze/conf/stage.yaml
143
+ - test/ramaze/conf/benchmark.yaml
144
+ - test/ramaze/conf/live.yaml
145
+ - test/ramaze/conf/silent.yaml
146
+ - test/ramaze/conf/debug.yaml
147
+ - test/ramaze/public/js
148
+ - test/ramaze/public/css
149
+ - test/ramaze/public/favicon.ico
150
+ - test/ramaze/public/ramaze.png
151
+ - test/ramaze/public/404.jpg
152
+ - test/ramaze/public/error.zmr
153
+ - test/ramaze/public/js/jquery.js
154
+ - test/ramaze/public/css/ramaze_error.css
155
+ - test/ramaze/public/css/coderay.css
156
+ - test/ramaze/src/element
157
+ - test/ramaze/src/controller
158
+ - test/ramaze/src/model.rb
159
+ - test/ramaze/src/element/page.rb
160
+ - test/ramaze/src/controller/main.rb
161
+ - test/ramaze/template/index.xhtml
162
+ test_files: []
163
+
164
+ rdoc_options:
165
+ - --title
166
+ - Swiftcore::Swiftiply
167
+ - --main
168
+ - README
169
+ - --line-numbers
170
+ extra_rdoc_files:
171
+ - README
172
+ executables:
173
+ - swiftiply
174
+ - mongrel_rails
175
+ - swiftiply_mongrel_rails
176
+ extensions: []
177
+
178
+ requirements:
179
+ - Eventmachine 0.7.0 or higher.
180
+ dependencies:
181
+ - !ruby/object:Gem::Dependency
182
+ name: eventmachine
183
+ version_requirement:
184
+ version_requirements: !ruby/object:Gem::Version::Requirement
185
+ requirements:
186
+ - - ">"
187
+ - !ruby/object:Gem::Version
188
+ version: 0.0.0
189
+ version: