pgq_web 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 (117) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +29 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/images/glyphicons-halflings-white.png +0 -0
  5. data/app/assets/images/glyphicons-halflings.png +0 -0
  6. data/app/assets/javascripts/bootstrap.min.js +6 -0
  7. data/app/assets/javascripts/pgq_web/application.js +16 -0
  8. data/app/assets/stylesheets/pgq_web/application.css +16 -0
  9. data/app/assets/stylesheets/pgq_web/bootstrap-responsive.min.css +9 -0
  10. data/app/assets/stylesheets/pgq_web/bootstrap.min.css +9 -0
  11. data/app/controllers/pgq_web/application_controller.rb +4 -0
  12. data/app/controllers/pgq_web/pgq_controller.rb +186 -0
  13. data/app/helpers/pgq_web/application_helper.rb +4 -0
  14. data/app/helpers/pgq_web/pgq_helper.rb +22 -0
  15. data/app/models/pgq_web/watcher.rb +4 -0
  16. data/app/views/layouts/pgq_web/application.html.erb +14 -0
  17. data/app/views/layouts/pgq_web/pgq.html.erb +18 -0
  18. data/app/views/pgq_web/pgq/_error.haml +21 -0
  19. data/app/views/pgq_web/pgq/_menu.haml +15 -0
  20. data/app/views/pgq_web/pgq/_pags.haml +3 -0
  21. data/app/views/pgq_web/pgq/_pending_events_res.haml +4 -0
  22. data/app/views/pgq_web/pgq/delete.js.erb +1 -0
  23. data/app/views/pgq_web/pgq/errors.haml +21 -0
  24. data/app/views/pgq_web/pgq/errors_list.haml +13 -0
  25. data/app/views/pgq_web/pgq/index.haml +22 -0
  26. data/app/views/pgq_web/pgq/pending_events_count.js.erb +1 -0
  27. data/app/views/pgq_web/pgq/pending_list.haml +20 -0
  28. data/app/views/pgq_web/pgq/retry.js.erb +1 -0
  29. data/config/initializers/databases.rb +8 -0
  30. data/config/initializers/will_paginate_init.rb +32 -0
  31. data/config/routes.rb +4 -0
  32. data/lib/pgq_web/engine.rb +5 -0
  33. data/lib/pgq_web/version.rb +3 -0
  34. data/lib/pgq_web.rb +4 -0
  35. data/lib/tasks/pgq_web_tasks.rake +4 -0
  36. data/test/dummy/README.rdoc +261 -0
  37. data/test/dummy/Rakefile +7 -0
  38. data/test/dummy/app/assets/javascripts/application.js +15 -0
  39. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  40. data/test/dummy/app/controllers/application_controller.rb +3 -0
  41. data/test/dummy/app/helpers/application_helper.rb +2 -0
  42. data/test/dummy/app/models/base2.rb +4 -0
  43. data/test/dummy/app/models/pgq/pgq_cleanup.rb +10 -0
  44. data/test/dummy/app/models/pgq/pgq_history.rb +10 -0
  45. data/test/dummy/app/models/pgq/pgq_issues.rb +11 -0
  46. data/test/dummy/app/models/pgq/pgq_pack_files.rb +10 -0
  47. data/test/dummy/app/models/pgq/pgq_places.rb +10 -0
  48. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  49. data/test/dummy/config/application.rb +56 -0
  50. data/test/dummy/config/boot.rb +10 -0
  51. data/test/dummy/config/database.yml +23 -0
  52. data/test/dummy/config/environment.rb +5 -0
  53. data/test/dummy/config/environments/development.rb +37 -0
  54. data/test/dummy/config/environments/production.rb +67 -0
  55. data/test/dummy/config/environments/test.rb +37 -0
  56. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  57. data/test/dummy/config/initializers/inflections.rb +15 -0
  58. data/test/dummy/config/initializers/mime_types.rb +5 -0
  59. data/test/dummy/config/initializers/pgq_configs.rb +6 -0
  60. data/test/dummy/config/initializers/pgq_web_configs.rb +2 -0
  61. data/test/dummy/config/initializers/secret_token.rb +7 -0
  62. data/test/dummy/config/initializers/session_store.rb +8 -0
  63. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  64. data/test/dummy/config/locales/en.yml +5 -0
  65. data/test/dummy/config/pgq_development.ini +12 -0
  66. data/test/dummy/config/pgq_development2.ini +12 -0
  67. data/test/dummy/config/queues_list.yml +6 -0
  68. data/test/dummy/config/routes.rb +3 -0
  69. data/test/dummy/config.ru +4 -0
  70. data/test/dummy/db/migrate/20120526095837_create_pack_files_queue.rb +9 -0
  71. data/test/dummy/db/migrate/20120526095903_create_issues_queue.rb +9 -0
  72. data/test/dummy/db/migrate/20120526095928_create_history_queue.rb +9 -0
  73. data/test/dummy/db/migrate/20120526095941_create_cleanup_queue.rb +9 -0
  74. data/test/dummy/db/migrate/20120526095951_create_londiste_queue.rb +9 -0
  75. data/test/dummy/db/migrate/20120526101453_create_places_queue.rb +9 -0
  76. data/test/dummy/db/schema.rb +16 -0
  77. data/test/dummy/log/development.log +16800 -0
  78. data/test/dummy/log/pgq_issues,cleanup.log +1 -0
  79. data/test/dummy/log/pgq_places,cleanup.log +1 -0
  80. data/test/dummy/log/pgq_places,issues.log +7596 -0
  81. data/test/dummy/log/pgqadm_development.log +33 -0
  82. data/test/dummy/log/pgqadm_development2.log +18 -0
  83. data/test/dummy/public/404.html +26 -0
  84. data/test/dummy/public/422.html +26 -0
  85. data/test/dummy/public/500.html +25 -0
  86. data/test/dummy/public/favicon.ico +0 -0
  87. data/test/dummy/script/rails +6 -0
  88. data/test/dummy/spec/models/pgq/pgq_cleanup_spec.rb +8 -0
  89. data/test/dummy/spec/models/pgq/pgq_history_spec.rb +8 -0
  90. data/test/dummy/spec/models/pgq/pgq_issues_spec.rb +8 -0
  91. data/test/dummy/spec/models/pgq/pgq_londiste_spec.rb +8 -0
  92. data/test/dummy/spec/models/pgq/pgq_pack_files_spec.rb +8 -0
  93. data/test/dummy/spec/models/pgq/pgq_places_spec.rb +8 -0
  94. data/test/dummy/tmp/cache/assets/C54/E90/sprockets%2F63fc13315fc6094795932885c00a47f0 +0 -0
  95. data/test/dummy/tmp/cache/assets/C95/1A0/sprockets%2F0d1713ba9492a53952c0b502f420e02f +0 -0
  96. data/test/dummy/tmp/cache/assets/CA2/F20/sprockets%2Ff13754a4804d90a140215fa2e93b764c +0 -0
  97. data/test/dummy/tmp/cache/assets/CB3/2E0/sprockets%2Fcd388695c120aa9281b12659a238e8a8 +0 -0
  98. data/test/dummy/tmp/cache/assets/CC1/F30/sprockets%2Ff86c32e64381a7631af9079b259dc892 +0 -0
  99. data/test/dummy/tmp/cache/assets/CC2/650/sprockets%2F91458fa64c93ba68469353808d0f8cf1 +0 -0
  100. data/test/dummy/tmp/cache/assets/CDC/D60/sprockets%2F68d28c37c45823d428c334fde92c0b00 +0 -0
  101. data/test/dummy/tmp/cache/assets/D40/DB0/sprockets%2F9a36c3c6b93af595c47b1b4d4f02a576 +0 -0
  102. data/test/dummy/tmp/cache/assets/D58/820/sprockets%2F182d963d2083b09e77ffee56f6fe17d8 +0 -0
  103. data/test/dummy/tmp/cache/assets/D5E/200/sprockets%2Faddfb303b307179f50949a9dac5c1b00 +0 -0
  104. data/test/dummy/tmp/cache/assets/D64/380/sprockets%2Fbd2003fa80f2c539b2d195e64108eecf +0 -0
  105. data/test/dummy/tmp/cache/assets/D65/500/sprockets%2F5aff89b97768a5fa63596da7b7749bd6 +0 -0
  106. data/test/dummy/tmp/cache/assets/D79/410/sprockets%2Fcf8d367988a69f26b3fa20f8f3dc1c01 +0 -0
  107. data/test/dummy/tmp/cache/assets/D7B/760/sprockets%2F67db05a77e3337a5d9e26bd79a7fbc37 +0 -0
  108. data/test/dummy/tmp/cache/assets/D94/C90/sprockets%2Fc6d28dc98f2a28e2b0c49cb34320bcb5 +0 -0
  109. data/test/dummy/tmp/cache/assets/DB3/600/sprockets%2F19d09ea3cfc62ad34a00a2c285ccb2a6 +0 -0
  110. data/test/dummy/tmp/cache/assets/DCA/8C0/sprockets%2Ff10ccfec59bb5d112d0e5eb96b2e4748 +0 -0
  111. data/test/dummy/tmp/cache/assets/E2B/BD0/sprockets%2F4a4f94d3220ffaf6eaea86f1aa79bd5a +0 -0
  112. data/test/dummy/tmp/pgqadm_development.pid +1 -0
  113. data/test/dummy/tmp/pgqadm_development2.pid +1 -0
  114. data/test/integration/navigation_test.rb +10 -0
  115. data/test/pgq_web_test.rb +7 -0
  116. data/test/test_helper.rb +15 -0
  117. metadata +349 -0
@@ -0,0 +1,33 @@
1
+ 2012-05-26 04:06:18,152 27008 INFO plpgsql is installed
2
+ 2012-05-26 04:06:18,184 27008 INFO txid_current_snapshot is installed
3
+ 2012-05-26 04:06:18,186 27008 INFO Installing pgq
4
+ 2012-05-26 04:06:18,197 27008 INFO Reading from /usr/share/skytools/pgq.sql
5
+ 2012-05-26 04:07:32,314 27203 INFO plpgsql is installed
6
+ 2012-05-26 04:07:32,324 27203 INFO txid_current_snapshot is installed
7
+ 2012-05-26 04:07:32,327 27203 INFO pgq is installed
8
+ 2012-05-26 13:57:35,595 11945 INFO plpgsql is installed
9
+ 2012-05-26 13:57:35,687 11945 INFO txid_current_snapshot is installed
10
+ 2012-05-26 13:57:35,689 11945 INFO Installing pgq
11
+ 2012-05-26 13:57:35,701 11945 INFO Reading from /usr/share/skytools/pgq.sql
12
+ 2012-05-26 13:57:40,035 11958 INFO plpgsql is installed
13
+ 2012-05-26 13:57:40,091 11958 INFO txid_current_snapshot is installed
14
+ 2012-05-26 13:57:40,092 11958 INFO Installing pgq
15
+ 2012-05-26 13:57:40,093 11958 INFO Reading from /usr/share/skytools/pgq.sql
16
+ 2012-05-26 14:34:58,538 17254 INFO {ticks: 4}
17
+ 2012-05-26 14:34:58,987 17254 INFO {maint_duration: 0.567968845367}
18
+ 2012-05-26 14:39:58,528 17254 INFO {ticks: 36}
19
+ 2012-05-26 14:44:58,515 17254 INFO {ticks: 20}
20
+ 2012-05-26 14:44:59,860 17254 INFO {maint_duration: 0.359900951385}
21
+ 2012-05-26 14:49:58,612 17254 INFO {ticks: 20}
22
+ 2012-05-26 14:55:04,321 17254 INFO {maint_duration: 3.92647099495}
23
+ 2012-05-26 14:55:05,877 17254 INFO {ticks: 20}
24
+ 2012-05-26 15:00:05,315 17254 INFO {ticks: 20}
25
+ 2012-05-26 15:05:05,340 17254 INFO {ticks: 20}
26
+ 2012-05-26 15:05:06,093 17254 INFO {maint_duration: 0.887465953827}
27
+ 2012-05-26 15:10:05,364 17254 INFO {ticks: 20}
28
+ 2012-05-26 15:15:05,807 17254 INFO {ticks: 20}
29
+ 2012-05-26 15:15:06,595 17254 INFO {maint_duration: 0.0429821014404}
30
+ 2012-05-26 15:20:05,909 17254 INFO {ticks: 20}
31
+ 2012-05-26 15:25:06,002 17254 INFO {ticks: 20}
32
+ 2012-05-26 15:25:07,386 17254 INFO {maint_duration: 0.308872938156}
33
+ 2012-05-26 15:30:06,071 17254 INFO {ticks: 20}
@@ -0,0 +1,18 @@
1
+ 2012-05-26 14:35:18,096 17311 INFO {ticks: 2}
2
+ 2012-05-26 14:35:18,391 17311 INFO {maint_duration: 0.366436958313}
3
+ 2012-05-26 14:40:18,117 17311 INFO {ticks: 26}
4
+ 2012-05-26 14:45:18,125 17311 INFO {ticks: 10}
5
+ 2012-05-26 14:45:18,987 17311 INFO {maint_duration: 0.116330862045}
6
+ 2012-05-26 14:50:18,150 17311 INFO {ticks: 44}
7
+ 2012-05-26 14:55:20,232 17311 INFO {ticks: 10}
8
+ 2012-05-26 14:55:20,941 17311 INFO {maint_duration: 1.49231600761}
9
+ 2012-05-26 15:00:20,266 17311 INFO {ticks: 10}
10
+ 2012-05-26 15:05:20,279 17311 INFO {ticks: 10}
11
+ 2012-05-26 15:05:21,767 17311 INFO {maint_duration: 0.372862100601}
12
+ 2012-05-26 15:10:20,328 17311 INFO {ticks: 10}
13
+ 2012-05-26 15:15:20,687 17311 INFO {ticks: 10}
14
+ 2012-05-26 15:15:22,238 17311 INFO {maint_duration: 0.0368390083313}
15
+ 2012-05-26 15:20:20,747 17311 INFO {ticks: 10}
16
+ 2012-05-26 15:25:20,755 17311 INFO {ticks: 10}
17
+ 2012-05-26 15:25:22,765 17311 INFO {maint_duration: 0.0678219795227}
18
+ 2012-05-26 15:30:20,801 17311 INFO {ticks: 10}
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,8 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe PgqCleanup do
4
+ before(:each) do
5
+ @consumer = PgqCleanup.new
6
+ end
7
+
8
+ end
@@ -0,0 +1,8 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe PgqHistory do
4
+ before(:each) do
5
+ @consumer = PgqHistory.new
6
+ end
7
+
8
+ end
@@ -0,0 +1,8 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe PgqIssue do
4
+ before(:each) do
5
+ @consumer = PgqIssue.new
6
+ end
7
+
8
+ end
@@ -0,0 +1,8 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe PgqLondiste do
4
+ before(:each) do
5
+ @consumer = PgqLondiste.new
6
+ end
7
+
8
+ end
@@ -0,0 +1,8 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe PgqPackFile do
4
+ before(:each) do
5
+ @consumer = PgqPackFile.new
6
+ end
7
+
8
+ end
@@ -0,0 +1,8 @@
1
+ require File.dirname(__FILE__) + '/../../spec_helper'
2
+
3
+ describe PgqPlaces do
4
+ before(:each) do
5
+ @consumer = PgqPlaces.new
6
+ end
7
+
8
+ end
@@ -0,0 +1 @@
1
+ 17254
@@ -0,0 +1 @@
1
+ 17311
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class NavigationTest < ActionDispatch::IntegrationTest
4
+ fixtures :all
5
+
6
+ # test "the truth" do
7
+ # assert true
8
+ # end
9
+ end
10
+
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class PgqWebTest < ActiveSupport::TestCase
4
+ test "truth" do
5
+ assert_kind_of Module, PgqWeb
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ # Configure Rails Environment
2
+ ENV["RAILS_ENV"] = "test"
3
+
4
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
5
+ require "rails/test_help"
6
+
7
+ Rails.backtrace_cleaner.remove_silencers!
8
+
9
+ # Load support files
10
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
11
+
12
+ # Load fixtures from the engine
13
+ if ActiveSupport::TestCase.method_defined?(:fixture_path=)
14
+ ActiveSupport::TestCase.fixture_path = File.expand_path("../fixtures", __FILE__)
15
+ end
metadata ADDED
@@ -0,0 +1,349 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pgq_web
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Makarchev Konstantin
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2012-05-26 00:00:00 +04:00
19
+ default_executable:
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rails
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 3
30
+ segments:
31
+ - 3
32
+ - 2
33
+ version: "3.2"
34
+ type: :runtime
35
+ version_requirements: *id001
36
+ - !ruby/object:Gem::Dependency
37
+ name: jquery-rails
38
+ prerelease: false
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ hash: 3
45
+ segments:
46
+ - 0
47
+ version: "0"
48
+ type: :runtime
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: pgq
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ hash: 31
59
+ segments:
60
+ - 0
61
+ - 1
62
+ - 2
63
+ version: 0.1.2
64
+ type: :runtime
65
+ version_requirements: *id003
66
+ - !ruby/object:Gem::Dependency
67
+ name: haml-rails
68
+ prerelease: false
69
+ requirement: &id004 !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ hash: 3
75
+ segments:
76
+ - 0
77
+ version: "0"
78
+ type: :runtime
79
+ version_requirements: *id004
80
+ - !ruby/object:Gem::Dependency
81
+ name: will_paginate
82
+ prerelease: false
83
+ requirement: &id005 !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ hash: 3
89
+ segments:
90
+ - 0
91
+ version: "0"
92
+ type: :runtime
93
+ version_requirements: *id005
94
+ - !ruby/object:Gem::Dependency
95
+ name: pg
96
+ prerelease: false
97
+ requirement: &id006 !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ">="
101
+ - !ruby/object:Gem::Version
102
+ hash: 3
103
+ segments:
104
+ - 0
105
+ version: "0"
106
+ type: :development
107
+ version_requirements: *id006
108
+ description: Web interface for pgq gem. Inspect pgq and londiste queues
109
+ email:
110
+ - kostya27@gmail.com
111
+ executables: []
112
+
113
+ extensions: []
114
+
115
+ extra_rdoc_files: []
116
+
117
+ files:
118
+ - app/models/pgq_web/watcher.rb
119
+ - app/controllers/pgq_web/pgq_controller.rb
120
+ - app/controllers/pgq_web/application_controller.rb
121
+ - app/views/pgq_web/pgq/pending_list.haml
122
+ - app/views/pgq_web/pgq/_pags.haml
123
+ - app/views/pgq_web/pgq/delete.js.erb
124
+ - app/views/pgq_web/pgq/pending_events_count.js.erb
125
+ - app/views/pgq_web/pgq/index.haml
126
+ - app/views/pgq_web/pgq/_pending_events_res.haml
127
+ - app/views/pgq_web/pgq/_menu.haml
128
+ - app/views/pgq_web/pgq/errors.haml
129
+ - app/views/pgq_web/pgq/retry.js.erb
130
+ - app/views/pgq_web/pgq/_error.haml
131
+ - app/views/pgq_web/pgq/errors_list.haml
132
+ - app/views/layouts/pgq_web/application.html.erb
133
+ - app/views/layouts/pgq_web/pgq.html.erb
134
+ - app/assets/images/glyphicons-halflings.png
135
+ - app/assets/images/glyphicons-halflings-white.png
136
+ - app/assets/javascripts/bootstrap.min.js
137
+ - app/assets/javascripts/pgq_web/application.js
138
+ - app/assets/stylesheets/pgq_web/bootstrap.min.css
139
+ - app/assets/stylesheets/pgq_web/bootstrap-responsive.min.css
140
+ - app/assets/stylesheets/pgq_web/application.css
141
+ - app/helpers/pgq_web/application_helper.rb
142
+ - app/helpers/pgq_web/pgq_helper.rb
143
+ - config/initializers/will_paginate_init.rb
144
+ - config/initializers/databases.rb
145
+ - config/routes.rb
146
+ - lib/pgq_web.rb
147
+ - lib/pgq_web/version.rb
148
+ - lib/pgq_web/engine.rb
149
+ - lib/tasks/pgq_web_tasks.rake
150
+ - MIT-LICENSE
151
+ - Rakefile
152
+ - README.md
153
+ - test/pgq_web_test.rb
154
+ - test/integration/navigation_test.rb
155
+ - test/dummy/config/database.yml
156
+ - test/dummy/config/queues_list.yml
157
+ - test/dummy/config/initializers/inflections.rb
158
+ - test/dummy/config/initializers/pgq_web_configs.rb
159
+ - test/dummy/config/initializers/wrap_parameters.rb
160
+ - test/dummy/config/initializers/backtrace_silencers.rb
161
+ - test/dummy/config/initializers/mime_types.rb
162
+ - test/dummy/config/initializers/session_store.rb
163
+ - test/dummy/config/initializers/pgq_configs.rb
164
+ - test/dummy/config/initializers/secret_token.rb
165
+ - test/dummy/config/environment.rb
166
+ - test/dummy/config/pgq_development.ini
167
+ - test/dummy/config/pgq_development2.ini
168
+ - test/dummy/config/locales/en.yml
169
+ - test/dummy/config/application.rb
170
+ - test/dummy/config/routes.rb
171
+ - test/dummy/config/boot.rb
172
+ - test/dummy/config/environments/test.rb
173
+ - test/dummy/config/environments/production.rb
174
+ - test/dummy/config/environments/development.rb
175
+ - test/dummy/README.rdoc
176
+ - test/dummy/spec/models/pgq/pgq_issues_spec.rb
177
+ - test/dummy/spec/models/pgq/pgq_history_spec.rb
178
+ - test/dummy/spec/models/pgq/pgq_pack_files_spec.rb
179
+ - test/dummy/spec/models/pgq/pgq_cleanup_spec.rb
180
+ - test/dummy/spec/models/pgq/pgq_places_spec.rb
181
+ - test/dummy/spec/models/pgq/pgq_londiste_spec.rb
182
+ - test/dummy/db/migrate/20120526101453_create_places_queue.rb
183
+ - test/dummy/db/migrate/20120526095951_create_londiste_queue.rb
184
+ - test/dummy/db/migrate/20120526095837_create_pack_files_queue.rb
185
+ - test/dummy/db/migrate/20120526095941_create_cleanup_queue.rb
186
+ - test/dummy/db/migrate/20120526095903_create_issues_queue.rb
187
+ - test/dummy/db/migrate/20120526095928_create_history_queue.rb
188
+ - test/dummy/db/schema.rb
189
+ - test/dummy/config.ru
190
+ - test/dummy/Rakefile
191
+ - test/dummy/tmp/pgqadm_development.pid
192
+ - test/dummy/tmp/cache/assets/D65/500/sprockets%2F5aff89b97768a5fa63596da7b7749bd6
193
+ - test/dummy/tmp/cache/assets/D58/820/sprockets%2F182d963d2083b09e77ffee56f6fe17d8
194
+ - test/dummy/tmp/cache/assets/CDC/D60/sprockets%2F68d28c37c45823d428c334fde92c0b00
195
+ - test/dummy/tmp/cache/assets/D79/410/sprockets%2Fcf8d367988a69f26b3fa20f8f3dc1c01
196
+ - test/dummy/tmp/cache/assets/DCA/8C0/sprockets%2Ff10ccfec59bb5d112d0e5eb96b2e4748
197
+ - test/dummy/tmp/cache/assets/E2B/BD0/sprockets%2F4a4f94d3220ffaf6eaea86f1aa79bd5a
198
+ - test/dummy/tmp/cache/assets/CC1/F30/sprockets%2Ff86c32e64381a7631af9079b259dc892
199
+ - test/dummy/tmp/cache/assets/D5E/200/sprockets%2Faddfb303b307179f50949a9dac5c1b00
200
+ - test/dummy/tmp/cache/assets/D64/380/sprockets%2Fbd2003fa80f2c539b2d195e64108eecf
201
+ - test/dummy/tmp/cache/assets/C54/E90/sprockets%2F63fc13315fc6094795932885c00a47f0
202
+ - test/dummy/tmp/cache/assets/D40/DB0/sprockets%2F9a36c3c6b93af595c47b1b4d4f02a576
203
+ - test/dummy/tmp/cache/assets/DB3/600/sprockets%2F19d09ea3cfc62ad34a00a2c285ccb2a6
204
+ - test/dummy/tmp/cache/assets/C95/1A0/sprockets%2F0d1713ba9492a53952c0b502f420e02f
205
+ - test/dummy/tmp/cache/assets/CA2/F20/sprockets%2Ff13754a4804d90a140215fa2e93b764c
206
+ - test/dummy/tmp/cache/assets/CC2/650/sprockets%2F91458fa64c93ba68469353808d0f8cf1
207
+ - test/dummy/tmp/cache/assets/CB3/2E0/sprockets%2Fcd388695c120aa9281b12659a238e8a8
208
+ - test/dummy/tmp/cache/assets/D94/C90/sprockets%2Fc6d28dc98f2a28e2b0c49cb34320bcb5
209
+ - test/dummy/tmp/cache/assets/D7B/760/sprockets%2F67db05a77e3337a5d9e26bd79a7fbc37
210
+ - test/dummy/tmp/pgqadm_development2.pid
211
+ - test/dummy/script/rails
212
+ - test/dummy/app/models/base2.rb
213
+ - test/dummy/app/models/pgq/pgq_places.rb
214
+ - test/dummy/app/models/pgq/pgq_history.rb
215
+ - test/dummy/app/models/pgq/pgq_issues.rb
216
+ - test/dummy/app/models/pgq/pgq_cleanup.rb
217
+ - test/dummy/app/models/pgq/pgq_pack_files.rb
218
+ - test/dummy/app/controllers/application_controller.rb
219
+ - test/dummy/app/views/layouts/application.html.erb
220
+ - test/dummy/app/assets/javascripts/application.js
221
+ - test/dummy/app/assets/stylesheets/application.css
222
+ - test/dummy/app/helpers/application_helper.rb
223
+ - test/dummy/log/pgq_issues,cleanup.log
224
+ - test/dummy/log/development.log
225
+ - test/dummy/log/pgqadm_development.log
226
+ - test/dummy/log/pgq_places,cleanup.log
227
+ - test/dummy/log/pgq_places,issues.log
228
+ - test/dummy/log/pgqadm_development2.log
229
+ - test/dummy/public/favicon.ico
230
+ - test/dummy/public/500.html
231
+ - test/dummy/public/404.html
232
+ - test/dummy/public/422.html
233
+ - test/test_helper.rb
234
+ has_rdoc: true
235
+ homepage: http://github.com/kostya/pgq_web
236
+ licenses: []
237
+
238
+ post_install_message:
239
+ rdoc_options: []
240
+
241
+ require_paths:
242
+ - lib
243
+ required_ruby_version: !ruby/object:Gem::Requirement
244
+ none: false
245
+ requirements:
246
+ - - ">="
247
+ - !ruby/object:Gem::Version
248
+ hash: 3
249
+ segments:
250
+ - 0
251
+ version: "0"
252
+ required_rubygems_version: !ruby/object:Gem::Requirement
253
+ none: false
254
+ requirements:
255
+ - - ">="
256
+ - !ruby/object:Gem::Version
257
+ hash: 3
258
+ segments:
259
+ - 0
260
+ version: "0"
261
+ requirements: []
262
+
263
+ rubyforge_project:
264
+ rubygems_version: 1.3.7
265
+ signing_key:
266
+ specification_version: 3
267
+ summary: Web interface for pgq gem. Inspect pgq and londiste queues
268
+ test_files:
269
+ - test/pgq_web_test.rb
270
+ - test/integration/navigation_test.rb
271
+ - test/dummy/config/database.yml
272
+ - test/dummy/config/queues_list.yml
273
+ - test/dummy/config/initializers/inflections.rb
274
+ - test/dummy/config/initializers/pgq_web_configs.rb
275
+ - test/dummy/config/initializers/wrap_parameters.rb
276
+ - test/dummy/config/initializers/backtrace_silencers.rb
277
+ - test/dummy/config/initializers/mime_types.rb
278
+ - test/dummy/config/initializers/session_store.rb
279
+ - test/dummy/config/initializers/pgq_configs.rb
280
+ - test/dummy/config/initializers/secret_token.rb
281
+ - test/dummy/config/environment.rb
282
+ - test/dummy/config/pgq_development.ini
283
+ - test/dummy/config/pgq_development2.ini
284
+ - test/dummy/config/locales/en.yml
285
+ - test/dummy/config/application.rb
286
+ - test/dummy/config/routes.rb
287
+ - test/dummy/config/boot.rb
288
+ - test/dummy/config/environments/test.rb
289
+ - test/dummy/config/environments/production.rb
290
+ - test/dummy/config/environments/development.rb
291
+ - test/dummy/README.rdoc
292
+ - test/dummy/spec/models/pgq/pgq_issues_spec.rb
293
+ - test/dummy/spec/models/pgq/pgq_history_spec.rb
294
+ - test/dummy/spec/models/pgq/pgq_pack_files_spec.rb
295
+ - test/dummy/spec/models/pgq/pgq_cleanup_spec.rb
296
+ - test/dummy/spec/models/pgq/pgq_places_spec.rb
297
+ - test/dummy/spec/models/pgq/pgq_londiste_spec.rb
298
+ - test/dummy/db/migrate/20120526101453_create_places_queue.rb
299
+ - test/dummy/db/migrate/20120526095951_create_londiste_queue.rb
300
+ - test/dummy/db/migrate/20120526095837_create_pack_files_queue.rb
301
+ - test/dummy/db/migrate/20120526095941_create_cleanup_queue.rb
302
+ - test/dummy/db/migrate/20120526095903_create_issues_queue.rb
303
+ - test/dummy/db/migrate/20120526095928_create_history_queue.rb
304
+ - test/dummy/db/schema.rb
305
+ - test/dummy/config.ru
306
+ - test/dummy/Rakefile
307
+ - test/dummy/tmp/pgqadm_development.pid
308
+ - test/dummy/tmp/cache/assets/D65/500/sprockets%2F5aff89b97768a5fa63596da7b7749bd6
309
+ - test/dummy/tmp/cache/assets/D58/820/sprockets%2F182d963d2083b09e77ffee56f6fe17d8
310
+ - test/dummy/tmp/cache/assets/CDC/D60/sprockets%2F68d28c37c45823d428c334fde92c0b00
311
+ - test/dummy/tmp/cache/assets/D79/410/sprockets%2Fcf8d367988a69f26b3fa20f8f3dc1c01
312
+ - test/dummy/tmp/cache/assets/DCA/8C0/sprockets%2Ff10ccfec59bb5d112d0e5eb96b2e4748
313
+ - test/dummy/tmp/cache/assets/E2B/BD0/sprockets%2F4a4f94d3220ffaf6eaea86f1aa79bd5a
314
+ - test/dummy/tmp/cache/assets/CC1/F30/sprockets%2Ff86c32e64381a7631af9079b259dc892
315
+ - test/dummy/tmp/cache/assets/D5E/200/sprockets%2Faddfb303b307179f50949a9dac5c1b00
316
+ - test/dummy/tmp/cache/assets/D64/380/sprockets%2Fbd2003fa80f2c539b2d195e64108eecf
317
+ - test/dummy/tmp/cache/assets/C54/E90/sprockets%2F63fc13315fc6094795932885c00a47f0
318
+ - test/dummy/tmp/cache/assets/D40/DB0/sprockets%2F9a36c3c6b93af595c47b1b4d4f02a576
319
+ - test/dummy/tmp/cache/assets/DB3/600/sprockets%2F19d09ea3cfc62ad34a00a2c285ccb2a6
320
+ - test/dummy/tmp/cache/assets/C95/1A0/sprockets%2F0d1713ba9492a53952c0b502f420e02f
321
+ - test/dummy/tmp/cache/assets/CA2/F20/sprockets%2Ff13754a4804d90a140215fa2e93b764c
322
+ - test/dummy/tmp/cache/assets/CC2/650/sprockets%2F91458fa64c93ba68469353808d0f8cf1
323
+ - test/dummy/tmp/cache/assets/CB3/2E0/sprockets%2Fcd388695c120aa9281b12659a238e8a8
324
+ - test/dummy/tmp/cache/assets/D94/C90/sprockets%2Fc6d28dc98f2a28e2b0c49cb34320bcb5
325
+ - test/dummy/tmp/cache/assets/D7B/760/sprockets%2F67db05a77e3337a5d9e26bd79a7fbc37
326
+ - test/dummy/tmp/pgqadm_development2.pid
327
+ - test/dummy/script/rails
328
+ - test/dummy/app/models/base2.rb
329
+ - test/dummy/app/models/pgq/pgq_places.rb
330
+ - test/dummy/app/models/pgq/pgq_history.rb
331
+ - test/dummy/app/models/pgq/pgq_issues.rb
332
+ - test/dummy/app/models/pgq/pgq_cleanup.rb
333
+ - test/dummy/app/models/pgq/pgq_pack_files.rb
334
+ - test/dummy/app/controllers/application_controller.rb
335
+ - test/dummy/app/views/layouts/application.html.erb
336
+ - test/dummy/app/assets/javascripts/application.js
337
+ - test/dummy/app/assets/stylesheets/application.css
338
+ - test/dummy/app/helpers/application_helper.rb
339
+ - test/dummy/log/pgq_issues,cleanup.log
340
+ - test/dummy/log/development.log
341
+ - test/dummy/log/pgqadm_development.log
342
+ - test/dummy/log/pgq_places,cleanup.log
343
+ - test/dummy/log/pgq_places,issues.log
344
+ - test/dummy/log/pgqadm_development2.log
345
+ - test/dummy/public/favicon.ico
346
+ - test/dummy/public/500.html
347
+ - test/dummy/public/404.html
348
+ - test/dummy/public/422.html
349
+ - test/test_helper.rb