easy_admin 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.
- data/LICENSE +661 -0
- data/README.md +50 -0
- data/Rakefile +38 -0
- data/app/controllers/admin/jobs_controller.rb +26 -0
- data/app/views/admin/jobs/index.html.erb +34 -0
- data/app/views/admin/jobs/show.html.erb +17 -0
- data/config/routes.rb +9 -0
- data/lib/easy_admin/engine.rb +4 -0
- data/lib/easy_admin/version.rb +3 -0
- data/lib/easy_admin.rb +1 -0
- data/lib/tasks/easy_admin_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/admin/base_controller.rb +10 -0
- data/test/dummy/app/controllers/admin/welcome_controller.rb +4 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/admin/welcome/index.html.erb +4 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +8 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20121114025434_create_delayed_jobs.rb +22 -0
- data/test/dummy/db/schema.rb +32 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +594 -0
- data/test/dummy/log/test.log +205 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/delayed_job +5 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/C33/4C0/sprockets%2Fc4839b48061e4985b0961597ec802366 +0 -0
- data/test/dummy/tmp/cache/assets/C57/5F0/sprockets%2F3688375383e6e700ba1b68f06235734f +0 -0
- data/test/dummy/tmp/cache/assets/C59/8C0/sprockets%2F2e45846506bfb54899651c20ff106384 +0 -0
- data/test/dummy/tmp/cache/assets/C61/730/sprockets%2F9397e1a672ad1e5353a77488305d5488 +0 -0
- data/test/dummy/tmp/cache/assets/CA3/430/sprockets%2F8435b3b79289bd6b024f52c640320d1a +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CFE/770/sprockets%2Fb10582c06d2124dc13bacf089ba28588 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D33/A80/sprockets%2Fc4a0e88dc4684c0073811473ed0bfb3b +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D6E/AA0/sprockets%2Feff88475222e5aad1a7324ef9d6135aa +0 -0
- data/test/dummy/tmp/cache/assets/D82/170/sprockets%2Fd81e75b9c7729487caaa875e6eeb60f1 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/DDD/730/sprockets%2F6f588f81892fdea1a6ffad7405dacb47 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/E2D/CF0/sprockets%2Fccdfa721fbfe009dfa5da7801e8c64d7 +0 -0
- data/test/dummy/tmp/cache/assets/E4F/F40/sprockets%2F0ed4c0b964c38da5a08ebcaf2da3fd7a +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/easy_admin_test.rb +7 -0
- data/test/jobs_controller_test.rb +34 -0
- data/test/test_helper.rb +15 -0
- metadata +214 -0
|
@@ -0,0 +1,594 @@
|
|
|
1
|
+
Connecting to database specified by database.yml
|
|
2
|
+
Connecting to database specified by database.yml
|
|
3
|
+
[1m[36m (0.6ms)[0m [1mselect sqlite_version(*)[0m
|
|
4
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
5
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
6
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
7
|
+
Migrating to CreateDelayedJobs (20121114025434)
|
|
8
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
9
|
+
[1m[35m (0.6ms)[0m CREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
|
10
|
+
[1m[36m (0.1ms)[0m [1mCREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")[0m
|
|
11
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20121114025434')
|
|
12
|
+
[1m[36m (1.3ms)[0m [1mcommit transaction[0m
|
|
13
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
|
14
|
+
Connecting to database specified by database.yml
|
|
15
|
+
Connecting to database specified by database.yml
|
|
16
|
+
Connecting to database specified by database.yml
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
Started GET "/" for 127.0.0.1 at 2012-11-14 16:04:41 +1300
|
|
20
|
+
|
|
21
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
|
22
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
23
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
24
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
|
25
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
|
26
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
27
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
|
28
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
29
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
30
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
31
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
32
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
33
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
34
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
|
35
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
|
36
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
37
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
38
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
39
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
40
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
41
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
Rendered /Users/shevaun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.3ms)
|
|
45
|
+
Connecting to database specified by database.yml
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
Started GET "/" for 127.0.0.1 at 2012-11-14 16:07:50 +1300
|
|
49
|
+
|
|
50
|
+
ActionController::RoutingError (uninitialized constant WelcomeController):
|
|
51
|
+
activesupport (3.2.9) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
|
52
|
+
activesupport (3.2.9) lib/active_support/inflector/methods.rb:229:in `each'
|
|
53
|
+
activesupport (3.2.9) lib/active_support/inflector/methods.rb:229:in `constantize'
|
|
54
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
|
55
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
|
56
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
|
57
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
58
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
59
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
60
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
61
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
62
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
|
63
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
|
64
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
65
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
66
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
67
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
|
68
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
|
69
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
70
|
+
activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
|
|
71
|
+
activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
72
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
73
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__3655153407551677443__call__3403688108934098938__callbacks'
|
|
74
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
75
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
76
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
77
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
78
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
79
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
80
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
81
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
82
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
|
83
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
|
84
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
85
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
|
86
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
87
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
88
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
89
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
90
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
91
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
92
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
|
93
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
|
94
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
95
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
96
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
97
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
98
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
99
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
Rendered /Users/shevaun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
103
|
+
Connecting to database specified by database.yml
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
Started GET "/" for 127.0.0.1 at 2012-11-14 16:08:12 +1300
|
|
107
|
+
|
|
108
|
+
ActionController::RoutingError (uninitialized constant WelcomeController):
|
|
109
|
+
activesupport (3.2.9) lib/active_support/inflector/methods.rb:230:in `block in constantize'
|
|
110
|
+
activesupport (3.2.9) lib/active_support/inflector/methods.rb:229:in `each'
|
|
111
|
+
activesupport (3.2.9) lib/active_support/inflector/methods.rb:229:in `constantize'
|
|
112
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
|
113
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:54:in `controller'
|
|
114
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:32:in `call'
|
|
115
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
|
116
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
|
117
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
|
118
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
|
119
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
|
120
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
|
121
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
|
122
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
|
123
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
|
124
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
|
125
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
|
126
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
|
127
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
|
128
|
+
activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
|
|
129
|
+
activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
|
130
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
|
131
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__2644701105556765974__call__3130330037411717835__callbacks'
|
|
132
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
|
133
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
|
134
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
135
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
136
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
|
137
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
|
138
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
|
139
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
|
140
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
|
141
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
|
142
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
|
143
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
|
144
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
|
145
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
|
146
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
|
147
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
|
148
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
|
149
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
|
150
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
|
151
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
|
152
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
|
153
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
|
154
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
|
155
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
|
156
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
|
157
|
+
/Users/shevaun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
Rendered /Users/shevaun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
Started GET "/" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
164
|
+
Processing by Admin::WelcomeController#index as HTML
|
|
165
|
+
Rendered admin/welcome/index.html.erb within layouts/application (0.7ms)
|
|
166
|
+
Compiled admin/base.css (0ms) (pid 43125)
|
|
167
|
+
Compiled admin/welcome.css (0ms) (pid 43125)
|
|
168
|
+
Compiled application.css (44ms) (pid 43125)
|
|
169
|
+
Compiled jquery.js (4ms) (pid 43125)
|
|
170
|
+
Compiled jquery_ujs.js (0ms) (pid 43125)
|
|
171
|
+
Compiled admin/base.js (0ms) (pid 43125)
|
|
172
|
+
Compiled admin/welcome.js (0ms) (pid 43125)
|
|
173
|
+
Compiled application.js (84ms) (pid 43125)
|
|
174
|
+
Completed 200 OK in 213ms (Views: 212.2ms | ActiveRecord: 0.0ms)
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
178
|
+
Served asset /application.css - 200 OK (6ms)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
Started GET "/assets/admin/base.css?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
182
|
+
Served asset /admin/base.css - 200 OK (1ms)
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
Started GET "/assets/admin/welcome.css?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
186
|
+
Served asset /admin/welcome.css - 200 OK (2ms)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
Started GET "/assets/admin/welcome.js?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
190
|
+
Served asset /admin/welcome.js - 200 OK (4ms)
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
Started GET "/assets/admin/base.js?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
194
|
+
Served asset /admin/base.js - 200 OK (2ms)
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
198
|
+
Served asset /jquery.js - 200 OK (30ms)
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
202
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:08:36 +1300
|
|
206
|
+
Served asset /application.js - 200 OK (9ms)
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 16:08:38 +1300
|
|
210
|
+
Processing by Admin::JobsController#index as HTML
|
|
211
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
|
212
|
+
[1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
|
213
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/index.html.erb within layouts/application (3.8ms)
|
|
214
|
+
Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 1.5ms)
|
|
215
|
+
Connecting to database specified by database.yml
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
219
|
+
Processing by Admin::JobsController#index as HTML
|
|
220
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
|
221
|
+
[1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
|
222
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" ORDER BY run_at[0m
|
|
223
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/index.html.erb within layouts/application (14.6ms)
|
|
224
|
+
Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.3ms)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
228
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
Started GET "/assets/admin/base.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
232
|
+
Served asset /admin/base.js - 304 Not Modified (0ms)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
Started GET "/assets/admin/welcome.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
236
|
+
Served asset /admin/welcome.css - 304 Not Modified (0ms)
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
240
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
244
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
Started GET "/assets/admin/base.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
248
|
+
Served asset /admin/base.css - 304 Not Modified (0ms)
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
Started GET "/assets/admin/welcome.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
252
|
+
Served asset /admin/welcome.js - 304 Not Modified (0ms)
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:36 +1300
|
|
256
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
Started GET "/admin/jobs/1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
260
|
+
Processing by Admin::JobsController#show as HTML
|
|
261
|
+
Parameters: {"id"=>"1"}
|
|
262
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ? LIMIT 1 [["id", "1"]]
|
|
263
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/show.html.erb within layouts/application (1.7ms)
|
|
264
|
+
Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 0.2ms)
|
|
265
|
+
|
|
266
|
+
|
|
267
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
268
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
Started GET "/assets/admin/base.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
272
|
+
Served asset /admin/base.css - 304 Not Modified (0ms)
|
|
273
|
+
|
|
274
|
+
|
|
275
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
276
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
Started GET "/assets/admin/welcome.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
280
|
+
Served asset /admin/welcome.css - 304 Not Modified (0ms)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
284
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
Started GET "/assets/admin/base.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
288
|
+
Served asset /admin/base.js - 304 Not Modified (0ms)
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
Started GET "/assets/admin/welcome.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
292
|
+
Served asset /admin/welcome.js - 304 Not Modified (0ms)
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:39 +1300
|
|
296
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
Started POST "/admin/jobs/1/retry" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
300
|
+
Processing by Admin::JobsController#retry as HTML
|
|
301
|
+
Parameters: {"authenticity_token"=>"6JBNsMb2lL4NxYdb/aH5VMRlkjEh5VHW0YsFeCh3dps=", "id"=>"1"}
|
|
302
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 1 LIMIT 1[0m
|
|
303
|
+
[1m[35mSQL (1.2ms)[0m UPDATE "delayed_jobs" SET "attempts" = 0 WHERE "delayed_jobs"."id" = 1
|
|
304
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
305
|
+
[1m[35m (0.3ms)[0m UPDATE "delayed_jobs" SET "run_at" = '2012-11-14 03:09:43.117781', "updated_at" = '2012-11-14 03:09:43.119362' WHERE "delayed_jobs"."id" = 1
|
|
306
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
|
307
|
+
Redirected to http://localhost:3000/admin/jobs
|
|
308
|
+
Completed 302 Found in 55ms (ActiveRecord: 2.9ms)
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
312
|
+
Processing by Admin::JobsController#index as HTML
|
|
313
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
|
314
|
+
[1m[36mCACHE (0.0ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
|
315
|
+
[1m[35mDelayed::Backend::ActiveRecord::Job Load (0.1ms)[0m SELECT "delayed_jobs".* FROM "delayed_jobs" ORDER BY run_at
|
|
316
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/index.html.erb within layouts/application (2.7ms)
|
|
317
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.2ms)
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
321
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
Started GET "/assets/admin/welcome.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
325
|
+
Served asset /admin/welcome.css - 304 Not Modified (0ms)
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
329
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
333
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
Started GET "/assets/admin/base.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
337
|
+
Served asset /admin/base.js - 304 Not Modified (0ms)
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
Started GET "/assets/admin/base.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
341
|
+
Served asset /admin/base.css - 304 Not Modified (0ms)
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
Started GET "/assets/admin/welcome.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
345
|
+
Served asset /admin/welcome.js - 304 Not Modified (0ms)
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:43 +1300
|
|
349
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
Started DELETE "/admin/jobs/1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
353
|
+
Processing by Admin::JobsController#destroy as HTML
|
|
354
|
+
Parameters: {"authenticity_token"=>"6JBNsMb2lL4NxYdb/aH5VMRlkjEh5VHW0YsFeCh3dps=", "id"=>"1"}
|
|
355
|
+
[1m[36mDelayed::Backend::ActiveRecord::Job Load (0.2ms)[0m [1mSELECT "delayed_jobs".* FROM "delayed_jobs" WHERE "delayed_jobs"."id" = 1 LIMIT 1[0m
|
|
356
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
357
|
+
[1m[36mSQL (0.3ms)[0m [1mDELETE FROM "delayed_jobs" WHERE "delayed_jobs"."id" = ?[0m [["id", 1]]
|
|
358
|
+
[1m[35m (1.0ms)[0m commit transaction
|
|
359
|
+
Redirected to http://localhost:3000/admin/jobs
|
|
360
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.5ms)
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
364
|
+
Processing by Admin::JobsController#index as HTML
|
|
365
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
|
366
|
+
[1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
|
367
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/index.html.erb within layouts/application (0.9ms)
|
|
368
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
372
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
376
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
380
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
Started GET "/assets/admin/base.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
384
|
+
Served asset /admin/base.js - 304 Not Modified (0ms)
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
Started GET "/assets/admin/base.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
388
|
+
Served asset /admin/base.css - 304 Not Modified (0ms)
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
Started GET "/assets/admin/welcome.css?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
392
|
+
Served asset /admin/welcome.css - 304 Not Modified (0ms)
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
Started GET "/assets/admin/welcome.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
396
|
+
Served asset /admin/welcome.js - 304 Not Modified (0ms)
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:09:46 +1300
|
|
400
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 16:13:57 +1300
|
|
404
|
+
Processing by Admin::JobsController#index as HTML
|
|
405
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
|
406
|
+
[1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
|
407
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/index.html.erb within layouts/application (1.0ms)
|
|
408
|
+
Compiled application.css (0ms) (pid 43125)
|
|
409
|
+
Compiled application.js (2ms) (pid 43125)
|
|
410
|
+
Completed 200 OK in 61ms (Views: 59.9ms | ActiveRecord: 0.3ms)
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:13:57 +1300
|
|
414
|
+
Served asset /application.css - 304 Not Modified (5ms)
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:13:57 +1300
|
|
418
|
+
Served asset /application.js - 304 Not Modified (4ms)
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:13:57 +1300
|
|
422
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:13:57 +1300
|
|
426
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
Started GET "/admin/welcome" for 127.0.0.1 at 2012-11-14 16:17:14 +1300
|
|
430
|
+
Processing by Admin::WelcomeController#index as HTML
|
|
431
|
+
Rendered admin/welcome/index.html.erb within layouts/application (1.2ms)
|
|
432
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:17:14 +1300
|
|
436
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:17:14 +1300
|
|
440
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:17:14 +1300
|
|
444
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:17:14 +1300
|
|
448
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
Started GET "/admin/welcome" for 127.0.0.1 at 2012-11-14 16:17:40 +1300
|
|
452
|
+
Processing by Admin::WelcomeController#index as HTML
|
|
453
|
+
Rendered admin/welcome/index.html.erb within layouts/application (0.6ms)
|
|
454
|
+
Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:17:40 +1300
|
|
458
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:17:40 +1300
|
|
462
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:17:40 +1300
|
|
466
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:17:40 +1300
|
|
470
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
471
|
+
Connecting to database specified by database.yml
|
|
472
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
473
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
474
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
475
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
|
476
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
477
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
478
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
479
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121114025434')
|
|
480
|
+
Connecting to database specified by database.yml
|
|
481
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
|
482
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
483
|
+
[1m[36m (2.8ms)[0m [1mCREATE TABLE "delayed_jobs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "priority" integer DEFAULT 0, "attempts" integer DEFAULT 0, "handler" text, "last_error" text, "run_at" datetime, "locked_at" datetime, "failed_at" datetime, "locked_by" varchar(255), "queue" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
484
|
+
[1m[35m (1.2ms)[0m CREATE INDEX "delayed_jobs_priority" ON "delayed_jobs" ("priority", "run_at")
|
|
485
|
+
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
486
|
+
[1m[35m (1.0ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
487
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
|
488
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20121114025434')
|
|
489
|
+
|
|
490
|
+
|
|
491
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 16:59:01 +1300
|
|
492
|
+
Processing by Admin::JobsController#index as HTML
|
|
493
|
+
[1m[36m (0.3ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
|
494
|
+
[1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
|
495
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/index.html.erb within layouts/application (1.2ms)
|
|
496
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.3ms)
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:59:01 +1300
|
|
500
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
501
|
+
|
|
502
|
+
|
|
503
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:59:01 +1300
|
|
504
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
505
|
+
|
|
506
|
+
|
|
507
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:59:01 +1300
|
|
508
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:59:01 +1300
|
|
512
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 16:59:03 +1300
|
|
516
|
+
Processing by Admin::JobsController#index as HTML
|
|
517
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "delayed_jobs" [0m
|
|
518
|
+
[1m[35mCACHE (0.0ms)[0m SELECT COUNT(*) FROM "delayed_jobs"
|
|
519
|
+
Rendered /Users/shevaun/src/github/abletech/easy_admin/app/views/admin/jobs/index.html.erb within layouts/application (0.8ms)
|
|
520
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 16:59:03 +1300
|
|
524
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 16:59:03 +1300
|
|
528
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 16:59:03 +1300
|
|
532
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 16:59:03 +1300
|
|
536
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 17:00:15 +1300
|
|
540
|
+
Processing by Admin::JobsController#index as HTML
|
|
541
|
+
Redirected to http://localhost:3000/
|
|
542
|
+
Filter chain halted as :authorize_jobs rendered or redirected
|
|
543
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
Started GET "/" for 127.0.0.1 at 2012-11-14 17:00:15 +1300
|
|
547
|
+
Processing by Admin::WelcomeController#index as HTML
|
|
548
|
+
Rendered admin/welcome/index.html.erb within layouts/application (0.3ms)
|
|
549
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 17:00:15 +1300
|
|
553
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 17:00:15 +1300
|
|
557
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 17:00:15 +1300
|
|
561
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 17:00:15 +1300
|
|
565
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
Started GET "/admin/jobs" for 127.0.0.1 at 2012-11-14 17:00:17 +1300
|
|
569
|
+
Processing by Admin::JobsController#index as HTML
|
|
570
|
+
Redirected to http://localhost:3000/
|
|
571
|
+
Filter chain halted as :authorize_jobs rendered or redirected
|
|
572
|
+
Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
Started GET "/" for 127.0.0.1 at 2012-11-14 17:00:17 +1300
|
|
576
|
+
Processing by Admin::WelcomeController#index as HTML
|
|
577
|
+
Rendered admin/welcome/index.html.erb within layouts/application (0.2ms)
|
|
578
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-14 17:00:17 +1300
|
|
582
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-14 17:00:17 +1300
|
|
586
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-14 17:00:17 +1300
|
|
590
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-14 17:00:17 +1300
|
|
594
|
+
Served asset /application.js - 304 Not Modified (0ms)
|