resque_ui 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. data/Gemfile +6 -0
  2. data/Gemfile.lock +102 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +21 -0
  5. data/README.markdown +279 -0
  6. data/Rakefile +49 -0
  7. data/VERSION.yml +5 -0
  8. data/app/assets/images/idle.png +0 -0
  9. data/app/assets/images/poll.png +0 -0
  10. data/app/assets/images/working.png +0 -0
  11. data/app/assets/javascripts/resque/jquery-1.3.2.min.js +19 -0
  12. data/app/assets/javascripts/resque/jquery.relatize_date.js +95 -0
  13. data/app/assets/javascripts/resque/ranger.js +24 -0
  14. data/app/assets/stylesheets/resque/resque.css +93 -0
  15. data/app/assets/stylesheets/resque/resque_reset.css +48 -0
  16. data/app/controllers/resque_controller.rb +236 -0
  17. data/app/helpers/resque_helper.rb +107 -0
  18. data/app/views/layouts/resque.html.erb +39 -0
  19. data/app/views/resque/_key.html.erb +17 -0
  20. data/app/views/resque/_next_more.html.erb +10 -0
  21. data/app/views/resque/_queues.html.erb +52 -0
  22. data/app/views/resque/_status_styles.erb +98 -0
  23. data/app/views/resque/_workers.html.erb +110 -0
  24. data/app/views/resque/_working.html.erb +69 -0
  25. data/app/views/resque/delayed.html.erb +35 -0
  26. data/app/views/resque/delayed_timestamp.html.erb +26 -0
  27. data/app/views/resque/error.erb +1 -0
  28. data/app/views/resque/failed.html.erb +54 -0
  29. data/app/views/resque/overview.html.erb +4 -0
  30. data/app/views/resque/schedule.html.erb +96 -0
  31. data/app/views/resque/stats.html.erb +62 -0
  32. data/app/views/resque/status.html.erb +57 -0
  33. data/app/views/resque/statuses.html.erb +72 -0
  34. data/app/views/resque/workers.html.erb +1 -0
  35. data/lib/resque_ui/cap.rb +6 -0
  36. data/lib/resque_ui/cap_recipes.rb +106 -0
  37. data/lib/resque_ui/overrides/resque/failure/failure.rb +22 -0
  38. data/lib/resque_ui/overrides/resque/job.rb +12 -0
  39. data/lib/resque_ui/overrides/resque/resque.rb +8 -0
  40. data/lib/resque_ui/overrides/resque/worker.rb +230 -0
  41. data/lib/resque_ui/overrides/resque_scheduler/resque_scheduler.rb +58 -0
  42. data/lib/resque_ui/overrides/resque_status/chained_job_with_status.rb +24 -0
  43. data/lib/resque_ui/overrides/resque_status/job_with_status.rb +59 -0
  44. data/lib/resque_ui/overrides/resque_status/status.rb +53 -0
  45. data/lib/resque_ui.rb +26 -0
  46. data/lib/tasks/failure.rake +8 -0
  47. data/lib/tasks/scheduler.rake +11 -0
  48. data/lib/tasks/worker.rake +80 -0
  49. data/rdoc/Resque/ChainedJobWithStatus.html +284 -0
  50. data/rdoc/Resque/Failure/Base.html +229 -0
  51. data/rdoc/Resque/Failure.html +202 -0
  52. data/rdoc/Resque/Job.html +202 -0
  53. data/rdoc/Resque/JobWithStatus.html +410 -0
  54. data/rdoc/Resque/Status.html +368 -0
  55. data/rdoc/Resque/Worker.html +1104 -0
  56. data/rdoc/Resque.html +232 -0
  57. data/rdoc/ResqueScheduler.html +434 -0
  58. data/rdoc/ResqueUi/Cap.html +150 -0
  59. data/rdoc/ResqueUi/Engine.html +150 -0
  60. data/rdoc/ResqueUi.html +157 -0
  61. data/rdoc/created.rid +13 -0
  62. data/rdoc/images/brick.png +0 -0
  63. data/rdoc/images/brick_link.png +0 -0
  64. data/rdoc/images/bug.png +0 -0
  65. data/rdoc/images/bullet_black.png +0 -0
  66. data/rdoc/images/bullet_toggle_minus.png +0 -0
  67. data/rdoc/images/bullet_toggle_plus.png +0 -0
  68. data/rdoc/images/date.png +0 -0
  69. data/rdoc/images/find.png +0 -0
  70. data/rdoc/images/loadingAnimation.gif +0 -0
  71. data/rdoc/images/macFFBgHack.png +0 -0
  72. data/rdoc/images/package.png +0 -0
  73. data/rdoc/images/page_green.png +0 -0
  74. data/rdoc/images/page_white_text.png +0 -0
  75. data/rdoc/images/page_white_width.png +0 -0
  76. data/rdoc/images/plugin.png +0 -0
  77. data/rdoc/images/ruby.png +0 -0
  78. data/rdoc/images/tag_green.png +0 -0
  79. data/rdoc/images/wrench.png +0 -0
  80. data/rdoc/images/wrench_orange.png +0 -0
  81. data/rdoc/images/zoom.png +0 -0
  82. data/rdoc/index.html +163 -0
  83. data/rdoc/js/darkfish.js +116 -0
  84. data/rdoc/js/jquery.js +32 -0
  85. data/rdoc/js/quicksearch.js +114 -0
  86. data/rdoc/js/thickbox-compressed.js +10 -0
  87. data/rdoc/lib/resque_overrides_rb.html +54 -0
  88. data/rdoc/lib/resque_scheduler_overrides_rb.html +52 -0
  89. data/rdoc/lib/resque_status_overrides_rb.html +52 -0
  90. data/rdoc/lib/resque_ui/cap_rb.html +52 -0
  91. data/rdoc/lib/resque_ui/cap_recipes_rb.html +58 -0
  92. data/rdoc/lib/resque_ui/engine_rb.html +52 -0
  93. data/rdoc/lib/resque_ui/overrides/resque/failure/failure_rb.html +54 -0
  94. data/rdoc/lib/resque_ui/overrides/resque/job_rb.html +52 -0
  95. data/rdoc/lib/resque_ui/overrides/resque/resque_rb.html +52 -0
  96. data/rdoc/lib/resque_ui/overrides/resque/worker_rb.html +54 -0
  97. data/rdoc/lib/resque_ui/overrides/resque_scheduler/resque_scheduler_rb.html +52 -0
  98. data/rdoc/lib/resque_ui/overrides/resque_status/chained_job_with_status_rb.html +52 -0
  99. data/rdoc/lib/resque_ui/overrides/resque_status/job_with_status_rb.html +52 -0
  100. data/rdoc/lib/resque_ui/overrides/resque_status/status_rb.html +52 -0
  101. data/rdoc/lib/resque_ui/resque_ui_rb.html +52 -0
  102. data/rdoc/lib/resque_ui/tasks_rb.html +64 -0
  103. data/rdoc/lib/resque_ui_rb.html +76 -0
  104. data/rdoc/rdoc.css +763 -0
  105. data/resque_ui.gemspec +153 -0
  106. data/test/resque_ui_test.rb +8 -0
  107. data/test/test_helper.rb +3 -0
  108. metadata +205 -0
data/resque_ui.gemspec ADDED
@@ -0,0 +1,153 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{resque_ui}
8
+ s.version = "3.0.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Kevin Tyll"]
12
+ s.date = %q{2011-09-16}
13
+ s.description = %q{A Rails UI for Resque for managing workers, failures and schedules.}
14
+ s.email = %q{kevintyll@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "README.markdown"
17
+ ]
18
+ s.files = [
19
+ "Gemfile",
20
+ "Gemfile.lock",
21
+ "History.txt",
22
+ "MIT-LICENSE",
23
+ "README.markdown",
24
+ "Rakefile",
25
+ "VERSION.yml",
26
+ "app/assets/images/idle.png",
27
+ "app/assets/images/poll.png",
28
+ "app/assets/images/working.png",
29
+ "app/assets/javascripts/resque/jquery-1.3.2.min.js",
30
+ "app/assets/javascripts/resque/jquery.relatize_date.js",
31
+ "app/assets/javascripts/resque/ranger.js",
32
+ "app/assets/stylesheets/resque/resque.css",
33
+ "app/assets/stylesheets/resque/resque_reset.css",
34
+ "app/controllers/resque_controller.rb",
35
+ "app/helpers/resque_helper.rb",
36
+ "app/views/layouts/resque.html.erb",
37
+ "app/views/resque/_key.html.erb",
38
+ "app/views/resque/_next_more.html.erb",
39
+ "app/views/resque/_queues.html.erb",
40
+ "app/views/resque/_status_styles.erb",
41
+ "app/views/resque/_workers.html.erb",
42
+ "app/views/resque/_working.html.erb",
43
+ "app/views/resque/delayed.html.erb",
44
+ "app/views/resque/delayed_timestamp.html.erb",
45
+ "app/views/resque/error.erb",
46
+ "app/views/resque/failed.html.erb",
47
+ "app/views/resque/overview.html.erb",
48
+ "app/views/resque/schedule.html.erb",
49
+ "app/views/resque/stats.html.erb",
50
+ "app/views/resque/status.html.erb",
51
+ "app/views/resque/statuses.html.erb",
52
+ "app/views/resque/workers.html.erb",
53
+ "lib/resque_ui.rb",
54
+ "lib/resque_ui/cap.rb",
55
+ "lib/resque_ui/cap_recipes.rb",
56
+ "lib/resque_ui/overrides/resque/failure/failure.rb",
57
+ "lib/resque_ui/overrides/resque/job.rb",
58
+ "lib/resque_ui/overrides/resque/resque.rb",
59
+ "lib/resque_ui/overrides/resque/worker.rb",
60
+ "lib/resque_ui/overrides/resque_scheduler/resque_scheduler.rb",
61
+ "lib/resque_ui/overrides/resque_status/chained_job_with_status.rb",
62
+ "lib/resque_ui/overrides/resque_status/job_with_status.rb",
63
+ "lib/resque_ui/overrides/resque_status/status.rb",
64
+ "lib/tasks/failure.rake",
65
+ "lib/tasks/scheduler.rake",
66
+ "lib/tasks/worker.rake",
67
+ "rdoc/Resque.html",
68
+ "rdoc/Resque/ChainedJobWithStatus.html",
69
+ "rdoc/Resque/Failure.html",
70
+ "rdoc/Resque/Failure/Base.html",
71
+ "rdoc/Resque/Job.html",
72
+ "rdoc/Resque/JobWithStatus.html",
73
+ "rdoc/Resque/Status.html",
74
+ "rdoc/Resque/Worker.html",
75
+ "rdoc/ResqueScheduler.html",
76
+ "rdoc/ResqueUi.html",
77
+ "rdoc/ResqueUi/Cap.html",
78
+ "rdoc/ResqueUi/Engine.html",
79
+ "rdoc/created.rid",
80
+ "rdoc/images/brick.png",
81
+ "rdoc/images/brick_link.png",
82
+ "rdoc/images/bug.png",
83
+ "rdoc/images/bullet_black.png",
84
+ "rdoc/images/bullet_toggle_minus.png",
85
+ "rdoc/images/bullet_toggle_plus.png",
86
+ "rdoc/images/date.png",
87
+ "rdoc/images/find.png",
88
+ "rdoc/images/loadingAnimation.gif",
89
+ "rdoc/images/macFFBgHack.png",
90
+ "rdoc/images/package.png",
91
+ "rdoc/images/page_green.png",
92
+ "rdoc/images/page_white_text.png",
93
+ "rdoc/images/page_white_width.png",
94
+ "rdoc/images/plugin.png",
95
+ "rdoc/images/ruby.png",
96
+ "rdoc/images/tag_green.png",
97
+ "rdoc/images/wrench.png",
98
+ "rdoc/images/wrench_orange.png",
99
+ "rdoc/images/zoom.png",
100
+ "rdoc/index.html",
101
+ "rdoc/js/darkfish.js",
102
+ "rdoc/js/jquery.js",
103
+ "rdoc/js/quicksearch.js",
104
+ "rdoc/js/thickbox-compressed.js",
105
+ "rdoc/lib/resque_overrides_rb.html",
106
+ "rdoc/lib/resque_scheduler_overrides_rb.html",
107
+ "rdoc/lib/resque_status_overrides_rb.html",
108
+ "rdoc/lib/resque_ui/cap_rb.html",
109
+ "rdoc/lib/resque_ui/cap_recipes_rb.html",
110
+ "rdoc/lib/resque_ui/engine_rb.html",
111
+ "rdoc/lib/resque_ui/overrides/resque/failure/failure_rb.html",
112
+ "rdoc/lib/resque_ui/overrides/resque/job_rb.html",
113
+ "rdoc/lib/resque_ui/overrides/resque/resque_rb.html",
114
+ "rdoc/lib/resque_ui/overrides/resque/worker_rb.html",
115
+ "rdoc/lib/resque_ui/overrides/resque_scheduler/resque_scheduler_rb.html",
116
+ "rdoc/lib/resque_ui/overrides/resque_status/chained_job_with_status_rb.html",
117
+ "rdoc/lib/resque_ui/overrides/resque_status/job_with_status_rb.html",
118
+ "rdoc/lib/resque_ui/overrides/resque_status/status_rb.html",
119
+ "rdoc/lib/resque_ui/resque_ui_rb.html",
120
+ "rdoc/lib/resque_ui/tasks_rb.html",
121
+ "rdoc/lib/resque_ui_rb.html",
122
+ "rdoc/rdoc.css",
123
+ "resque_ui.gemspec",
124
+ "test/resque_ui_test.rb",
125
+ "test/test_helper.rb"
126
+ ]
127
+ s.homepage = %q{http://kevintyll.git.com/resque_ui}
128
+ s.require_paths = ["lib"]
129
+ s.rubygems_version = %q{1.5.1}
130
+ s.summary = %q{A Rails engine port of the Sinatra app that is included in Chris Wanstrath's resque gem.}
131
+
132
+ if s.respond_to? :specification_version then
133
+ s.specification_version = 3
134
+
135
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
136
+ s.add_runtime_dependency(%q<rails>, [">= 3.0.0"])
137
+ s.add_runtime_dependency(%q<redis>, [">= 2.1.3"])
138
+ s.add_runtime_dependency(%q<resque>, [">= 1.5"])
139
+ s.add_runtime_dependency(%q<resque-status>, [">= 0.2.2"])
140
+ else
141
+ s.add_dependency(%q<rails>, [">= 3.0.0"])
142
+ s.add_dependency(%q<redis>, [">= 2.1.3"])
143
+ s.add_dependency(%q<resque>, [">= 1.5"])
144
+ s.add_dependency(%q<resque-status>, [">= 0.2.2"])
145
+ end
146
+ else
147
+ s.add_dependency(%q<rails>, [">= 3.0.0"])
148
+ s.add_dependency(%q<redis>, [">= 2.1.3"])
149
+ s.add_dependency(%q<resque>, [">= 1.5"])
150
+ s.add_dependency(%q<resque-status>, [">= 0.2.2"])
151
+ end
152
+ end
153
+
@@ -0,0 +1,8 @@
1
+ require 'test_helper'
2
+
3
+ class ResqueUiTest < ActiveSupport::TestCase
4
+ # Replace this with your real tests.
5
+ test "the truth" do
6
+ assert true
7
+ end
8
+ end
@@ -0,0 +1,3 @@
1
+ require 'rubygems'
2
+ require 'active_support'
3
+ require 'active_support/test_case'
metadata ADDED
@@ -0,0 +1,205 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resque_ui
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 3.0.0
6
+ platform: ruby
7
+ authors:
8
+ - Kevin Tyll
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+
13
+ date: 2011-09-16 00:00:00 -04:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: rails
18
+ version_requirements: &id001 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 3.0.0
24
+ requirement: *id001
25
+ prerelease: false
26
+ type: :runtime
27
+ - !ruby/object:Gem::Dependency
28
+ name: redis
29
+ version_requirements: &id002 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 2.1.3
35
+ requirement: *id002
36
+ prerelease: false
37
+ type: :runtime
38
+ - !ruby/object:Gem::Dependency
39
+ name: resque
40
+ version_requirements: &id003 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: "1.5"
46
+ requirement: *id003
47
+ prerelease: false
48
+ type: :runtime
49
+ - !ruby/object:Gem::Dependency
50
+ name: resque-status
51
+ version_requirements: &id004 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: 0.2.2
57
+ requirement: *id004
58
+ prerelease: false
59
+ type: :runtime
60
+ description: A Rails UI for Resque for managing workers, failures and schedules.
61
+ email: kevintyll@gmail.com
62
+ executables: []
63
+
64
+ extensions: []
65
+
66
+ extra_rdoc_files:
67
+ - README.markdown
68
+ files:
69
+ - Gemfile
70
+ - Gemfile.lock
71
+ - History.txt
72
+ - MIT-LICENSE
73
+ - README.markdown
74
+ - Rakefile
75
+ - VERSION.yml
76
+ - app/assets/images/idle.png
77
+ - app/assets/images/poll.png
78
+ - app/assets/images/working.png
79
+ - app/assets/javascripts/resque/jquery-1.3.2.min.js
80
+ - app/assets/javascripts/resque/jquery.relatize_date.js
81
+ - app/assets/javascripts/resque/ranger.js
82
+ - app/assets/stylesheets/resque/resque.css
83
+ - app/assets/stylesheets/resque/resque_reset.css
84
+ - app/controllers/resque_controller.rb
85
+ - app/helpers/resque_helper.rb
86
+ - app/views/layouts/resque.html.erb
87
+ - app/views/resque/_key.html.erb
88
+ - app/views/resque/_next_more.html.erb
89
+ - app/views/resque/_queues.html.erb
90
+ - app/views/resque/_status_styles.erb
91
+ - app/views/resque/_workers.html.erb
92
+ - app/views/resque/_working.html.erb
93
+ - app/views/resque/delayed.html.erb
94
+ - app/views/resque/delayed_timestamp.html.erb
95
+ - app/views/resque/error.erb
96
+ - app/views/resque/failed.html.erb
97
+ - app/views/resque/overview.html.erb
98
+ - app/views/resque/schedule.html.erb
99
+ - app/views/resque/stats.html.erb
100
+ - app/views/resque/status.html.erb
101
+ - app/views/resque/statuses.html.erb
102
+ - app/views/resque/workers.html.erb
103
+ - lib/resque_ui.rb
104
+ - lib/resque_ui/cap.rb
105
+ - lib/resque_ui/cap_recipes.rb
106
+ - lib/resque_ui/overrides/resque/failure/failure.rb
107
+ - lib/resque_ui/overrides/resque/job.rb
108
+ - lib/resque_ui/overrides/resque/resque.rb
109
+ - lib/resque_ui/overrides/resque/worker.rb
110
+ - lib/resque_ui/overrides/resque_scheduler/resque_scheduler.rb
111
+ - lib/resque_ui/overrides/resque_status/chained_job_with_status.rb
112
+ - lib/resque_ui/overrides/resque_status/job_with_status.rb
113
+ - lib/resque_ui/overrides/resque_status/status.rb
114
+ - lib/tasks/failure.rake
115
+ - lib/tasks/scheduler.rake
116
+ - lib/tasks/worker.rake
117
+ - rdoc/Resque.html
118
+ - rdoc/Resque/ChainedJobWithStatus.html
119
+ - rdoc/Resque/Failure.html
120
+ - rdoc/Resque/Failure/Base.html
121
+ - rdoc/Resque/Job.html
122
+ - rdoc/Resque/JobWithStatus.html
123
+ - rdoc/Resque/Status.html
124
+ - rdoc/Resque/Worker.html
125
+ - rdoc/ResqueScheduler.html
126
+ - rdoc/ResqueUi.html
127
+ - rdoc/ResqueUi/Cap.html
128
+ - rdoc/ResqueUi/Engine.html
129
+ - rdoc/created.rid
130
+ - rdoc/images/brick.png
131
+ - rdoc/images/brick_link.png
132
+ - rdoc/images/bug.png
133
+ - rdoc/images/bullet_black.png
134
+ - rdoc/images/bullet_toggle_minus.png
135
+ - rdoc/images/bullet_toggle_plus.png
136
+ - rdoc/images/date.png
137
+ - rdoc/images/find.png
138
+ - rdoc/images/loadingAnimation.gif
139
+ - rdoc/images/macFFBgHack.png
140
+ - rdoc/images/package.png
141
+ - rdoc/images/page_green.png
142
+ - rdoc/images/page_white_text.png
143
+ - rdoc/images/page_white_width.png
144
+ - rdoc/images/plugin.png
145
+ - rdoc/images/ruby.png
146
+ - rdoc/images/tag_green.png
147
+ - rdoc/images/wrench.png
148
+ - rdoc/images/wrench_orange.png
149
+ - rdoc/images/zoom.png
150
+ - rdoc/index.html
151
+ - rdoc/js/darkfish.js
152
+ - rdoc/js/jquery.js
153
+ - rdoc/js/quicksearch.js
154
+ - rdoc/js/thickbox-compressed.js
155
+ - rdoc/lib/resque_overrides_rb.html
156
+ - rdoc/lib/resque_scheduler_overrides_rb.html
157
+ - rdoc/lib/resque_status_overrides_rb.html
158
+ - rdoc/lib/resque_ui/cap_rb.html
159
+ - rdoc/lib/resque_ui/cap_recipes_rb.html
160
+ - rdoc/lib/resque_ui/engine_rb.html
161
+ - rdoc/lib/resque_ui/overrides/resque/failure/failure_rb.html
162
+ - rdoc/lib/resque_ui/overrides/resque/job_rb.html
163
+ - rdoc/lib/resque_ui/overrides/resque/resque_rb.html
164
+ - rdoc/lib/resque_ui/overrides/resque/worker_rb.html
165
+ - rdoc/lib/resque_ui/overrides/resque_scheduler/resque_scheduler_rb.html
166
+ - rdoc/lib/resque_ui/overrides/resque_status/chained_job_with_status_rb.html
167
+ - rdoc/lib/resque_ui/overrides/resque_status/job_with_status_rb.html
168
+ - rdoc/lib/resque_ui/overrides/resque_status/status_rb.html
169
+ - rdoc/lib/resque_ui/resque_ui_rb.html
170
+ - rdoc/lib/resque_ui/tasks_rb.html
171
+ - rdoc/lib/resque_ui_rb.html
172
+ - rdoc/rdoc.css
173
+ - resque_ui.gemspec
174
+ - test/resque_ui_test.rb
175
+ - test/test_helper.rb
176
+ has_rdoc: true
177
+ homepage: http://kevintyll.git.com/resque_ui
178
+ licenses: []
179
+
180
+ post_install_message:
181
+ rdoc_options: []
182
+
183
+ require_paths:
184
+ - lib
185
+ required_ruby_version: !ruby/object:Gem::Requirement
186
+ none: false
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: "0"
191
+ required_rubygems_version: !ruby/object:Gem::Requirement
192
+ none: false
193
+ requirements:
194
+ - - ">="
195
+ - !ruby/object:Gem::Version
196
+ version: "0"
197
+ requirements: []
198
+
199
+ rubyforge_project:
200
+ rubygems_version: 1.5.1
201
+ signing_key:
202
+ specification_version: 3
203
+ summary: A Rails engine port of the Sinatra app that is included in Chris Wanstrath's resque gem.
204
+ test_files: []
205
+