acts_as_citable 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +38 -0
  4. data/lib/acts_as_citable/base.rb +87 -0
  5. data/lib/acts_as_citable/mime_types.rb +4 -0
  6. data/lib/acts_as_citable/renderers.rb +32 -0
  7. data/lib/acts_as_citable/version.rb +3 -0
  8. data/lib/acts_as_citable.rb +1 -0
  9. data/lib/tasks/acts_as_citable_tasks.rake +4 -0
  10. data/test/acts_as_citable_test.rb +81 -0
  11. data/test/dummy/README.rdoc +261 -0
  12. data/test/dummy/Rakefile +7 -0
  13. data/test/dummy/app/assets/javascripts/application.js +15 -0
  14. data/test/dummy/app/assets/javascripts/test.js +2 -0
  15. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  16. data/test/dummy/app/assets/stylesheets/test.css +4 -0
  17. data/test/dummy/app/controllers/application_controller.rb +3 -0
  18. data/test/dummy/app/controllers/test_controller.rb +9 -0
  19. data/test/dummy/app/helpers/application_helper.rb +2 -0
  20. data/test/dummy/app/helpers/test_helper.rb +2 -0
  21. data/test/dummy/app/models/inherited_record.rb +3 -0
  22. data/test/dummy/app/models/record.rb +4 -0
  23. data/test/dummy/app/models/record_changed_field.rb +6 -0
  24. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  25. data/test/dummy/config/application.rb +59 -0
  26. data/test/dummy/config/boot.rb +10 -0
  27. data/test/dummy/config/database.yml +20 -0
  28. data/test/dummy/config/environment.rb +5 -0
  29. data/test/dummy/config/environments/development.rb +37 -0
  30. data/test/dummy/config/environments/production.rb +67 -0
  31. data/test/dummy/config/environments/test.rb +37 -0
  32. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  33. data/test/dummy/config/initializers/inflections.rb +15 -0
  34. data/test/dummy/config/initializers/mime_types.rb +5 -0
  35. data/test/dummy/config/initializers/secret_token.rb +7 -0
  36. data/test/dummy/config/initializers/session_store.rb +8 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  38. data/test/dummy/config/locales/en.yml +5 -0
  39. data/test/dummy/config/routes.rb +59 -0
  40. data/test/dummy/config.ru +4 -0
  41. data/test/dummy/db/development.sqlite3 +0 -0
  42. data/test/dummy/db/migrate/20130221210429_create_records.rb +10 -0
  43. data/test/dummy/db/migrate/20130221214225_create_record_changed_fields.rb +10 -0
  44. data/test/dummy/db/schema.rb +30 -0
  45. data/test/dummy/db/test.sqlite3 +0 -0
  46. data/test/dummy/log/development.log +3150 -0
  47. data/test/dummy/log/test.log +6674 -0
  48. data/test/dummy/public/404.html +26 -0
  49. data/test/dummy/public/422.html +26 -0
  50. data/test/dummy/public/500.html +25 -0
  51. data/test/dummy/public/favicon.ico +0 -0
  52. data/test/dummy/script/rails +6 -0
  53. data/test/dummy/test/fixtures/record_changed_fields.yml +9 -0
  54. data/test/dummy/test/fixtures/records.yml +9 -0
  55. data/test/dummy/test/functional/test_controller_test.rb +20 -0
  56. data/test/dummy/test/unit/helpers/test_helper_test.rb +4 -0
  57. data/test/dummy/test/unit/record_changed_field_test.rb +7 -0
  58. data/test/dummy/test/unit/record_test.rb +11 -0
  59. data/test/test_helper.rb +26 -0
  60. metadata +340 -0
@@ -0,0 +1,3150 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("schema_migrations")
4
+  (14.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
5
+  (0.0ms) SELECT name, sql FROM sqlite_master WHERE tbl_name = "schema_migrations" AND type = 'index'
6
+  (0.0ms) select sqlite_version(*)
7
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
8
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("schema_info")
9
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
10
+ Migrating to CreateRecords (20130221210429)
11
+  (1.0ms) CREATE TABLE "records" ("id" integer primary key autoincrement not null, "data" varchar(255), "format" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
12
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130221210429')
13
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
14
+  (0.0ms)  SELECT name
15
+ FROM sqlite_master
16
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
17
+ 
18
+  (0.0ms) SELECT name, sql FROM sqlite_master WHERE tbl_name = "records" AND type = 'index'
19
+ Connecting to database specified by database.yml
20
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
21
+ Migrating to CreateRecords (20130221210429)
22
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
23
+  (0.0ms)  SELECT name
24
+ FROM sqlite_master
25
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
26
+ 
27
+  (0.0ms) SELECT name, sql FROM sqlite_master WHERE tbl_name = "records" AND type = 'index'
28
+ Connecting to database specified by database.yml
29
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
30
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("records")
31
+  (2.0ms) CREATE TABLE "records" ("id" integer primary key autoincrement not null, "data" varchar(255), "format" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
32
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("schema_migrations")
33
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
34
+  (0.0ms) SELECT name, sql FROM sqlite_master WHERE tbl_name = "schema_migrations" AND type = 'index'
35
+  (0.0ms) select sqlite_version(*)
36
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
37
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("schema_info")
38
+  (0.0ms) SELECT version FROM "schema_migrations"
39
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130221210429')
40
+ Connecting to database specified by database.yml
41
+ Connecting to database specified by database.yml
42
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
43
+ Migrating to CreateRecords (20130221210429)
44
+ Migrating to CreateRecordChangedFields (20130221214225)
45
+  (0.0ms) CREATE TABLE "record_changed_fields" ("id" integer primary key autoincrement not null, "data" varchar(255), "from_format" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
46
+  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20130221214225')
47
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
48
+  (1.0ms)  SELECT name
49
+ FROM sqlite_master
50
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
51
+ 
52
+  (0.0ms) SELECT name, sql FROM sqlite_master WHERE tbl_name = "record_changed_fields" AND type = 'index'
53
+  (0.0ms) SELECT name, sql FROM sqlite_master WHERE tbl_name = "records" AND type = 'index'
54
+ Connecting to database specified by database.yml
55
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
56
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("record_changed_fields")
57
+  (1.0ms) CREATE TABLE "record_changed_fields" ("id" integer primary key autoincrement not null, "data" varchar(255), "from_format" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
58
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("records")
59
+  (1.0ms) CREATE TABLE "records" ("id" integer primary key autoincrement not null, "data" varchar(255), "format" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
60
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("schema_migrations")
61
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
62
+  (0.0ms) SELECT name, sql FROM sqlite_master WHERE tbl_name = "schema_migrations" AND type = 'index'
63
+  (0.0ms) select sqlite_version(*)
64
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
65
+ ActiveRecord::JDBCError: query does not return ResultSet: PRAGMA table_info("schema_info")
66
+  (0.0ms) SELECT version FROM "schema_migrations"
67
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130221214225')
68
+  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20130221210429')
69
+ Connecting to database specified by database.yml
70
+
71
+
72
+ Started GET "/cite" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:30:51 -0500
73
+
74
+ ActionController::RoutingError (No route matches [GET] "/cite"):
75
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
76
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
77
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
78
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
79
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
80
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
81
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
82
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
83
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
84
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
85
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
86
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
87
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
88
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
89
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
90
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
91
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
92
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
93
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
94
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
95
+
96
+
97
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (6.0ms)
98
+
99
+
100
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:32:00 -0500
101
+
102
+ ActionController::RoutingError (uninitialized constant TestController):
103
+ activesupport (3.2.12) lib/active_support/inflector/methods.rb:230:in `constantize'
104
+ activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `each'
105
+ activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `constantize'
106
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
107
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:54:in `controller'
108
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:32:in `call'
109
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
110
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
111
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
112
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
113
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
114
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
115
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
116
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
117
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
118
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
119
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
120
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
121
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
122
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
123
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
124
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
125
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1970989261__call__892236228__callbacks'
126
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `send'
127
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
128
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
129
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `send'
130
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
131
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
132
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
133
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
134
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
135
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
136
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
137
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
138
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
139
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
140
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
141
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
142
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
143
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
144
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
145
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
146
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
147
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
148
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
149
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
150
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
151
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
152
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
153
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
154
+
155
+
156
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
157
+ Connecting to database specified by database.yml
158
+ Connecting to database specified by database.yml
159
+
160
+
161
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:34:36 -0500
162
+ Processing by TestController#show as HTML
163
+ SQL (8.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:34:36.539000', 'itemType: book', 'csf', '2013-02-27 19:34:36.539000')
164
+ Completed 500 Internal Server Error in 613ms
165
+
166
+ SystemStackError (stack level too deep):
167
+ org/jruby/RubyModule.java:2303:in `module_eval'
168
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:10:in `generate_method_for_mime'
169
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:25:in `method_missing'
170
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
171
+ org/jruby/RubyKernel.java:2086:in `send'
172
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
173
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
174
+ org/jruby/RubyKernel.java:2086:in `send'
175
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
176
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
177
+ org/jruby/RubyKernel.java:2086:in `send'
178
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
179
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
180
+ org/jruby/RubyKernel.java:2086:in `send'
181
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
182
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
183
+ org/jruby/RubyKernel.java:2086:in `send'
184
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
185
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
186
+ org/jruby/RubyKernel.java:2086:in `send'
187
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
188
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
189
+ org/jruby/RubyKernel.java:2086:in `send'
190
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
191
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
192
+ org/jruby/RubyKernel.java:2086:in `send'
193
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
194
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
195
+ org/jruby/RubyKernel.java:2086:in `send'
196
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
197
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
198
+ org/jruby/RubyKernel.java:2086:in `send'
199
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
200
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
201
+ org/jruby/RubyKernel.java:2086:in `send'
202
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
203
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
204
+ org/jruby/RubyKernel.java:2086:in `send'
205
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
206
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
207
+ org/jruby/RubyKernel.java:2086:in `send'
208
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
209
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
210
+ org/jruby/RubyKernel.java:2086:in `send'
211
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
212
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
213
+ org/jruby/RubyKernel.java:2086:in `send'
214
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
215
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
216
+ org/jruby/RubyKernel.java:2086:in `send'
217
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
218
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
219
+ org/jruby/RubyKernel.java:2086:in `send'
220
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
221
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
222
+ org/jruby/RubyKernel.java:2086:in `send'
223
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
224
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
225
+ org/jruby/RubyKernel.java:2086:in `send'
226
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
227
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
228
+ org/jruby/RubyKernel.java:2086:in `send'
229
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
230
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
231
+ org/jruby/RubyKernel.java:2086:in `send'
232
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
233
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
234
+ org/jruby/RubyKernel.java:2086:in `send'
235
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
236
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
237
+ org/jruby/RubyKernel.java:2086:in `send'
238
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
239
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
240
+ org/jruby/RubyKernel.java:2086:in `send'
241
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
242
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
243
+ org/jruby/RubyKernel.java:2086:in `send'
244
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
245
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
246
+ org/jruby/RubyKernel.java:2086:in `send'
247
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
248
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
249
+ org/jruby/RubyKernel.java:2086:in `send'
250
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
251
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
252
+ org/jruby/RubyKernel.java:2086:in `send'
253
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
254
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
255
+ org/jruby/RubyKernel.java:2086:in `send'
256
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
257
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
258
+ org/jruby/RubyKernel.java:2086:in `send'
259
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
260
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
261
+ org/jruby/RubyKernel.java:2086:in `send'
262
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
263
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
264
+ org/jruby/RubyKernel.java:2086:in `send'
265
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
266
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
267
+ org/jruby/RubyKernel.java:2086:in `send'
268
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
269
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
270
+ org/jruby/RubyKernel.java:2086:in `send'
271
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
272
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
273
+ org/jruby/RubyKernel.java:2086:in `send'
274
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
275
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
276
+ org/jruby/RubyKernel.java:2086:in `send'
277
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
278
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
279
+ org/jruby/RubyKernel.java:2086:in `send'
280
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
281
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
282
+ org/jruby/RubyKernel.java:2086:in `send'
283
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
284
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
285
+ org/jruby/RubyKernel.java:2086:in `send'
286
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
287
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
288
+ org/jruby/RubyKernel.java:2086:in `send'
289
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
290
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
291
+ org/jruby/RubyKernel.java:2086:in `send'
292
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
293
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
294
+ org/jruby/RubyKernel.java:2086:in `send'
295
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
296
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
297
+ org/jruby/RubyKernel.java:2086:in `send'
298
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
299
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
300
+ org/jruby/RubyKernel.java:2086:in `send'
301
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
302
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
303
+ org/jruby/RubyKernel.java:2086:in `send'
304
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
305
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
306
+ org/jruby/RubyKernel.java:2086:in `send'
307
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
308
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
309
+ org/jruby/RubyKernel.java:2086:in `send'
310
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
311
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
312
+ org/jruby/RubyKernel.java:2086:in `send'
313
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
314
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
315
+ org/jruby/RubyKernel.java:2086:in `send'
316
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
317
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
318
+ org/jruby/RubyKernel.java:2086:in `send'
319
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
320
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
321
+ org/jruby/RubyKernel.java:2086:in `send'
322
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
323
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
324
+ org/jruby/RubyKernel.java:2086:in `send'
325
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
326
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
327
+ org/jruby/RubyKernel.java:2086:in `send'
328
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
329
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
330
+ org/jruby/RubyKernel.java:2086:in `send'
331
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
332
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
333
+ org/jruby/RubyKernel.java:2086:in `send'
334
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
335
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
336
+ org/jruby/RubyKernel.java:2086:in `send'
337
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
338
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
339
+ org/jruby/RubyKernel.java:2086:in `send'
340
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
341
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
342
+ org/jruby/RubyKernel.java:2086:in `send'
343
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
344
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
345
+ org/jruby/RubyKernel.java:2086:in `send'
346
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
347
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
348
+ org/jruby/RubyKernel.java:2086:in `send'
349
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
350
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
351
+ org/jruby/RubyKernel.java:2086:in `send'
352
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
353
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
354
+ org/jruby/RubyKernel.java:2086:in `send'
355
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
356
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
357
+ org/jruby/RubyKernel.java:2086:in `send'
358
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
359
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
360
+ org/jruby/RubyKernel.java:2086:in `send'
361
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
362
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
363
+ org/jruby/RubyKernel.java:2086:in `send'
364
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
365
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
366
+ org/jruby/RubyKernel.java:2086:in `send'
367
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
368
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
369
+ org/jruby/RubyKernel.java:2086:in `send'
370
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
371
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
372
+ org/jruby/RubyKernel.java:2086:in `send'
373
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
374
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
375
+ org/jruby/RubyKernel.java:2086:in `send'
376
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
377
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
378
+ org/jruby/RubyKernel.java:2086:in `send'
379
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
380
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
381
+ org/jruby/RubyKernel.java:2086:in `send'
382
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
383
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
384
+ org/jruby/RubyKernel.java:2086:in `send'
385
+
386
+
387
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
388
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
389
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.0ms)
390
+
391
+
392
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:35:26 -0500
393
+ Processing by TestController#show as HTML
394
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:35:26.791000', 'itemType: book', 'csf', '2013-02-27 19:35:26.791000')
395
+ Completed 500 Internal Server Error in 384ms
396
+
397
+ SystemStackError (stack level too deep):
398
+ app/controllers/test_controller.rb:7:in `show'
399
+
400
+
401
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
402
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (6.0ms)
403
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms)
404
+
405
+
406
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:38:09 -0500
407
+ Processing by TestController#show as HTML
408
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:38:09.212000', 'itemType: book', 'csf', '2013-02-27 19:38:09.212000')
409
+ Completed 500 Internal Server Error in 334ms
410
+
411
+ SystemStackError (stack level too deep):
412
+ app/controllers/test_controller.rb:7:in `show'
413
+
414
+
415
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
416
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
417
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
418
+
419
+
420
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:38:25 -0500
421
+ Processing by TestController#show as HTML
422
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:38:25.059000', 'itemType: book', 'csf', '2013-02-27 19:38:25.059000')
423
+ Completed 500 Internal Server Error in 330ms
424
+
425
+ SystemStackError (stack level too deep):
426
+ app/controllers/test_controller.rb:7:in `show'
427
+
428
+
429
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
430
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
431
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
432
+
433
+
434
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:39:21 -0500
435
+ Processing by TestController#show as HTML
436
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:39:21.688000', 'itemType: book', 'csf', '2013-02-27 19:39:21.688000')
437
+ Completed 500 Internal Server Error in 375ms
438
+
439
+ SystemStackError (stack level too deep):
440
+ app/controllers/test_controller.rb:7:in `show'
441
+
442
+
443
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
444
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
445
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
446
+
447
+
448
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:40:40 -0500
449
+ Processing by TestController#show as HTML
450
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:40:40.496000', 'itemType: book', 'csf', '2013-02-27 19:40:40.496000')
451
+ Completed 500 Internal Server Error in 317ms
452
+
453
+ SystemStackError (stack level too deep):
454
+ app/controllers/test_controller.rb:6:in `show'
455
+
456
+
457
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
458
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
459
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
460
+
461
+
462
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:41:00 -0500
463
+ Processing by TestController#show as HTML
464
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:41:00.194000', 'itemType: book', 'csf', '2013-02-27 19:41:00.194000')
465
+ Completed 500 Internal Server Error in 84ms
466
+
467
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
468
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
469
+ ):
470
+ app/controllers/test_controller.rb:6:in `show'
471
+
472
+
473
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
474
+
475
+
476
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:42:10 -0500
477
+ Processing by TestController#show as HTML
478
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:42:10.273000', 'itemType: book', 'csf', '2013-02-27 19:42:10.273000')
479
+ Rendered text template (0.0ms)
480
+ Sent data 8.ris (27.0ms)
481
+ Completed 200 OK in 86ms (Views: 33.0ms | ActiveRecord: 0.0ms)
482
+
483
+
484
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:42:49 -0500
485
+ Processing by TestController#show as HTML
486
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:42:49.124000', 'itemType: book', 'csf', '2013-02-27 19:42:49.124000')
487
+ Rendered text template (0.0ms)
488
+ Sent data 9.ris (2.0ms)
489
+ Completed 200 OK in 14ms (Views: 6.0ms | ActiveRecord: 1.0ms)
490
+
491
+
492
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:42:51 -0500
493
+ Processing by TestController#show as HTML
494
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:42:51.132000', 'itemType: book', 'csf', '2013-02-27 19:42:51.132000')
495
+ Rendered text template (0.0ms)
496
+ Sent data 10.ris (2.0ms)
497
+ Completed 200 OK in 18ms (Views: 5.0ms | ActiveRecord: 0.0ms)
498
+
499
+
500
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:49:38 -0500
501
+ Processing by TestController#show as HTML
502
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:49:38.530000', 'itemType: book', 'csf', '2013-02-27 19:49:38.530000')
503
+ Completed 500 Internal Server Error in 303ms
504
+
505
+ SystemStackError (stack level too deep):
506
+ app/controllers/test_controller.rb:7:in `show'
507
+
508
+
509
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
510
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
511
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
512
+
513
+
514
+ Started GET "/test" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:50:10 -0500
515
+ Processing by TestController#show as HTML
516
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:50:10.643000', 'itemType: book', 'csf', '2013-02-27 19:50:10.643000')
517
+ Completed 500 Internal Server Error in 399ms
518
+
519
+ SystemStackError (stack level too deep):
520
+ app/controllers/test_controller.rb:7:in `show'
521
+
522
+
523
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
524
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
525
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
526
+
527
+
528
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:50:13 -0500
529
+ Processing by TestController#show as
530
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:50:13.857000', 'itemType: book', 'csf', '2013-02-27 19:50:13.857000')
531
+ Completed 500 Internal Server Error in 361ms
532
+
533
+ SystemStackError (stack level too deep):
534
+ app/controllers/test_controller.rb:7:in `show'
535
+
536
+
537
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
538
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
539
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
540
+
541
+
542
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:50:21 -0500
543
+ Processing by TestController#show as
544
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:50:21.319000', 'itemType: book', 'csf', '2013-02-27 19:50:21.319000')
545
+ Completed 500 Internal Server Error in 366ms
546
+
547
+ SystemStackError (stack level too deep):
548
+ app/controllers/test_controller.rb:7:in `show'
549
+
550
+
551
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
552
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
553
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
554
+
555
+
556
+ Started GET "/test" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 14:57:38 -0500
557
+ Processing by TestController#show as HTML
558
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 19:57:38.707000', 'itemType: book', 'csf', '2013-02-27 19:57:38.707000')
559
+ Completed in 370ms
560
+
561
+
562
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:00:30 -0500
563
+ Processing by TestController#show as
564
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:00:30.612000', 'itemType: book', 'csf', '2013-02-27 20:00:30.612000')
565
+ Completed in 386ms
566
+
567
+
568
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:00:38 -0500
569
+
570
+ ActionController::RoutingError (No route matches [GET] "/"):
571
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
572
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
573
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
574
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
575
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
576
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
577
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
578
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
579
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
580
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
581
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
582
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
583
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
584
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
585
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
586
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
587
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
588
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
589
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
590
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
591
+
592
+
593
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
594
+
595
+
596
+ Started GET "/test" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:00:43 -0500
597
+ Processing by TestController#show as HTML
598
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:00:43.757000', 'itemType: book', 'csf', '2013-02-27 20:00:43.757000')
599
+ Completed 500 Internal Server Error in 390ms
600
+
601
+ SystemStackError (stack level too deep):
602
+ app/controllers/test_controller.rb:7:in `show'
603
+
604
+
605
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
606
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
607
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
608
+
609
+
610
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:00:48 -0500
611
+ Processing by TestController#show as
612
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:00:48.402000', 'itemType: book', 'csf', '2013-02-27 20:00:48.402000')
613
+ Completed in 360ms
614
+
615
+
616
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:02:53 -0500
617
+ Processing by TestController#show as
618
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:02:53.877000', 'itemType: book', 'csf', '2013-02-27 20:02:53.877000')
619
+ Completed 500 Internal Server Error in 60ms
620
+
621
+ ActionView::MissingTemplate (Missing template test/ris, application/ris with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :png, :jpeg, :gif, :bmp, :tiff, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip, :Bibtex, :RIS, :openurl, :csf, :easybib], :handlers=>[:erb, :builder]}. Searched in:
622
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
623
+ ):
624
+ app/controllers/test_controller.rb:6:in `show'
625
+
626
+
627
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
628
+
629
+
630
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:03:01 -0500
631
+ Processing by TestController#show as
632
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:03:02.066000', 'itemType: book', 'csf', '2013-02-27 20:03:02.066000')
633
+ Rendered text template (0.0ms)
634
+ Sent data 20.ris (6.0ms)
635
+ Completed 200 OK in 55ms (Views: 11.0ms | ActiveRecord: 0.0ms)
636
+
637
+
638
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:04:05 -0500
639
+ Processing by TestController#show as
640
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:04:05.887000', 'itemType: book', 'csf', '2013-02-27 20:04:05.887000')
641
+ Rendered text template (0.0ms)
642
+ Sent data 21.ris (2.0ms)
643
+ Completed 200 OK in 22ms (Views: 7.0ms | ActiveRecord: 0.0ms)
644
+
645
+
646
+ Started GET "/test" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:04:08 -0500
647
+ Processing by TestController#show as HTML
648
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:04:08.724000', 'itemType: book', 'csf', '2013-02-27 20:04:08.724000')
649
+ Rendered text template (0.0ms)
650
+ Sent data 22.ris (1.0ms)
651
+ Completed 200 OK in 13ms (Views: 6.0ms | ActiveRecord: 0.0ms)
652
+
653
+
654
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:11:08 -0500
655
+ Processing by TestController#show as
656
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:11:08.856000', 'itemType: book', 'csf', '2013-02-27 20:11:08.856000')
657
+ Completed 500 Internal Server Error in 395ms
658
+
659
+ SystemStackError (stack level too deep):
660
+ app/controllers/test_controller.rb:7:in `show'
661
+
662
+
663
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
664
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
665
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.0ms)
666
+
667
+
668
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:13:35 -0500
669
+ Processing by TestController#show as
670
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:13:35.288000', 'itemType: book', 'csf', '2013-02-27 20:13:35.288000')
671
+ Completed 500 Internal Server Error in 379ms
672
+
673
+ SystemStackError (stack level too deep):
674
+ app/controllers/test_controller.rb:7:in `show'
675
+
676
+
677
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
678
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
679
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
680
+
681
+
682
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:13:38 -0500
683
+ Processing by TestController#show as
684
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:13:38.258000', 'itemType: book', 'csf', '2013-02-27 20:13:38.258000')
685
+ Completed 500 Internal Server Error in 367ms
686
+
687
+ SystemStackError (stack level too deep):
688
+ app/controllers/test_controller.rb:7:in `show'
689
+
690
+
691
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
692
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
693
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms)
694
+
695
+
696
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:13:53 -0500
697
+ Processing by TestController#show as
698
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:13:53.022000', 'itemType: book', 'csf', '2013-02-27 20:13:53.022000')
699
+ Completed in 371ms
700
+
701
+
702
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:14:06 -0500
703
+ Processing by TestController#show as
704
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:14:06.079000', 'itemType: book', 'csf', '2013-02-27 20:14:06.079000')
705
+ Completed in 394ms
706
+
707
+
708
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:15:59 -0500
709
+ Processing by TestController#show as
710
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:15:59.275000', 'itemType: book', 'csf', '2013-02-27 20:15:59.275000')
711
+ Completed in 368ms
712
+
713
+
714
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:16:05 -0500
715
+ Processing by TestController#show as
716
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:16:05.715000', 'itemType: book', 'csf', '2013-02-27 20:16:05.715000')
717
+ Completed in 362ms
718
+
719
+
720
+ Started GET "/" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:16:16 -0500
721
+ DEPRECATION WARNING: Database connections will not be closed automatically, please close your
722
+ database connection at the end of the thread by calling `close` on your
723
+ connection. For example: ActiveRecord::Base.connection.close
724
+ . (called from mon_synchronize at /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/monitor.rb:211)
725
+ DEPRECATION WARNING: Database connections will not be closed automatically, please close your
726
+ database connection at the end of the thread by calling `close` on your
727
+ connection. For example: ActiveRecord::Base.connection.close
728
+ . (called from mon_synchronize at /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/monitor.rb:211)
729
+ DEPRECATION WARNING: Database connections will not be closed automatically, please close your
730
+ database connection at the end of the thread by calling `close` on your
731
+ connection. For example: ActiveRecord::Base.connection.close
732
+ . (called from mon_synchronize at /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/monitor.rb:211)
733
+ DEPRECATION WARNING: Database connections will not be closed automatically, please close your
734
+ database connection at the end of the thread by calling `close` on your
735
+ connection. For example: ActiveRecord::Base.connection.close
736
+ . (called from mon_synchronize at /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/monitor.rb:211)
737
+ DEPRECATION WARNING: Database connections will not be closed automatically, please close your
738
+ database connection at the end of the thread by calling `close` on your
739
+ connection. For example: ActiveRecord::Base.connection.close
740
+ . (called from mon_synchronize at /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/monitor.rb:211)
741
+
742
+ ActionController::RoutingError (No route matches [GET] "/"):
743
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
744
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
745
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
746
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
747
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
748
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
749
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
750
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
751
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
752
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
753
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
754
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
755
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
756
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
757
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
758
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
759
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
760
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
761
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
762
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
763
+
764
+
765
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
766
+ Connecting to database specified by database.yml
767
+
768
+
769
+ Started GET "/test" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:16:37 -0500
770
+ Processing by TestController#show as HTML
771
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:16:37.299000', 'itemType: book', 'csf', '2013-02-27 20:16:37.299000')
772
+ Completed 500 Internal Server Error in 640ms
773
+
774
+ SystemStackError (stack level too deep):
775
+ org/jruby/RubyModule.java:2303:in `module_eval'
776
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:10:in `generate_method_for_mime'
777
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:25:in `method_missing'
778
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
779
+ org/jruby/RubyKernel.java:2086:in `send'
780
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
781
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
782
+ org/jruby/RubyKernel.java:2086:in `send'
783
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
784
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
785
+ org/jruby/RubyKernel.java:2086:in `send'
786
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
787
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
788
+ org/jruby/RubyKernel.java:2086:in `send'
789
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
790
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
791
+ org/jruby/RubyKernel.java:2086:in `send'
792
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
793
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
794
+ org/jruby/RubyKernel.java:2086:in `send'
795
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
796
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
797
+ org/jruby/RubyKernel.java:2086:in `send'
798
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
799
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
800
+ org/jruby/RubyKernel.java:2086:in `send'
801
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
802
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
803
+ org/jruby/RubyKernel.java:2086:in `send'
804
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
805
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
806
+ org/jruby/RubyKernel.java:2086:in `send'
807
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
808
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
809
+ org/jruby/RubyKernel.java:2086:in `send'
810
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
811
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
812
+ org/jruby/RubyKernel.java:2086:in `send'
813
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
814
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
815
+ org/jruby/RubyKernel.java:2086:in `send'
816
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
817
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
818
+ org/jruby/RubyKernel.java:2086:in `send'
819
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
820
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
821
+ org/jruby/RubyKernel.java:2086:in `send'
822
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
823
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
824
+ org/jruby/RubyKernel.java:2086:in `send'
825
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
826
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
827
+ org/jruby/RubyKernel.java:2086:in `send'
828
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
829
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
830
+ org/jruby/RubyKernel.java:2086:in `send'
831
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
832
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
833
+ org/jruby/RubyKernel.java:2086:in `send'
834
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
835
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
836
+ org/jruby/RubyKernel.java:2086:in `send'
837
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
838
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
839
+ org/jruby/RubyKernel.java:2086:in `send'
840
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
841
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
842
+ org/jruby/RubyKernel.java:2086:in `send'
843
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
844
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
845
+ org/jruby/RubyKernel.java:2086:in `send'
846
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
847
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
848
+ org/jruby/RubyKernel.java:2086:in `send'
849
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
850
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
851
+ org/jruby/RubyKernel.java:2086:in `send'
852
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
853
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
854
+ org/jruby/RubyKernel.java:2086:in `send'
855
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
856
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
857
+ org/jruby/RubyKernel.java:2086:in `send'
858
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
859
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
860
+ org/jruby/RubyKernel.java:2086:in `send'
861
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
862
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
863
+ org/jruby/RubyKernel.java:2086:in `send'
864
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
865
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
866
+ org/jruby/RubyKernel.java:2086:in `send'
867
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
868
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
869
+ org/jruby/RubyKernel.java:2086:in `send'
870
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
871
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
872
+ org/jruby/RubyKernel.java:2086:in `send'
873
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
874
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
875
+ org/jruby/RubyKernel.java:2086:in `send'
876
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
877
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
878
+ org/jruby/RubyKernel.java:2086:in `send'
879
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
880
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
881
+ org/jruby/RubyKernel.java:2086:in `send'
882
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
883
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
884
+ org/jruby/RubyKernel.java:2086:in `send'
885
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
886
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
887
+ org/jruby/RubyKernel.java:2086:in `send'
888
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
889
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
890
+ org/jruby/RubyKernel.java:2086:in `send'
891
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
892
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
893
+ org/jruby/RubyKernel.java:2086:in `send'
894
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
895
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
896
+ org/jruby/RubyKernel.java:2086:in `send'
897
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
898
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
899
+ org/jruby/RubyKernel.java:2086:in `send'
900
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
901
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
902
+ org/jruby/RubyKernel.java:2086:in `send'
903
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
904
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
905
+ org/jruby/RubyKernel.java:2086:in `send'
906
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
907
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
908
+ org/jruby/RubyKernel.java:2086:in `send'
909
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
910
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
911
+ org/jruby/RubyKernel.java:2086:in `send'
912
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
913
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
914
+ org/jruby/RubyKernel.java:2086:in `send'
915
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
916
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
917
+ org/jruby/RubyKernel.java:2086:in `send'
918
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
919
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
920
+ org/jruby/RubyKernel.java:2086:in `send'
921
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
922
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
923
+ org/jruby/RubyKernel.java:2086:in `send'
924
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
925
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
926
+ org/jruby/RubyKernel.java:2086:in `send'
927
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
928
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
929
+ org/jruby/RubyKernel.java:2086:in `send'
930
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
931
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
932
+ org/jruby/RubyKernel.java:2086:in `send'
933
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
934
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
935
+ org/jruby/RubyKernel.java:2086:in `send'
936
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
937
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
938
+ org/jruby/RubyKernel.java:2086:in `send'
939
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
940
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
941
+ org/jruby/RubyKernel.java:2086:in `send'
942
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
943
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
944
+ org/jruby/RubyKernel.java:2086:in `send'
945
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
946
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
947
+ org/jruby/RubyKernel.java:2086:in `send'
948
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
949
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
950
+ org/jruby/RubyKernel.java:2086:in `send'
951
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
952
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
953
+ org/jruby/RubyKernel.java:2086:in `send'
954
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
955
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
956
+ org/jruby/RubyKernel.java:2086:in `send'
957
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
958
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
959
+ org/jruby/RubyKernel.java:2086:in `send'
960
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
961
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
962
+ org/jruby/RubyKernel.java:2086:in `send'
963
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
964
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
965
+ org/jruby/RubyKernel.java:2086:in `send'
966
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
967
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
968
+ org/jruby/RubyKernel.java:2086:in `send'
969
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
970
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
971
+ org/jruby/RubyKernel.java:2086:in `send'
972
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
973
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
974
+ org/jruby/RubyKernel.java:2086:in `send'
975
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
976
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
977
+ org/jruby/RubyKernel.java:2086:in `send'
978
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
979
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
980
+ org/jruby/RubyKernel.java:2086:in `send'
981
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
982
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
983
+ org/jruby/RubyKernel.java:2086:in `send'
984
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
985
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
986
+ org/jruby/RubyKernel.java:2086:in `send'
987
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
988
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
989
+ org/jruby/RubyKernel.java:2086:in `send'
990
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
991
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
992
+ org/jruby/RubyKernel.java:2086:in `send'
993
+
994
+
995
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
996
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
997
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.0ms)
998
+
999
+
1000
+ Started GET "/test" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:23:07 -0500
1001
+ Processing by TestController#show as HTML
1002
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:23:07.234000', 'itemType: book', 'csf', '2013-02-27 20:23:07.234000')
1003
+ Completed 500 Internal Server Error in 314ms
1004
+
1005
+ SystemStackError (stack level too deep):
1006
+ app/controllers/test_controller.rb:7:in `show'
1007
+
1008
+
1009
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1010
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
1011
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.0ms)
1012
+
1013
+
1014
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:23:12 -0500
1015
+ Processing by TestController#show as
1016
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:23:12.658000', 'itemType: book', 'csf', '2013-02-27 20:23:12.658000')
1017
+ Completed 500 Internal Server Error in 329ms
1018
+
1019
+ SystemStackError (stack level too deep):
1020
+ app/controllers/test_controller.rb:7:in `show'
1021
+
1022
+
1023
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1024
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1025
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
1026
+
1027
+
1028
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:53:20 -0500
1029
+ Processing by TestController#show as
1030
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:53:20.948000', 'itemType: book', 'csf', '2013-02-27 20:53:20.948000')
1031
+ Completed 500 Internal Server Error in 348ms
1032
+
1033
+ SystemStackError (stack level too deep):
1034
+ app/controllers/test_controller.rb:7:in `show'
1035
+
1036
+
1037
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1038
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1039
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms)
1040
+ Connecting to database specified by database.yml
1041
+
1042
+
1043
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:53:55 -0500
1044
+ Processing by TestController#show as
1045
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:53:55.874000', 'itemType: book', 'csf', '2013-02-27 20:53:55.874000')
1046
+ Completed 500 Internal Server Error in 116ms
1047
+
1048
+ NameError (uninitialized constant Mime::RIS):
1049
+ app/controllers/test_controller.rb:7:in `show'
1050
+
1051
+
1052
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1053
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1054
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms)
1055
+
1056
+
1057
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:54:26 -0500
1058
+ Processing by TestController#show as
1059
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:54:26.274000', 'itemType: book', 'csf', '2013-02-27 20:54:26.274000')
1060
+ Completed 500 Internal Server Error in 23ms
1061
+
1062
+ NameError (uninitialized constant Mime::RIS):
1063
+ app/controllers/test_controller.rb:7:in `show'
1064
+
1065
+
1066
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1067
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
1068
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
1069
+
1070
+
1071
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:54:54 -0500
1072
+ Processing by TestController#show as
1073
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:54:54.944000', 'itemType: book', 'csf', '2013-02-27 20:54:54.944000')
1074
+ Completed 500 Internal Server Error in 14ms
1075
+
1076
+ NameError (uninitialized constant Mime::RIS):
1077
+ app/controllers/test_controller.rb:7:in `show'
1078
+
1079
+
1080
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1081
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1082
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
1083
+
1084
+
1085
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:56:39 -0500
1086
+ Processing by TestController#show as
1087
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:56:39.137000', 'itemType: book', 'csf', '2013-02-27 20:56:39.137000')
1088
+ Completed 500 Internal Server Error in 66ms
1089
+
1090
+ NameError (uninitialized constant Mime::BIBTEX):
1091
+ app/controllers/test_controller.rb:7:in `show'
1092
+
1093
+
1094
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1095
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1096
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
1097
+
1098
+
1099
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:57:13 -0500
1100
+
1101
+ SyntaxError (/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/controllers/test_controller.rb:2: syntax error, unexpected ':'
1102
+
1103
+ respond_to :ris :bibtex, :easybib
1104
+ ^):
1105
+ org/jruby/RubyKernel.java:1046:in `load'
1106
+ activesupport (3.2.12) lib/active_support/dependencies.rb:1:in `(root)'
1107
+ activesupport (3.2.12) lib/active_support/dependencies.rb:469:in `load_file'
1108
+ activesupport (3.2.12) lib/active_support/dependencies.rb:639:in `new_constants_in'
1109
+ activesupport (3.2.12) lib/active_support/dependencies.rb:468:in `load_file'
1110
+ activesupport (3.2.12) lib/active_support/dependencies.rb:353:in `require_or_load'
1111
+ activesupport (3.2.12) lib/active_support/dependencies.rb:502:in `load_missing_constant'
1112
+ org/jruby/RubyArray.java:1613:in `each'
1113
+ activesupport (3.2.12) lib/active_support/dependencies.rb:192:in `const_missing'
1114
+ activesupport (3.2.12) lib/active_support/inflector/methods.rb:230:in `constantize'
1115
+ org/jruby/RubyArray.java:1613:in `each'
1116
+ activesupport (3.2.12) lib/active_support/inflector/methods.rb:229:in `constantize'
1117
+ activesupport (3.2.12) lib/active_support/dependencies.rb:190:in `const_missing'
1118
+ activesupport (3.2.12) lib/active_support/dependencies.rb:554:in `get'
1119
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1120
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:54:in `controller'
1121
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:32:in `call'
1122
+ org/jruby/RubyArray.java:1613:in `each'
1123
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
1124
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
1125
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
1126
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1127
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
1128
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
1129
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
1130
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1131
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
1132
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
1133
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
1134
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
1135
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
1136
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
1137
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
1138
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1139
+ org/jruby/RubyKernel.java:2086:in `send'
1140
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__337254419__call__1401235114__callbacks'
1141
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
1142
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1143
+ org/jruby/RubyKernel.java:2086:in `send'
1144
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
1145
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
1146
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1147
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1148
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1149
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1150
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1151
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
1152
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
1153
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
1154
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
1155
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1156
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
1157
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
1158
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1159
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
1160
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
1161
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
1162
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
1163
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
1164
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
1165
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
1166
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
1167
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
1168
+
1169
+
1170
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1171
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1172
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
1173
+
1174
+
1175
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:57:21 -0500
1176
+ Processing by TestController#show as
1177
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:57:21.282000', 'itemType: book', 'csf', '2013-02-27 20:57:21.282000')
1178
+ Completed 500 Internal Server Error in 52ms
1179
+
1180
+ NameError (uninitialized constant Mime::RIS):
1181
+ app/controllers/test_controller.rb:7:in `show'
1182
+
1183
+
1184
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1185
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1186
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
1187
+
1188
+
1189
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:57:28 -0500
1190
+
1191
+ ArgumentError (wrong number of arguments calling `respond_to?` (3 for 2)):
1192
+ app/controllers/test_controller.rb:2:in `TestController'
1193
+ app/controllers/test_controller.rb:1:in `(root)'
1194
+
1195
+
1196
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1197
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.0ms)
1198
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.0ms)
1199
+
1200
+
1201
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:57:32 -0500
1202
+ Processing by TestController#show as
1203
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:57:32.453000', 'itemType: book', 'csf', '2013-02-27 20:57:32.453000')
1204
+ Completed 500 Internal Server Error in 45ms
1205
+
1206
+ NameError (uninitialized constant Mime::RIS):
1207
+ app/controllers/test_controller.rb:7:in `show'
1208
+
1209
+
1210
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1211
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1212
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
1213
+ Connecting to database specified by database.yml
1214
+
1215
+
1216
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 15:59:44 -0500
1217
+ Processing by TestController#show as
1218
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 20:59:44.424000', 'itemType: book', 'csf', '2013-02-27 20:59:44.424000')
1219
+ Completed 500 Internal Server Error in 592ms
1220
+
1221
+ SystemStackError (stack level too deep):
1222
+ org/jruby/RubyModule.java:2303:in `module_eval'
1223
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:10:in `generate_method_for_mime'
1224
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:25:in `method_missing'
1225
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1226
+ org/jruby/RubyKernel.java:2086:in `send'
1227
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1228
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1229
+ org/jruby/RubyKernel.java:2086:in `send'
1230
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1231
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1232
+ org/jruby/RubyKernel.java:2086:in `send'
1233
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1234
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1235
+ org/jruby/RubyKernel.java:2086:in `send'
1236
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1237
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1238
+ org/jruby/RubyKernel.java:2086:in `send'
1239
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1240
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1241
+ org/jruby/RubyKernel.java:2086:in `send'
1242
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1243
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1244
+ org/jruby/RubyKernel.java:2086:in `send'
1245
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1246
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1247
+ org/jruby/RubyKernel.java:2086:in `send'
1248
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1249
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1250
+ org/jruby/RubyKernel.java:2086:in `send'
1251
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1252
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1253
+ org/jruby/RubyKernel.java:2086:in `send'
1254
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1255
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1256
+ org/jruby/RubyKernel.java:2086:in `send'
1257
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1258
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1259
+ org/jruby/RubyKernel.java:2086:in `send'
1260
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1261
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1262
+ org/jruby/RubyKernel.java:2086:in `send'
1263
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1264
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1265
+ org/jruby/RubyKernel.java:2086:in `send'
1266
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1267
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1268
+ org/jruby/RubyKernel.java:2086:in `send'
1269
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1270
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1271
+ org/jruby/RubyKernel.java:2086:in `send'
1272
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1273
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1274
+ org/jruby/RubyKernel.java:2086:in `send'
1275
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1276
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1277
+ org/jruby/RubyKernel.java:2086:in `send'
1278
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1279
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1280
+ org/jruby/RubyKernel.java:2086:in `send'
1281
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1282
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1283
+ org/jruby/RubyKernel.java:2086:in `send'
1284
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1285
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1286
+ org/jruby/RubyKernel.java:2086:in `send'
1287
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1288
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1289
+ org/jruby/RubyKernel.java:2086:in `send'
1290
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1291
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1292
+ org/jruby/RubyKernel.java:2086:in `send'
1293
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1294
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1295
+ org/jruby/RubyKernel.java:2086:in `send'
1296
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1297
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1298
+ org/jruby/RubyKernel.java:2086:in `send'
1299
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1300
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1301
+ org/jruby/RubyKernel.java:2086:in `send'
1302
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1303
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1304
+ org/jruby/RubyKernel.java:2086:in `send'
1305
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1306
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1307
+ org/jruby/RubyKernel.java:2086:in `send'
1308
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1309
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1310
+ org/jruby/RubyKernel.java:2086:in `send'
1311
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1312
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1313
+ org/jruby/RubyKernel.java:2086:in `send'
1314
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1315
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1316
+ org/jruby/RubyKernel.java:2086:in `send'
1317
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1318
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1319
+ org/jruby/RubyKernel.java:2086:in `send'
1320
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1321
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1322
+ org/jruby/RubyKernel.java:2086:in `send'
1323
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1324
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1325
+ org/jruby/RubyKernel.java:2086:in `send'
1326
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1327
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1328
+ org/jruby/RubyKernel.java:2086:in `send'
1329
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1330
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1331
+ org/jruby/RubyKernel.java:2086:in `send'
1332
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1333
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1334
+ org/jruby/RubyKernel.java:2086:in `send'
1335
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1336
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1337
+ org/jruby/RubyKernel.java:2086:in `send'
1338
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1339
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1340
+ org/jruby/RubyKernel.java:2086:in `send'
1341
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1342
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1343
+ org/jruby/RubyKernel.java:2086:in `send'
1344
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1345
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1346
+ org/jruby/RubyKernel.java:2086:in `send'
1347
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1348
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1349
+ org/jruby/RubyKernel.java:2086:in `send'
1350
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1351
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1352
+ org/jruby/RubyKernel.java:2086:in `send'
1353
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1354
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1355
+ org/jruby/RubyKernel.java:2086:in `send'
1356
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1357
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1358
+ org/jruby/RubyKernel.java:2086:in `send'
1359
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1360
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1361
+ org/jruby/RubyKernel.java:2086:in `send'
1362
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1363
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1364
+ org/jruby/RubyKernel.java:2086:in `send'
1365
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1366
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1367
+ org/jruby/RubyKernel.java:2086:in `send'
1368
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1369
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1370
+ org/jruby/RubyKernel.java:2086:in `send'
1371
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1372
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1373
+ org/jruby/RubyKernel.java:2086:in `send'
1374
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1375
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1376
+ org/jruby/RubyKernel.java:2086:in `send'
1377
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1378
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1379
+ org/jruby/RubyKernel.java:2086:in `send'
1380
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1381
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1382
+ org/jruby/RubyKernel.java:2086:in `send'
1383
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1384
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1385
+ org/jruby/RubyKernel.java:2086:in `send'
1386
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1387
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1388
+ org/jruby/RubyKernel.java:2086:in `send'
1389
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1390
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1391
+ org/jruby/RubyKernel.java:2086:in `send'
1392
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1393
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1394
+ org/jruby/RubyKernel.java:2086:in `send'
1395
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1396
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1397
+ org/jruby/RubyKernel.java:2086:in `send'
1398
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1399
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1400
+ org/jruby/RubyKernel.java:2086:in `send'
1401
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1402
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1403
+ org/jruby/RubyKernel.java:2086:in `send'
1404
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1405
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1406
+ org/jruby/RubyKernel.java:2086:in `send'
1407
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1408
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1409
+ org/jruby/RubyKernel.java:2086:in `send'
1410
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1411
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1412
+ org/jruby/RubyKernel.java:2086:in `send'
1413
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1414
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1415
+ org/jruby/RubyKernel.java:2086:in `send'
1416
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1417
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1418
+ org/jruby/RubyKernel.java:2086:in `send'
1419
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1420
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1421
+ org/jruby/RubyKernel.java:2086:in `send'
1422
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1423
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1424
+ org/jruby/RubyKernel.java:2086:in `send'
1425
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1426
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1427
+ org/jruby/RubyKernel.java:2086:in `send'
1428
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1429
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1430
+ org/jruby/RubyKernel.java:2086:in `send'
1431
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1432
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1433
+ org/jruby/RubyKernel.java:2086:in `send'
1434
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1435
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1436
+ org/jruby/RubyKernel.java:2086:in `send'
1437
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1438
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1439
+ org/jruby/RubyKernel.java:2086:in `send'
1440
+
1441
+
1442
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1443
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1444
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
1445
+
1446
+
1447
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:00:13 -0500
1448
+ Processing by TestController#show as
1449
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:00:13.086000', 'itemType: book', 'csf', '2013-02-27 21:00:13.086000')
1450
+ Completed 500 Internal Server Error in 280ms
1451
+
1452
+ SystemStackError (stack level too deep):
1453
+ app/controllers/test_controller.rb:7:in `show'
1454
+
1455
+
1456
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1457
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
1458
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms)
1459
+
1460
+
1461
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:00:39 -0500
1462
+ Processing by TestController#show as
1463
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:00:39.621000', 'itemType: book', 'csf', '2013-02-27 21:00:39.621000')
1464
+ Completed 500 Internal Server Error in 48ms
1465
+
1466
+ RuntimeError (In order to use respond_with, first you need to declare the formats your controller responds to in the class level):
1467
+ app/controllers/test_controller.rb:7:in `show'
1468
+
1469
+
1470
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
1471
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1472
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
1473
+
1474
+
1475
+ Started GET "/test.ris" for 127.0.0.1 at 2013-02-27 16:02:25 -0500
1476
+ Processing by TestController#show as
1477
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:02:25.807000', 'itemType: book', 'csf', '2013-02-27 21:02:25.807000')
1478
+ Completed 500 Internal Server Error in 365ms
1479
+
1480
+ SystemStackError (stack level too deep):
1481
+ app/controllers/test_controller.rb:7:in `show'
1482
+
1483
+
1484
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1485
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
1486
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
1487
+
1488
+
1489
+ Started GET "/test.ris" for 127.0.0.1 at 2013-02-27 16:02:39 -0500
1490
+ Processing by TestController#show as
1491
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:02:39.544000', 'itemType: book', 'csf', '2013-02-27 21:02:39.544000')
1492
+ Completed 500 Internal Server Error in 355ms
1493
+
1494
+ SystemStackError (stack level too deep):
1495
+ app/controllers/test_controller.rb:7:in `show'
1496
+
1497
+
1498
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1499
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1500
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
1501
+
1502
+
1503
+ Started GET "/test.ris" for 127.0.0.1 at 2013-02-27 16:02:44 -0500
1504
+ Processing by TestController#show as
1505
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:02:44.692000', 'itemType: book', 'csf', '2013-02-27 21:02:44.692000')
1506
+ Completed 500 Internal Server Error in 363ms
1507
+
1508
+ SystemStackError (stack level too deep):
1509
+ app/controllers/test_controller.rb:7:in `show'
1510
+
1511
+
1512
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1513
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1514
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
1515
+
1516
+
1517
+ Started GET "/test.ris" for 127.0.0.1 at 2013-02-27 16:02:47 -0500
1518
+ Processing by TestController#show as
1519
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:02:47.095000', 'itemType: book', 'csf', '2013-02-27 21:02:47.095000')
1520
+ Completed 500 Internal Server Error in 431ms
1521
+
1522
+ SystemStackError (stack level too deep):
1523
+ app/controllers/test_controller.rb:7:in `show'
1524
+
1525
+
1526
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1527
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1528
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
1529
+
1530
+
1531
+ Started GET "/test.ris" for 127.0.0.1 at 2013-02-27 16:03:07 -0500
1532
+ Processing by TestController#show as
1533
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:03:07.492000', 'itemType: book', 'csf', '2013-02-27 21:03:07.492000')
1534
+ Completed 500 Internal Server Error in 521ms
1535
+
1536
+ SystemStackError (stack level too deep):
1537
+ app/controllers/test_controller.rb:7:in `show'
1538
+
1539
+
1540
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1541
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.0ms)
1542
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.0ms)
1543
+ Connecting to database specified by database.yml
1544
+
1545
+
1546
+ Started GET "/test.ris" for 127.0.0.1 at 2013-02-27 16:03:25 -0500
1547
+ Processing by TestController#show as
1548
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:03:25.801000', 'itemType: book', 'csf', '2013-02-27 21:03:25.801000')
1549
+ Completed 500 Internal Server Error in 118ms
1550
+
1551
+ NameError (uninitialized constant Mime::RIS):
1552
+ app/controllers/test_controller.rb:7:in `show'
1553
+
1554
+
1555
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1556
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1557
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
1558
+
1559
+
1560
+ Started GET "/test.ris" for 127.0.0.1 at 2013-02-27 16:03:44 -0500
1561
+ Processing by TestController#show as
1562
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:03:44.249000', 'itemType: book', 'csf', '2013-02-27 21:03:44.249000')
1563
+ Completed 500 Internal Server Error in 39ms
1564
+
1565
+ NameError (uninitialized constant Mime::RIS):
1566
+ app/controllers/test_controller.rb:7:in `show'
1567
+
1568
+
1569
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.0ms)
1570
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.0ms)
1571
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (28.0ms)
1572
+ Connecting to database specified by database.yml
1573
+
1574
+
1575
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:04:04 -0500
1576
+ Processing by TestController#show as
1577
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:04:04.827000', 'itemType: book', 'csf', '2013-02-27 21:04:04.827000')
1578
+ Completed 500 Internal Server Error in 601ms
1579
+
1580
+ SystemStackError (stack level too deep):
1581
+ org/jruby/RubyModule.java:2303:in `module_eval'
1582
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:10:in `generate_method_for_mime'
1583
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:25:in `method_missing'
1584
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1585
+ org/jruby/RubyKernel.java:2086:in `send'
1586
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1587
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1588
+ org/jruby/RubyKernel.java:2086:in `send'
1589
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1590
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1591
+ org/jruby/RubyKernel.java:2086:in `send'
1592
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1593
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1594
+ org/jruby/RubyKernel.java:2086:in `send'
1595
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1596
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1597
+ org/jruby/RubyKernel.java:2086:in `send'
1598
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1599
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1600
+ org/jruby/RubyKernel.java:2086:in `send'
1601
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1602
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1603
+ org/jruby/RubyKernel.java:2086:in `send'
1604
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1605
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1606
+ org/jruby/RubyKernel.java:2086:in `send'
1607
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1608
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1609
+ org/jruby/RubyKernel.java:2086:in `send'
1610
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1611
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1612
+ org/jruby/RubyKernel.java:2086:in `send'
1613
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1614
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1615
+ org/jruby/RubyKernel.java:2086:in `send'
1616
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1617
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1618
+ org/jruby/RubyKernel.java:2086:in `send'
1619
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1620
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1621
+ org/jruby/RubyKernel.java:2086:in `send'
1622
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1623
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1624
+ org/jruby/RubyKernel.java:2086:in `send'
1625
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1626
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1627
+ org/jruby/RubyKernel.java:2086:in `send'
1628
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1629
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1630
+ org/jruby/RubyKernel.java:2086:in `send'
1631
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1632
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1633
+ org/jruby/RubyKernel.java:2086:in `send'
1634
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1635
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1636
+ org/jruby/RubyKernel.java:2086:in `send'
1637
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1638
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1639
+ org/jruby/RubyKernel.java:2086:in `send'
1640
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1641
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1642
+ org/jruby/RubyKernel.java:2086:in `send'
1643
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1644
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1645
+ org/jruby/RubyKernel.java:2086:in `send'
1646
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1647
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1648
+ org/jruby/RubyKernel.java:2086:in `send'
1649
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1650
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1651
+ org/jruby/RubyKernel.java:2086:in `send'
1652
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1653
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1654
+ org/jruby/RubyKernel.java:2086:in `send'
1655
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1656
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1657
+ org/jruby/RubyKernel.java:2086:in `send'
1658
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1659
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1660
+ org/jruby/RubyKernel.java:2086:in `send'
1661
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1662
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1663
+ org/jruby/RubyKernel.java:2086:in `send'
1664
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1665
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1666
+ org/jruby/RubyKernel.java:2086:in `send'
1667
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1668
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1669
+ org/jruby/RubyKernel.java:2086:in `send'
1670
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1671
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1672
+ org/jruby/RubyKernel.java:2086:in `send'
1673
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1674
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1675
+ org/jruby/RubyKernel.java:2086:in `send'
1676
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1677
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1678
+ org/jruby/RubyKernel.java:2086:in `send'
1679
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1680
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1681
+ org/jruby/RubyKernel.java:2086:in `send'
1682
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1683
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1684
+ org/jruby/RubyKernel.java:2086:in `send'
1685
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1686
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1687
+ org/jruby/RubyKernel.java:2086:in `send'
1688
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1689
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1690
+ org/jruby/RubyKernel.java:2086:in `send'
1691
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1692
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1693
+ org/jruby/RubyKernel.java:2086:in `send'
1694
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1695
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1696
+ org/jruby/RubyKernel.java:2086:in `send'
1697
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1698
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1699
+ org/jruby/RubyKernel.java:2086:in `send'
1700
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1701
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1702
+ org/jruby/RubyKernel.java:2086:in `send'
1703
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1704
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1705
+ org/jruby/RubyKernel.java:2086:in `send'
1706
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1707
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1708
+ org/jruby/RubyKernel.java:2086:in `send'
1709
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1710
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1711
+ org/jruby/RubyKernel.java:2086:in `send'
1712
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1713
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1714
+ org/jruby/RubyKernel.java:2086:in `send'
1715
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1716
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1717
+ org/jruby/RubyKernel.java:2086:in `send'
1718
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1719
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1720
+ org/jruby/RubyKernel.java:2086:in `send'
1721
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1722
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1723
+ org/jruby/RubyKernel.java:2086:in `send'
1724
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1725
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1726
+ org/jruby/RubyKernel.java:2086:in `send'
1727
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1728
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1729
+ org/jruby/RubyKernel.java:2086:in `send'
1730
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1731
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1732
+ org/jruby/RubyKernel.java:2086:in `send'
1733
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1734
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1735
+ org/jruby/RubyKernel.java:2086:in `send'
1736
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1737
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1738
+ org/jruby/RubyKernel.java:2086:in `send'
1739
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1740
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1741
+ org/jruby/RubyKernel.java:2086:in `send'
1742
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1743
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1744
+ org/jruby/RubyKernel.java:2086:in `send'
1745
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1746
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1747
+ org/jruby/RubyKernel.java:2086:in `send'
1748
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1749
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1750
+ org/jruby/RubyKernel.java:2086:in `send'
1751
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1752
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1753
+ org/jruby/RubyKernel.java:2086:in `send'
1754
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1755
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1756
+ org/jruby/RubyKernel.java:2086:in `send'
1757
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1758
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1759
+ org/jruby/RubyKernel.java:2086:in `send'
1760
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1761
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1762
+ org/jruby/RubyKernel.java:2086:in `send'
1763
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1764
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1765
+ org/jruby/RubyKernel.java:2086:in `send'
1766
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1767
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1768
+ org/jruby/RubyKernel.java:2086:in `send'
1769
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1770
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1771
+ org/jruby/RubyKernel.java:2086:in `send'
1772
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1773
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1774
+ org/jruby/RubyKernel.java:2086:in `send'
1775
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1776
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1777
+ org/jruby/RubyKernel.java:2086:in `send'
1778
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1779
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1780
+ org/jruby/RubyKernel.java:2086:in `send'
1781
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1782
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1783
+ org/jruby/RubyKernel.java:2086:in `send'
1784
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1785
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1786
+ org/jruby/RubyKernel.java:2086:in `send'
1787
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1788
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1789
+ org/jruby/RubyKernel.java:2086:in `send'
1790
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1791
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1792
+ org/jruby/RubyKernel.java:2086:in `send'
1793
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1794
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1795
+ org/jruby/RubyKernel.java:2086:in `send'
1796
+ actionpack (3.2.12) lib/abstract_controller/collector.rb:26:in `method_missing'
1797
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
1798
+ org/jruby/RubyKernel.java:2086:in `send'
1799
+
1800
+
1801
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (7.0ms)
1802
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1803
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.0ms)
1804
+
1805
+
1806
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:04:08 -0500
1807
+ Processing by TestController#show as
1808
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:04:08.932000', 'itemType: book', 'csf', '2013-02-27 21:04:08.932000')
1809
+ Completed 500 Internal Server Error in 293ms
1810
+
1811
+ SystemStackError (stack level too deep):
1812
+ app/controllers/test_controller.rb:7:in `show'
1813
+
1814
+
1815
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1816
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1817
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.0ms)
1818
+
1819
+
1820
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:04:43 -0500
1821
+ Processing by TestController#show as
1822
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:04:43.592000', 'itemType: book', 'csf', '2013-02-27 21:04:43.592000')
1823
+ Completed 500 Internal Server Error in 314ms
1824
+
1825
+ SystemStackError (stack level too deep):
1826
+ app/controllers/test_controller.rb:7:in `show'
1827
+
1828
+
1829
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1830
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1831
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.0ms)
1832
+
1833
+
1834
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:04:48 -0500
1835
+ Processing by TestController#show as
1836
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:04:48.025000', 'itemType: book', 'csf', '2013-02-27 21:04:48.025000')
1837
+ Completed 500 Internal Server Error in 332ms
1838
+
1839
+ SystemStackError (stack level too deep):
1840
+ app/controllers/test_controller.rb:7:in `show'
1841
+
1842
+
1843
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
1844
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1845
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
1846
+
1847
+
1848
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:04:54 -0500
1849
+ Processing by TestController#show as
1850
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:04:54.308000', 'itemType: book', 'csf', '2013-02-27 21:04:54.308000')
1851
+ Completed 500 Internal Server Error in 379ms
1852
+
1853
+ SystemStackError (stack level too deep):
1854
+ app/controllers/test_controller.rb:7:in `show'
1855
+
1856
+
1857
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.0ms)
1858
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
1859
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.0ms)
1860
+
1861
+
1862
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:05:12 -0500
1863
+ Processing by TestController#show as
1864
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:05:12.721000', 'itemType: book', 'csf', '2013-02-27 21:05:12.721000')
1865
+ Completed 406 Not Acceptable in 56ms (ActiveRecord: 3.0ms)
1866
+
1867
+
1868
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:05:16 -0500
1869
+ Processing by TestController#show as XML
1870
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:05:16.510000', 'itemType: book', 'csf', '2013-02-27 21:05:16.510000')
1871
+ Completed 200 OK in 87ms (Views: 67.0ms | ActiveRecord: 0.0ms)
1872
+
1873
+
1874
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:05:29 -0500
1875
+ Processing by TestController#show as XML
1876
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:05:29.751000', 'itemType: book', 'csf', '2013-02-27 21:05:29.751000')
1877
+ Completed 406 Not Acceptable in 37ms (ActiveRecord: 1.0ms)
1878
+
1879
+
1880
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:05:38 -0500
1881
+ Processing by TestController#show as XML
1882
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:05:38.811000', 'itemType: book', 'csf', '2013-02-27 21:05:38.811000')
1883
+ Completed 406 Not Acceptable in 85ms (ActiveRecord: 0.0ms)
1884
+
1885
+
1886
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:05:47 -0500
1887
+ Processing by TestController#show as XML
1888
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:05:47.316000', 'itemType: book', 'csf', '2013-02-27 21:05:47.316000')
1889
+ Completed 200 OK in 51ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1890
+
1891
+
1892
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:07:42 -0500
1893
+ Processing by TestController#show as XML
1894
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:07:42.444000', 'itemType: book', 'csf', '2013-02-27 21:07:42.444000')
1895
+ Completed 200 OK in 59ms (Views: 9.0ms | ActiveRecord: 0.0ms)
1896
+
1897
+
1898
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:08:46 -0500
1899
+ Processing by TestController#show as XML
1900
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:08:47.039000', 'itemType: book', 'csf', '2013-02-27 21:08:47.039000')
1901
+ Completed 200 OK in 52ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1902
+
1903
+
1904
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:08:49 -0500
1905
+ Processing by TestController#show as XML
1906
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:08:49.541000', 'itemType: book', 'csf', '2013-02-27 21:08:49.541000')
1907
+ Completed 200 OK in 50ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1908
+
1909
+
1910
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:09:00 -0500
1911
+ Processing by TestController#show as XML
1912
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:09:00.700000', 'itemType: book', 'csf', '2013-02-27 21:09:00.700000')
1913
+ Completed 200 OK in 54ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1914
+
1915
+
1916
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:09:11 -0500
1917
+ Processing by TestController#show as XML
1918
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:09:11.607000', 'itemType: book', 'csf', '2013-02-27 21:09:11.607000')
1919
+ Completed 200 OK in 46ms (Views: 9.0ms | ActiveRecord: 0.0ms)
1920
+
1921
+
1922
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:09:21 -0500
1923
+ Processing by TestController#show as XML
1924
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:09:21.611000', 'itemType: book', 'csf', '2013-02-27 21:09:21.611000')
1925
+ Completed 406 Not Acceptable in 32ms (ActiveRecord: 2.0ms)
1926
+
1927
+
1928
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:09:26 -0500
1929
+ Processing by TestController#show as XML
1930
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:09:26.482000', 'itemType: book', 'csf', '2013-02-27 21:09:26.482000')
1931
+ Completed 406 Not Acceptable in 13ms (ActiveRecord: 1.0ms)
1932
+
1933
+
1934
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:09:39 -0500
1935
+ Processing by TestController#show as XML
1936
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:09:39.604000', 'itemType: book', 'csf', '2013-02-27 21:09:39.604000')
1937
+ Completed 200 OK in 53ms (Views: 11.0ms | ActiveRecord: 0.0ms)
1938
+
1939
+
1940
+ Started GET "/test.xml" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:10:10 -0500
1941
+ Processing by TestController#show as XML
1942
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:10:10.073000', 'itemType: book', 'csf', '2013-02-27 21:10:10.073000')
1943
+ Completed 406 Not Acceptable in 29ms (ActiveRecord: 0.0ms)
1944
+
1945
+
1946
+ Started GET "/test.RIS" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:10:18 -0500
1947
+ Processing by TestController#show as RIS
1948
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:10:18.695000', 'itemType: book', 'csf', '2013-02-27 21:10:18.695000')
1949
+ Completed 500 Internal Server Error in 15ms
1950
+
1951
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:RIS], :handlers=>[:erb, :builder]}. Searched in:
1952
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
1953
+ ):
1954
+ app/controllers/test_controller.rb:8:in `show'
1955
+
1956
+
1957
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
1958
+
1959
+
1960
+ Started GET "/test.RIS" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:10:34 -0500
1961
+ Processing by TestController#show as RIS
1962
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:10:34.403000', 'itemType: book', 'csf', '2013-02-27 21:10:34.403000')
1963
+ Completed 500 Internal Server Error in 44ms
1964
+
1965
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:RIS], :handlers=>[:erb, :builder]}. Searched in:
1966
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
1967
+ ):
1968
+ app/controllers/test_controller.rb:7:in `show'
1969
+
1970
+
1971
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
1972
+
1973
+
1974
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:10:38 -0500
1975
+ Processing by TestController#show as
1976
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:10:38.978000', 'itemType: book', 'csf', '2013-02-27 21:10:38.978000')
1977
+ Completed 406 Not Acceptable in 29ms (ActiveRecord: 0.0ms)
1978
+
1979
+
1980
+ Started GET "/test.RIS" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:10:59 -0500
1981
+ Processing by TestController#show as RIS
1982
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:10:59.755000', 'itemType: book', 'csf', '2013-02-27 21:10:59.755000')
1983
+ Completed 500 Internal Server Error in 16ms
1984
+
1985
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:RIS], :handlers=>[:erb, :builder]}. Searched in:
1986
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
1987
+ ):
1988
+ app/controllers/test_controller.rb:7:in `show'
1989
+
1990
+
1991
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
1992
+
1993
+
1994
+ Started GET "/test.RIS" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:11:51 -0500
1995
+ Processing by TestController#show as RIS
1996
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:11:51.081000', 'itemType: book', 'csf', '2013-02-27 21:11:51.081000')
1997
+ Completed 500 Internal Server Error in 38ms
1998
+
1999
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:RIS], :handlers=>[:erb, :builder]}. Searched in:
2000
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2001
+ ):
2002
+ app/controllers/test_controller.rb:7:in `show'
2003
+
2004
+
2005
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (2.0ms)
2006
+ Connecting to database specified by database.yml
2007
+
2008
+
2009
+ Started GET "/test.RIS" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:13:40 -0500
2010
+ Processing by TestController#show as
2011
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:13:40.649000', 'itemType: book', 'csf', '2013-02-27 21:13:40.649000')
2012
+ Completed 406 Not Acceptable in 111ms (ActiveRecord: 1.0ms)
2013
+
2014
+
2015
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:13:44 -0500
2016
+ Processing by TestController#show as RIS
2017
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:13:44.367000', 'itemType: book', 'csf', '2013-02-27 21:13:44.367000')
2018
+ Rendered text template (1.0ms)
2019
+ Sent data 75.ris (3.0ms)
2020
+ Completed 200 OK in 75ms (Views: 43.0ms | ActiveRecord: 0.0ms)
2021
+
2022
+
2023
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:13:59 -0500
2024
+ Processing by TestController#show as BIBTEX
2025
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:13:59.990000', 'itemType: book', 'csf', '2013-02-27 21:13:59.990000')
2026
+ Rendered text template (0.0ms)
2027
+ Sent data 76.bib (2.0ms)
2028
+ Completed 200 OK in 31ms (Views: 9.0ms | ActiveRecord: 0.0ms)
2029
+
2030
+
2031
+ Started GET "/test.csf" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:14:12 -0500
2032
+ Processing by TestController#show as CSF
2033
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:14:12.608000', 'itemType: book', 'csf', '2013-02-27 21:14:12.608000')
2034
+ Completed 500 Internal Server Error in 17ms
2035
+
2036
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:csf], :handlers=>[:erb, :builder]}. Searched in:
2037
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2038
+ ):
2039
+ app/controllers/test_controller.rb:7:in `show'
2040
+
2041
+
2042
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (3.0ms)
2043
+ Connecting to database specified by database.yml
2044
+
2045
+
2046
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:16:42 -0500
2047
+ Processing by TestController#show as RIS
2048
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:16:42.958000', 'itemType: book', 'csf', '2013-02-27 21:16:42.958000')
2049
+ Rendered text template (0.0ms)
2050
+ Sent data 78.ris (5.0ms)
2051
+ Completed 200 OK in 191ms (Views: 49.0ms | ActiveRecord: 0.0ms)
2052
+ Connecting to database specified by database.yml
2053
+
2054
+
2055
+ Started GET "/test.csf" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:20:27 -0500
2056
+ Processing by TestController#show as CSF
2057
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:20:27.260000', 'itemType: book', 'csf', '2013-02-27 21:20:27.260000')
2058
+ Completed 500 Internal Server Error in 140ms
2059
+
2060
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:csf], :handlers=>[:erb, :builder]}. Searched in:
2061
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2062
+ ):
2063
+ app/controllers/test_controller.rb:7:in `show'
2064
+
2065
+
2066
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (3.0ms)
2067
+
2068
+
2069
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:20:31 -0500
2070
+ Processing by TestController#show as RIS
2071
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:20:31.340000', 'itemType: book', 'csf', '2013-02-27 21:20:31.340000')
2072
+ Rendered text template (0.0ms)
2073
+ Sent data 80.ris (4.0ms)
2074
+ Completed 200 OK in 60ms (Views: 44.0ms | ActiveRecord: 0.0ms)
2075
+
2076
+
2077
+ Started GET "/test.csf" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:20:43 -0500
2078
+ Processing by TestController#show as CSF
2079
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:20:43.999000', 'itemType: book', 'csf', '2013-02-27 21:20:43.999000')
2080
+ Completed 500 Internal Server Error in 17ms
2081
+
2082
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:csf], :handlers=>[:erb, :builder]}. Searched in:
2083
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2084
+ ):
2085
+ app/controllers/test_controller.rb:7:in `show'
2086
+
2087
+
2088
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
2089
+
2090
+
2091
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:20:47 -0500
2092
+ Processing by TestController#show as RIS
2093
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:20:47.258000', 'itemType: book', 'csf', '2013-02-27 21:20:47.258000')
2094
+ Rendered text template (0.0ms)
2095
+ Sent data 82.ris (1.0ms)
2096
+ Completed 200 OK in 24ms (Views: 7.0ms | ActiveRecord: 0.0ms)
2097
+ Connecting to database specified by database.yml
2098
+
2099
+
2100
+ Started GET "/test.json" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:25:28 -0500
2101
+ Processing by TestController#show as JSON
2102
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:25:28.756000', 'itemType: book', 'csf', '2013-02-27 21:25:28.756000')
2103
+ Completed 200 OK in 143ms (Views: 3.0ms | ActiveRecord: 0.0ms)
2104
+
2105
+
2106
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:25:39 -0500
2107
+ Processing by TestController#show as RIS
2108
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:25:39.306000', 'itemType: book', 'csf', '2013-02-27 21:25:39.306000')
2109
+ Rendered text template (0.0ms)
2110
+ Sent data 84.ris (3.0ms)
2111
+ Completed 200 OK in 62ms (Views: 45.0ms | ActiveRecord: 0.0ms)
2112
+
2113
+
2114
+ Started GET "/test.RIS" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:25:43 -0500
2115
+ Processing by TestController#show as
2116
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:25:43.218000', 'itemType: book', 'csf', '2013-02-27 21:25:43.218000')
2117
+ Completed 406 Not Acceptable in 17ms (ActiveRecord: 1.0ms)
2118
+
2119
+
2120
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:25:49 -0500
2121
+ Processing by TestController#show as BIBTEX
2122
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:25:49.493000', 'itemType: book', 'csf', '2013-02-27 21:25:49.493000')
2123
+ Rendered text template (1.0ms)
2124
+ Sent data 86.bib (2.0ms)
2125
+ Completed 200 OK in 27ms (Views: 9.0ms | ActiveRecord: 0.0ms)
2126
+ Connecting to database specified by database.yml
2127
+
2128
+
2129
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:27:25 -0500
2130
+ Processing by TestController#show as BIB
2131
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:27:25.459000', 'itemType: book', 'csf', '2013-02-27 21:27:25.459000')
2132
+ Completed 500 Internal Server Error in 134ms
2133
+
2134
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:bib], :handlers=>[:erb, :builder]}. Searched in:
2135
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2136
+ ):
2137
+ app/controllers/test_controller.rb:7:in `show'
2138
+
2139
+
2140
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (4.0ms)
2141
+ Connecting to database specified by database.yml
2142
+
2143
+
2144
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:31:35 -0500
2145
+ Processing by TestController#show as BIB
2146
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:31:35.284000', 'itemType: book', 'csf', '2013-02-27 21:31:35.284000')
2147
+ Completed 500 Internal Server Error in 134ms
2148
+
2149
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:bib], :handlers=>[:erb, :builder]}. Searched in:
2150
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2151
+ ):
2152
+ app/controllers/test_controller.rb:7:in `show'
2153
+
2154
+
2155
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (4.0ms)
2156
+ Connecting to database specified by database.yml
2157
+
2158
+
2159
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:34:13 -0500
2160
+ Processing by TestController#show as BIB
2161
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:34:13.394000', 'itemType: book', 'csf', '2013-02-27 21:34:13.394000')
2162
+ Completed 500 Internal Server Error in 131ms
2163
+
2164
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:bib], :handlers=>[:erb, :builder]}. Searched in:
2165
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2166
+ ):
2167
+ app/controllers/test_controller.rb:7:in `show'
2168
+
2169
+
2170
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (4.0ms)
2171
+
2172
+
2173
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:34:44 -0500
2174
+ Processing by TestController#show as BIBTEX
2175
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:34:44.292000', 'itemType: book', 'csf', '2013-02-27 21:34:44.292000')
2176
+ Completed 500 Internal Server Error in 61ms
2177
+
2178
+ NoMethodError (undefined method `content_type' for main:Object):
2179
+ app/controllers/test_controller.rb:7:in `show'
2180
+
2181
+
2182
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
2183
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
2184
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
2185
+ Connecting to database specified by database.yml
2186
+
2187
+
2188
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:35:33 -0500
2189
+ Processing by TestController#show as BIBTEX
2190
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:35:33.533000', 'itemType: book', 'csf', '2013-02-27 21:35:33.533000')
2191
+ Rendered text template (0.0ms)
2192
+ Sent data 91.bib (3.0ms)
2193
+ Completed 200 OK in 182ms (Views: 44.0ms | ActiveRecord: 0.0ms)
2194
+
2195
+ TypeError (can't dup Symbol):
2196
+ org/jruby/RubyKernel.java:1908:in `dup'
2197
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2198
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2199
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2200
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2201
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2202
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2203
+ org/jruby/RubyProc.java:249:in `call'
2204
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2205
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2206
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2207
+ org/jruby/RubyArray.java:1613:in `each'
2208
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2209
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2210
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2211
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2212
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2213
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2214
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2215
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2216
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2217
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2218
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2219
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2220
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2221
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2222
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1475286453__call__809481543__callbacks'
2223
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2224
+ org/jruby/RubyKernel.java:2086:in `send'
2225
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2226
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2227
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2228
+ org/jruby/RubyKernel.java:2086:in `send'
2229
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2230
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2231
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2232
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2233
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2234
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2235
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2236
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2237
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2238
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2239
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2240
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2241
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2242
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2243
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2244
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2245
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2246
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2247
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2248
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2249
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2250
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2251
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2252
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2253
+
2254
+
2255
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
2256
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
2257
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
2258
+
2259
+
2260
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:37:25 -0500
2261
+ Processing by TestController#show as BIB
2262
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:37:25.133000', 'itemType: book', 'csf', '2013-02-27 21:37:25.133000')
2263
+ Completed 500 Internal Server Error in 22ms
2264
+
2265
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:bib], :handlers=>[:erb, :builder]}. Searched in:
2266
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2267
+ ):
2268
+ app/controllers/test_controller.rb:7:in `show'
2269
+
2270
+
2271
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
2272
+
2273
+
2274
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:37:52 -0500
2275
+ Processing by TestController#show as BIB
2276
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:37:53.011000', 'itemType: book', 'csf', '2013-02-27 21:37:53.011000')
2277
+ Completed 500 Internal Server Error in 69ms
2278
+
2279
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:bib], :handlers=>[:erb, :builder]}. Searched in:
2280
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2281
+ ):
2282
+ app/controllers/test_controller.rb:7:in `show'
2283
+
2284
+
2285
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
2286
+
2287
+
2288
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:38:14 -0500
2289
+ Processing by TestController#show as BIB
2290
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:38:14.137000', 'itemType: book', 'csf', '2013-02-27 21:38:14.137000')
2291
+ Rendered text template (0.0ms)
2292
+ Sent data 94.bib (2.0ms)
2293
+ Completed 200 OK in 66ms (Views: 7.0ms | ActiveRecord: 0.0ms)
2294
+
2295
+ TypeError (can't dup Symbol):
2296
+ org/jruby/RubyKernel.java:1908:in `dup'
2297
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2298
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2299
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2300
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2301
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2302
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2303
+ org/jruby/RubyProc.java:249:in `call'
2304
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2305
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2306
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2307
+ org/jruby/RubyArray.java:1613:in `each'
2308
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2309
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2310
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2311
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2312
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2313
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2314
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2315
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2316
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2317
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2318
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2319
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2320
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2321
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2322
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1475286453__call__809481543__callbacks'
2323
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2324
+ org/jruby/RubyKernel.java:2086:in `send'
2325
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2326
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2327
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2328
+ org/jruby/RubyKernel.java:2086:in `send'
2329
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2330
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2331
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2332
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2333
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2334
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2335
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2336
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2337
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2338
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2339
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2340
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2341
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2342
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2343
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2344
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2345
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2346
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2347
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2348
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2349
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2350
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2351
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2352
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2353
+
2354
+
2355
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
2356
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
2357
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (21.0ms)
2358
+
2359
+
2360
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:38:19 -0500
2361
+ Processing by TestController#show as BIBTEX
2362
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:38:19.069000', 'itemType: book', 'csf', '2013-02-27 21:38:19.069000')
2363
+ Rendered text template (0.0ms)
2364
+ Sent data 95.bib (1.0ms)
2365
+ Completed 200 OK in 20ms (Views: 7.0ms | ActiveRecord: 0.0ms)
2366
+
2367
+ TypeError (can't dup Symbol):
2368
+ org/jruby/RubyKernel.java:1908:in `dup'
2369
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2370
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2371
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2372
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2373
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2374
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2375
+ org/jruby/RubyProc.java:249:in `call'
2376
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2377
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2378
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2379
+ org/jruby/RubyArray.java:1613:in `each'
2380
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2381
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2382
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2383
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2384
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2385
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2386
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2387
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2388
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2389
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2390
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2391
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2392
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2393
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2394
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1475286453__call__809481543__callbacks'
2395
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2396
+ org/jruby/RubyKernel.java:2086:in `send'
2397
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2398
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2399
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2400
+ org/jruby/RubyKernel.java:2086:in `send'
2401
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2402
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2403
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2404
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2405
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2406
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2407
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2408
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2409
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2410
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2411
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2412
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2413
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2414
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2415
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2416
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2417
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2418
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2419
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2420
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2421
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2422
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2423
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2424
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2425
+
2426
+
2427
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.0ms)
2428
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
2429
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.0ms)
2430
+
2431
+
2432
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:38:30 -0500
2433
+ Processing by TestController#show as BIBTEX
2434
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:38:30.860000', 'itemType: book', 'csf', '2013-02-27 21:38:30.860000')
2435
+ Rendered text template (0.0ms)
2436
+ Sent data 96.bib (2.0ms)
2437
+ Completed 200 OK in 22ms (Views: 8.0ms | ActiveRecord: 0.0ms)
2438
+
2439
+ TypeError (can't dup Symbol):
2440
+ org/jruby/RubyKernel.java:1908:in `dup'
2441
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2442
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2443
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2444
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2445
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2446
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2447
+ org/jruby/RubyProc.java:249:in `call'
2448
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2449
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2450
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2451
+ org/jruby/RubyArray.java:1613:in `each'
2452
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2453
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2454
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2455
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2456
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2457
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2458
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2459
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2460
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2461
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2462
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2463
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2464
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2465
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2466
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1475286453__call__809481543__callbacks'
2467
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2468
+ org/jruby/RubyKernel.java:2086:in `send'
2469
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2470
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2471
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2472
+ org/jruby/RubyKernel.java:2086:in `send'
2473
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2474
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2475
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2476
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2477
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2478
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2479
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2480
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2481
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2482
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2483
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2484
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2485
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2486
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2487
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2488
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2489
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2490
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2491
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2492
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2493
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2494
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2495
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2496
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2497
+
2498
+
2499
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
2500
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
2501
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.0ms)
2502
+ Connecting to database specified by database.yml
2503
+
2504
+
2505
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:38:51 -0500
2506
+ Processing by TestController#show as BIBTEX
2507
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:38:51.750000', 'itemType: book', 'csf', '2013-02-27 21:38:51.750000')
2508
+ Rendered text template (0.0ms)
2509
+ Sent data 97.bib (4.0ms)
2510
+ Completed 200 OK in 182ms (Views: 46.0ms | ActiveRecord: 0.0ms)
2511
+
2512
+ TypeError (can't dup Symbol):
2513
+ org/jruby/RubyKernel.java:1908:in `dup'
2514
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2515
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2516
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2517
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2518
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2519
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2520
+ org/jruby/RubyProc.java:249:in `call'
2521
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2522
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2523
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2524
+ org/jruby/RubyArray.java:1613:in `each'
2525
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2526
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2527
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2528
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2529
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2530
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2531
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2532
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2533
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2534
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2535
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2536
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2537
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2538
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2539
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1504489501__call__1089071001__callbacks'
2540
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2541
+ org/jruby/RubyKernel.java:2086:in `send'
2542
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2543
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2544
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2545
+ org/jruby/RubyKernel.java:2086:in `send'
2546
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2547
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2548
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2549
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2550
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2551
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2552
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2553
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2554
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2555
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2556
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2557
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2558
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2559
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2560
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2561
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2562
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2563
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2564
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2565
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2566
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2567
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2568
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2569
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2570
+
2571
+
2572
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
2573
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
2574
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
2575
+
2576
+
2577
+ Started GET "/test.ris" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:39:12 -0500
2578
+ Processing by TestController#show as RIS
2579
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:39:12.413000', 'itemType: book', 'csf', '2013-02-27 21:39:12.413000')
2580
+ Rendered text template (0.0ms)
2581
+ Sent data 98.ris (3.0ms)
2582
+ Completed 200 OK in 33ms (Views: 11.0ms | ActiveRecord: 0.0ms)
2583
+
2584
+
2585
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:39:15 -0500
2586
+ Processing by TestController#show as BIB
2587
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:39:15.579000', 'itemType: book', 'csf', '2013-02-27 21:39:15.579000')
2588
+ Completed 500 Internal Server Error in 29ms
2589
+
2590
+ ActionView::MissingTemplate (Missing template test/show, application/show with {:locale=>[:en], :formats=>[:bib], :handlers=>[:erb, :builder]}. Searched in:
2591
+ * "/Users/hannan/Documents/workspace/aac/acts_as_citable/test/dummy/app/views"
2592
+ ):
2593
+ app/controllers/test_controller.rb:7:in `show'
2594
+
2595
+
2596
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.0ms)
2597
+
2598
+
2599
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:39:20 -0500
2600
+ Processing by TestController#show as BIBTEX
2601
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:39:20.316000', 'itemType: book', 'csf', '2013-02-27 21:39:20.316000')
2602
+ Rendered text template (0.0ms)
2603
+ Sent data 100.bib (2.0ms)
2604
+ Completed 200 OK in 22ms (Views: 5.0ms | ActiveRecord: 0.0ms)
2605
+
2606
+ TypeError (can't dup Symbol):
2607
+ org/jruby/RubyKernel.java:1908:in `dup'
2608
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2609
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2610
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2611
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2612
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2613
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2614
+ org/jruby/RubyProc.java:249:in `call'
2615
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2616
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2617
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2618
+ org/jruby/RubyArray.java:1613:in `each'
2619
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2620
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2621
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2622
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2623
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2624
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2625
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2626
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2627
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2628
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2629
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2630
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2631
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2632
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2633
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1504489501__call__1089071001__callbacks'
2634
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2635
+ org/jruby/RubyKernel.java:2086:in `send'
2636
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2637
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2638
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2639
+ org/jruby/RubyKernel.java:2086:in `send'
2640
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2641
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2642
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2643
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2644
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2645
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2646
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2647
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2648
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2649
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2650
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2651
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2652
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2653
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2654
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2655
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2656
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2657
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2658
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2659
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2660
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2661
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2662
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2663
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2664
+
2665
+
2666
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
2667
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
2668
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (23.0ms)
2669
+ Connecting to database specified by database.yml
2670
+
2671
+
2672
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:40:23 -0500
2673
+ Processing by TestController#show as BIBTEX
2674
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:40:24.068000', 'itemType: book', 'csf', '2013-02-27 21:40:24.068000')
2675
+ Rendered text template (0.0ms)
2676
+ Sent data 101.bib (5.0ms)
2677
+ Completed 200 OK in 176ms (Views: 50.0ms | ActiveRecord: 0.0ms)
2678
+
2679
+ TypeError (can't dup Symbol):
2680
+ org/jruby/RubyKernel.java:1908:in `dup'
2681
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2682
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2683
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2684
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2685
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2686
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2687
+ org/jruby/RubyProc.java:249:in `call'
2688
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2689
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2690
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2691
+ org/jruby/RubyArray.java:1613:in `each'
2692
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2693
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2694
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2695
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2696
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2697
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2698
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2699
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2700
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2701
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2702
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2703
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2704
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2705
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2706
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__482436186__call__1450117474__callbacks'
2707
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2708
+ org/jruby/RubyKernel.java:2086:in `send'
2709
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2710
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2711
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2712
+ org/jruby/RubyKernel.java:2086:in `send'
2713
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2714
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2715
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2716
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2717
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2718
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2719
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2720
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2721
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2722
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2723
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2724
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2725
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2726
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2727
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2728
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2729
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2730
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2731
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2732
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2733
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2734
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2735
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2736
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2737
+
2738
+
2739
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
2740
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
2741
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms)
2742
+ Connecting to database specified by database.yml
2743
+
2744
+
2745
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:41:06 -0500
2746
+ Processing by TestController#show as BIBTEX
2747
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:41:06.486000', 'itemType: book', 'csf', '2013-02-27 21:41:06.486000')
2748
+ Rendered text template (0.0ms)
2749
+ Sent data 102.bib (4.0ms)
2750
+ Completed 200 OK in 183ms (Views: 49.0ms | ActiveRecord: 0.0ms)
2751
+
2752
+ TypeError (can't dup Symbol):
2753
+ org/jruby/RubyKernel.java:1908:in `dup'
2754
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2755
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2756
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2757
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2758
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2759
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2760
+ org/jruby/RubyProc.java:249:in `call'
2761
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2762
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2763
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2764
+ org/jruby/RubyArray.java:1613:in `each'
2765
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2766
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2767
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2768
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2769
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2770
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2771
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2772
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2773
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2774
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2775
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2776
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2777
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2778
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2779
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1678341129__call__674267194__callbacks'
2780
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2781
+ org/jruby/RubyKernel.java:2086:in `send'
2782
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2783
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2784
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2785
+ org/jruby/RubyKernel.java:2086:in `send'
2786
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2787
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2788
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2789
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2790
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2791
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2792
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2793
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2794
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2795
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2796
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2797
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2798
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2799
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2800
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2801
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2802
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2803
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2804
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2805
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2806
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2807
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2808
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2809
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2810
+
2811
+
2812
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
2813
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
2814
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms)
2815
+
2816
+
2817
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:41:33 -0500
2818
+ Processing by TestController#show as BIBTEX
2819
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:41:33.388000', 'itemType: book', 'csf', '2013-02-27 21:41:33.388000')
2820
+ Rendered text template (0.0ms)
2821
+ Sent data 103.bib (2.0ms)
2822
+ Completed 200 OK in 60ms (Views: 7.0ms | ActiveRecord: 0.0ms)
2823
+
2824
+ TypeError (can't dup Symbol):
2825
+ org/jruby/RubyKernel.java:1908:in `dup'
2826
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2827
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2828
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2829
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2830
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2831
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2832
+ org/jruby/RubyProc.java:249:in `call'
2833
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2834
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2835
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2836
+ org/jruby/RubyArray.java:1613:in `each'
2837
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2838
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2839
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2840
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2841
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2842
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2843
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2844
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2845
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2846
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2847
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2848
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2849
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2850
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2851
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1678341129__call__674267194__callbacks'
2852
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2853
+ org/jruby/RubyKernel.java:2086:in `send'
2854
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2855
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2856
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2857
+ org/jruby/RubyKernel.java:2086:in `send'
2858
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2859
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2860
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2861
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2862
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2863
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2864
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2865
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2866
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2867
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2868
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2869
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2870
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2871
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2872
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2873
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2874
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2875
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2876
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2877
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2878
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2879
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2880
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2881
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2882
+
2883
+
2884
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
2885
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
2886
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.0ms)
2887
+
2888
+
2889
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:41:34 -0500
2890
+ Processing by TestController#show as BIBTEX
2891
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:41:35.008000', 'itemType: book', 'csf', '2013-02-27 21:41:35.008000')
2892
+ Rendered text template (0.0ms)
2893
+ Sent data 104.bib (1.0ms)
2894
+ Completed 200 OK in 29ms (Views: 8.0ms | ActiveRecord: 0.0ms)
2895
+
2896
+ TypeError (can't dup Symbol):
2897
+ org/jruby/RubyKernel.java:1908:in `dup'
2898
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2899
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2900
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2901
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2902
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2903
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2904
+ org/jruby/RubyProc.java:249:in `call'
2905
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2906
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2907
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2908
+ org/jruby/RubyArray.java:1613:in `each'
2909
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2910
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2911
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2912
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2913
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2914
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2915
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2916
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2917
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2918
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2919
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2920
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2921
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2922
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2923
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1678341129__call__674267194__callbacks'
2924
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2925
+ org/jruby/RubyKernel.java:2086:in `send'
2926
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
2927
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
2928
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2929
+ org/jruby/RubyKernel.java:2086:in `send'
2930
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
2931
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2932
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2933
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2934
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2935
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2936
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
2937
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2938
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
2939
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
2940
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2941
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
2942
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
2943
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2944
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
2945
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
2946
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
2947
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
2948
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
2949
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
2950
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
2951
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
2952
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
2953
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
2954
+
2955
+
2956
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
2957
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
2958
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
2959
+ Connecting to database specified by database.yml
2960
+
2961
+
2962
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:42:00 -0500
2963
+ Processing by TestController#show as BIBTEX
2964
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:42:00.547000', 'itemType: book', 'csf', '2013-02-27 21:42:00.547000')
2965
+ Rendered text template (1.0ms)
2966
+ Sent data 105.bib (5.0ms)
2967
+ Completed 200 OK in 176ms (Views: 46.0ms | ActiveRecord: 0.0ms)
2968
+
2969
+ TypeError (can't dup Symbol):
2970
+ org/jruby/RubyKernel.java:1908:in `dup'
2971
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
2972
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
2973
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
2974
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
2975
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2976
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
2977
+ org/jruby/RubyProc.java:249:in `call'
2978
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
2979
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
2980
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
2981
+ org/jruby/RubyArray.java:1613:in `each'
2982
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
2983
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
2984
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2985
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
2986
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
2987
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
2988
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2989
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
2990
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
2991
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
2992
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
2993
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
2994
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
2995
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
2996
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1916344210__call__202351093__callbacks'
2997
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
2998
+ org/jruby/RubyKernel.java:2086:in `send'
2999
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
3000
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
3001
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
3002
+ org/jruby/RubyKernel.java:2086:in `send'
3003
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
3004
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3005
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3006
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3007
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3008
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3009
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
3010
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
3011
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
3012
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
3013
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3014
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
3015
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
3016
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3017
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
3018
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
3019
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
3020
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
3021
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
3022
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
3023
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
3024
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
3025
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
3026
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
3027
+
3028
+
3029
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.0ms)
3030
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
3031
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.0ms)
3032
+
3033
+
3034
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:42:14 -0500
3035
+ Processing by TestController#show as BIBTEX
3036
+ SQL (1.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:42:14.242000', 'itemType: book', 'csf', '2013-02-27 21:42:14.242000')
3037
+ Rendered text template (0.0ms)
3038
+ Sent data 106.bib (2.0ms)
3039
+ Completed 200 OK in 35ms (Views: 7.0ms | ActiveRecord: 0.0ms)
3040
+
3041
+ TypeError (can't dup Symbol):
3042
+ org/jruby/RubyKernel.java:1908:in `dup'
3043
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:200:in `assign_default_content_type_and_charset!'
3044
+ actionpack (3.2.12) lib/action_dispatch/http/response.rb:160:in `to_a'
3045
+ actionpack (3.2.12) lib/action_controller/metal.rb:208:in `to_a'
3046
+ actionpack (3.2.12) lib/action_controller/metal.rb:204:in `dispatch'
3047
+ actionpack (3.2.12) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3048
+ actionpack (3.2.12) lib/action_controller/metal.rb:246:in `action'
3049
+ org/jruby/RubyProc.java:249:in `call'
3050
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
3051
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:36:in `call'
3052
+ journey (1.0.4) lib/journey/router.rb:68:in `call'
3053
+ org/jruby/RubyArray.java:1613:in `each'
3054
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
3055
+ actionpack (3.2.12) lib/action_dispatch/routing/route_set.rb:601:in `call'
3056
+ actionpack (3.2.12) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3057
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
3058
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
3059
+ actionpack (3.2.12) lib/action_dispatch/middleware/head.rb:14:in `call'
3060
+ actionpack (3.2.12) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3061
+ actionpack (3.2.12) lib/action_dispatch/middleware/flash.rb:242:in `call'
3062
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
3063
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
3064
+ actionpack (3.2.12) lib/action_dispatch/middleware/cookies.rb:341:in `call'
3065
+ activerecord (3.2.12) lib/active_record/query_cache.rb:64:in `call'
3066
+ activerecord (3.2.12) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
3067
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:28:in `call'
3068
+ activesupport (3.2.12) lib/active_support/callbacks.rb:408:in `_run__1916344210__call__202351093__callbacks'
3069
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
3070
+ org/jruby/RubyKernel.java:2086:in `send'
3071
+ activesupport (3.2.12) lib/active_support/callbacks.rb:405:in `__run_callback'
3072
+ activesupport (3.2.12) lib/active_support/callbacks.rb:390:in `_run_call_callbacks'
3073
+ org/jruby/RubyBasicObject.java:1659:in `__send__'
3074
+ org/jruby/RubyKernel.java:2086:in `send'
3075
+ activesupport (3.2.12) lib/active_support/callbacks.rb:81:in `run_callbacks'
3076
+ actionpack (3.2.12) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3077
+ actionpack (3.2.12) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3078
+ actionpack (3.2.12) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3079
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3080
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3081
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
3082
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
3083
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
3084
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
3085
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3086
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
3087
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
3088
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3089
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
3090
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
3091
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
3092
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
3093
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
3094
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
3095
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
3096
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:138:in `service'
3097
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/httpserver.rb:94:in `run'
3098
+ /Users/hannan/.rvm/rubies/jruby-1.7.2/lib/ruby/1.9/webrick/server.rb:191:in `start_thread'
3099
+
3100
+
3101
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
3102
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
3103
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.0ms)
3104
+ Connecting to database specified by database.yml
3105
+
3106
+
3107
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:42:33 -0500
3108
+ Processing by TestController#show as BIBTEX
3109
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:42:34.203000', 'itemType: book', 'csf', '2013-02-27 21:42:34.203000')
3110
+ Rendered text template (0.0ms)
3111
+ Sent data 107.bib (4.0ms)
3112
+ Completed 200 OK in 174ms (Views: 46.0ms | ActiveRecord: 0.0ms)
3113
+ Connecting to database specified by database.yml
3114
+
3115
+
3116
+ Started GET "/test.bibtex" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:45:14 -0500
3117
+ Processing by TestController#show as BIBTEX
3118
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:45:15.004000', 'itemType: book', 'csf', '2013-02-27 21:45:15.004000')
3119
+ Rendered text template (0.0ms)
3120
+ Sent data 108.bib (4.0ms)
3121
+ Completed 200 OK in 177ms (Views: 45.0ms | ActiveRecord: 0.0ms)
3122
+
3123
+
3124
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:45:17 -0500
3125
+ Processing by TestController#show as
3126
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:45:17.780000', 'itemType: book', 'csf', '2013-02-27 21:45:17.780000')
3127
+ Completed 406 Not Acceptable in 15ms (ActiveRecord: 0.0ms)
3128
+
3129
+
3130
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:45:44 -0500
3131
+ Processing by TestController#show as
3132
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:45:44.733000', 'itemType: book', 'csf', '2013-02-27 21:45:44.733000')
3133
+ Completed 500 Internal Server Error in 66ms
3134
+
3135
+ NameError (uninitialized constant Mime::BIB):
3136
+ app/controllers/test_controller.rb:7:in `show'
3137
+
3138
+
3139
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_trace.erb (5.0ms)
3140
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.0ms)
3141
+ Rendered /Users/hannan/.rvm/gems/jruby-1.7.2/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (22.0ms)
3142
+ Connecting to database specified by database.yml
3143
+
3144
+
3145
+ Started GET "/test.bib" for 0:0:0:0:0:0:0:1%0 at 2013-02-27 16:46:47 -0500
3146
+ Processing by TestController#show as BIBTEX
3147
+ SQL (0.0ms) INSERT INTO "records" ("created_at", "data", "format", "updated_at") VALUES ('2013-02-27 21:46:47.332000', 'itemType: book', 'csf', '2013-02-27 21:46:47.332000')
3148
+ Rendered text template (0.0ms)
3149
+ Sent data 111.bib (4.0ms)
3150
+ Completed 200 OK in 190ms (Views: 48.0ms | ActiveRecord: 0.0ms)