importable 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/importable/application.js +7 -0
- data/app/assets/javascripts/importable/spreadsheets.js +2 -0
- data/app/assets/stylesheets/importable/application.css +7 -0
- data/app/assets/stylesheets/importable/spreadsheets.css +4 -0
- data/app/controllers/importable/application_controller.rb +4 -0
- data/app/controllers/importable/spreadsheets_controller.rb +74 -0
- data/app/models/importable/spreadsheet.rb +88 -0
- data/app/views/importable/spreadsheets/_actions.erb +6 -0
- data/app/views/importable/spreadsheets/_choose_worksheet_step.erb +23 -0
- data/app/views/importable/spreadsheets/_errors.erb +11 -0
- data/app/views/importable/spreadsheets/_form.html.erb +1 -0
- data/app/views/importable/spreadsheets/_upload_file_step.erb +12 -0
- data/app/views/importable/spreadsheets/new.html.erb +3 -0
- data/app/views/importable/spreadsheets/show.html.erb +3 -0
- data/config/routes.rb +16 -0
- data/db/development.sqlite3 +0 -0
- data/db/migrate/20110915001957_create_importable_spreadsheets.rb +10 -0
- data/lib/importable/engine.rb +5 -0
- data/lib/importable/exceptions.rb +3 -0
- data/lib/importable/mapper.rb +40 -0
- data/lib/importable/multi_step/import_helpers.rb +39 -0
- data/lib/importable/uploader.rb +13 -0
- data/lib/importable/validator.rb +16 -0
- data/lib/importable/version.rb +3 -0
- data/lib/importable.rb +12 -0
- data/lib/tasks/importable_tasks.rake +0 -0
- data/spec/acceptance/import_spreadsheet_spec.rb +33 -0
- data/spec/controllers/importable/spreadsheets_controller_spec.rb +152 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +7 -0
- data/spec/dummy/app/assets/stylesheets/application.css +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/imports/foo_mapper.rb +5 -0
- data/spec/dummy/app/imports/foo_required_field_mapper.rb +5 -0
- data/spec/dummy/app/imports/plural_widgets_mapper.rb +5 -0
- data/spec/dummy/app/imports/singular_widget_mapper.rb +5 -0
- data/spec/dummy/app/models/foo.rb +2 -0
- data/spec/dummy/app/models/foo_required_field.rb +3 -0
- data/spec/dummy/app/views/layouts/importable/application.html.erb +18 -0
- data/spec/dummy/config/application.rb +45 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +11 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +60 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20110913175340_create_foo_required_fields.rb +10 -0
- data/spec/dummy/db/migrate/20110913175348_create_foos.rb +20 -0
- data/spec/dummy/db/schema.rb +45 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1440 -0
- data/spec/dummy/log/test.log +12899 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/tmp/cache/assets/C84/C40/sprockets%2F7f0912160518f10045d9e488fc7436af +0 -0
- data/spec/dummy/tmp/cache/assets/C92/520/sprockets%2F22333678e07cb97428c92fe9a9f33283 +0 -0
- data/spec/dummy/tmp/cache/assets/CAD/170/sprockets%2F96fb203c710450777e6c21c337e5a9d3 +0 -0
- data/spec/dummy/tmp/cache/assets/CC8/800/sprockets%2F804f348fd27bfb7555b2e9977494612e +0 -0
- data/spec/dummy/tmp/cache/assets/CEC/F40/sprockets%2Feef825d9227d8044ea22a9ce75328574 +0 -0
- data/spec/dummy/tmp/cache/assets/D0F/F30/sprockets%2F1c0c77bdf759cb307e0d9a071367476b +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D4D/A30/sprockets%2F256edbd7ad8e5d6e144e648e82150b89 +0 -0
- data/spec/dummy/tmp/cache/assets/D4F/9D0/sprockets%2Fd1cf18a7bc4837a9f12a55e76608f79e +0 -0
- data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
- data/spec/dummy/tmp/cache/assets/D7B/2D0/sprockets%2F67457fb6359b5cc7faf0ad1e432996db +0 -0
- data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -0
- data/spec/dummy/tmp/cache/assets/DAC/950/sprockets%2Fbc53a3fdde9e5350798e72aa7f78ab28 +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/capybara/capybara-201109142003362645406331.html +14 -0
- data/spec/dummy/tmp/capybara/capybara-201109142004009667888038.html +14 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/503/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/504/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/505/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/506/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/507/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/508/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/509/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/510/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/511/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/512/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/513/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/514/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/515/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/516/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/517/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/518/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/519/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/520/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/521/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/522/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/523/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/524/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/525/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/526/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/527/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/528/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/529/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/530/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/531/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/532/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/533/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/534/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/535/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/536/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/537/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/538/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/539/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/540/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/541/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/542/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/543/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/544/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/545/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/546/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/547/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/548/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/549/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/550/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/551/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/552/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/553/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/554/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/555/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/556/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/557/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/558/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/559/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/560/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/561/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/562/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/563/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/564/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/565/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/566/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/567/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/568/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/569/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/570/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/571/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/572/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/573/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/574/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/575/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/576/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/577/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/578/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/579/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/580/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/581/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/582/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/583/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/584/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/585/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/586/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/587/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/588/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/589/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/590/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/591/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/592/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/593/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/594/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/595/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/596/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/597/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/598/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/599/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/600/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/601/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/602/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/603/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/604/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/605/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/606/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/607/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/608/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/609/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/610/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/611/foo_single_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/612/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/613/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/614/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/615/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/616/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/617/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/618/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/619/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/620/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/621/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/622/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/623/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/624/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/625/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/626/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/627/foo_multi_worksheet.xlsx +0 -0
- data/spec/dummy/uploads/importable/spreadsheet/file/foo/628/foo_multi_worksheet.xlsx +0 -0
- data/spec/lib/mapper_spec.rb +70 -0
- data/spec/lib/multi_step/import_helpers_spec.rb +94 -0
- data/spec/lib/uploader_spec.rb +28 -0
- data/spec/lib/validator_spec.rb +29 -0
- data/spec/models/spreadsheet_spec.rb +149 -0
- data/spec/spec_helper.rb +20 -0
- data/spec/support/foo_multi_worksheet.xls +0 -0
- data/spec/support/foo_multi_worksheet.xlsx +0 -0
- data/spec/support/foo_required_field_invalid.xlsx +0 -0
- data/spec/support/foo_required_field_valid.xlsx +0 -0
- data/spec/support/foo_single_worksheet.xls +0 -0
- data/spec/support/foo_single_worksheet.xlsx +0 -0
- data/spec/support/text.txt +1 -0
- metadata +584 -0
@@ -0,0 +1,1440 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2011-09-14 17:59:31 -0400
|
4
|
+
|
5
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
6
|
+
|
7
|
+
|
8
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (9.4ms)
|
9
|
+
|
10
|
+
|
11
|
+
Started GET "/spreadsheets/" for 127.0.0.1 at 2011-09-14 17:59:40 -0400
|
12
|
+
|
13
|
+
ActionController::RoutingError (No route matches [GET] "/spreadsheets"):
|
14
|
+
|
15
|
+
|
16
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
17
|
+
|
18
|
+
|
19
|
+
Started GET "/spreadsheets" for 127.0.0.1 at 2011-09-14 17:59:44 -0400
|
20
|
+
|
21
|
+
ActionController::RoutingError (No route matches [GET] "/spreadsheets"):
|
22
|
+
|
23
|
+
|
24
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
25
|
+
|
26
|
+
|
27
|
+
Started GET "/spreadsheets/new" for 127.0.0.1 at 2011-09-14 17:59:54 -0400
|
28
|
+
|
29
|
+
ActionController::RoutingError (No route matches [GET] "/spreadsheets/new"):
|
30
|
+
|
31
|
+
|
32
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
33
|
+
|
34
|
+
|
35
|
+
Started GET "/spreadsheets" for 127.0.0.1 at 2011-09-14 17:59:57 -0400
|
36
|
+
|
37
|
+
ActionController::RoutingError (No route matches [GET] "/spreadsheets"):
|
38
|
+
|
39
|
+
|
40
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
41
|
+
|
42
|
+
|
43
|
+
Started GET "/spreadsheets" for 127.0.0.1 at 2011-09-14 18:00:47 -0400
|
44
|
+
|
45
|
+
ActionController::RoutingError (No route matches [GET] "/spreadsheets"):
|
46
|
+
|
47
|
+
|
48
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
49
|
+
|
50
|
+
|
51
|
+
Started GET "/importable/spreadsheets/new" for 127.0.0.1 at 2011-09-14 19:06:51 -0400
|
52
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
53
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (9.3ms)
|
54
|
+
Compiled (2ms) (pid 22879)
|
55
|
+
Compiled (0ms) (pid 22879)
|
56
|
+
Completed 200 OK in 81ms (Views: 80.3ms | ActiveRecord: 0.0ms)
|
57
|
+
|
58
|
+
|
59
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:06:51 -0400
|
60
|
+
Served asset /importable/application.css - 200 OK (0ms)
|
61
|
+
|
62
|
+
|
63
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:06:51 -0400
|
64
|
+
Served asset /importable/spreadsheets.css - 200 OK (2ms)
|
65
|
+
|
66
|
+
|
67
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:06:51 -0400
|
68
|
+
Served asset /.js - 404 Not Found (1ms)
|
69
|
+
|
70
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
71
|
+
|
72
|
+
|
73
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
74
|
+
|
75
|
+
|
76
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:06:51 -0400
|
77
|
+
Served asset /importable/spreadsheets.js - 200 OK (2ms)
|
78
|
+
|
79
|
+
|
80
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:06:51 -0400
|
81
|
+
Served asset /importable/application.js - 200 OK (0ms)
|
82
|
+
|
83
|
+
|
84
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:06:51 -0400
|
85
|
+
Served asset /.js - 404 Not Found (1ms)
|
86
|
+
|
87
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
88
|
+
|
89
|
+
|
90
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
91
|
+
|
92
|
+
|
93
|
+
Started GET "/importable/spreadsheets/ne" for 127.0.0.1 at 2011-09-14 19:07:08 -0400
|
94
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
95
|
+
Parameters: {"id"=>"ne"}
|
96
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.6ms)
|
97
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
98
|
+
|
99
|
+
|
100
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:07:08 -0400
|
101
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
102
|
+
|
103
|
+
|
104
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:07:08 -0400
|
105
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
106
|
+
|
107
|
+
|
108
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:08 -0400
|
109
|
+
Served asset /.js - 404 Not Found (6ms)
|
110
|
+
|
111
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
112
|
+
|
113
|
+
|
114
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (24.9ms)
|
115
|
+
|
116
|
+
|
117
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:08 -0400
|
118
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
119
|
+
|
120
|
+
|
121
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:08 -0400
|
122
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
123
|
+
|
124
|
+
|
125
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:08 -0400
|
126
|
+
Served asset /.js - 404 Not Found (1ms)
|
127
|
+
|
128
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
129
|
+
|
130
|
+
|
131
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
132
|
+
|
133
|
+
|
134
|
+
Started GET "/importable/spreadsheets/new" for 127.0.0.1 at 2011-09-14 19:07:12 -0400
|
135
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
136
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
137
|
+
Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
138
|
+
|
139
|
+
|
140
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:07:12 -0400
|
141
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
142
|
+
|
143
|
+
|
144
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:07:12 -0400
|
145
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
146
|
+
|
147
|
+
|
148
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:12 -0400
|
149
|
+
Served asset /.js - 404 Not Found (1ms)
|
150
|
+
|
151
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
152
|
+
|
153
|
+
|
154
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
155
|
+
|
156
|
+
|
157
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:12 -0400
|
158
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
159
|
+
|
160
|
+
|
161
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:12 -0400
|
162
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
163
|
+
|
164
|
+
|
165
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:12 -0400
|
166
|
+
Served asset /.js - 404 Not Found (1ms)
|
167
|
+
|
168
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
169
|
+
|
170
|
+
|
171
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
172
|
+
|
173
|
+
|
174
|
+
Started GET "/imortable/spreadsheets/new" for 127.0.0.1 at 2011-09-14 19:07:19 -0400
|
175
|
+
|
176
|
+
ActionController::RoutingError (No route matches [GET] "/imortable/spreadsheets/new"):
|
177
|
+
|
178
|
+
|
179
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
180
|
+
|
181
|
+
|
182
|
+
Started GET "/importable/spreadsheets/new" for 127.0.0.1 at 2011-09-14 19:07:23 -0400
|
183
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
184
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
185
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
186
|
+
|
187
|
+
|
188
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:07:23 -0400
|
189
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
190
|
+
|
191
|
+
|
192
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:07:23 -0400
|
193
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
194
|
+
|
195
|
+
|
196
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:23 -0400
|
197
|
+
Served asset /.js - 404 Not Found (1ms)
|
198
|
+
|
199
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
200
|
+
|
201
|
+
|
202
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
203
|
+
|
204
|
+
|
205
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:23 -0400
|
206
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
207
|
+
|
208
|
+
|
209
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:23 -0400
|
210
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
211
|
+
|
212
|
+
|
213
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:07:23 -0400
|
214
|
+
Served asset /.js - 404 Not Found (1ms)
|
215
|
+
|
216
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
217
|
+
|
218
|
+
|
219
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
220
|
+
|
221
|
+
|
222
|
+
Started GET "/importable/spreadsheets/new" for 127.0.0.1 at 2011-09-14 19:58:15 -0400
|
223
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
224
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
225
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
226
|
+
|
227
|
+
|
228
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:15 -0400
|
229
|
+
Served asset /importable/application.css - 200 OK (0ms)
|
230
|
+
|
231
|
+
|
232
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:15 -0400
|
233
|
+
Served asset /importable/spreadsheets.css - 200 OK (0ms)
|
234
|
+
|
235
|
+
|
236
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:15 -0400
|
237
|
+
Served asset /.js - 404 Not Found (1ms)
|
238
|
+
|
239
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
240
|
+
|
241
|
+
|
242
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
243
|
+
|
244
|
+
|
245
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:15 -0400
|
246
|
+
Served asset /importable/spreadsheets.js - 200 OK (0ms)
|
247
|
+
|
248
|
+
|
249
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:15 -0400
|
250
|
+
Served asset /importable/application.js - 200 OK (0ms)
|
251
|
+
|
252
|
+
|
253
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:15 -0400
|
254
|
+
Served asset /.js - 404 Not Found (1ms)
|
255
|
+
|
256
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
257
|
+
|
258
|
+
|
259
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
260
|
+
|
261
|
+
|
262
|
+
Started GET "/importable/spreadsheets/new" for 127.0.0.1 at 2011-09-14 19:58:16 -0400
|
263
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
264
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
265
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
266
|
+
|
267
|
+
|
268
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:16 -0400
|
269
|
+
Served asset /importable/application.css - 200 OK (0ms)
|
270
|
+
|
271
|
+
|
272
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:16 -0400
|
273
|
+
Served asset /importable/spreadsheets.css - 200 OK (0ms)
|
274
|
+
|
275
|
+
|
276
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:16 -0400
|
277
|
+
Served asset /.js - 404 Not Found (1ms)
|
278
|
+
|
279
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
280
|
+
|
281
|
+
|
282
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
283
|
+
|
284
|
+
|
285
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:16 -0400
|
286
|
+
Served asset /importable/spreadsheets.js - 200 OK (0ms)
|
287
|
+
|
288
|
+
|
289
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:16 -0400
|
290
|
+
Served asset /importable/application.js - 200 OK (0ms)
|
291
|
+
|
292
|
+
|
293
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:16 -0400
|
294
|
+
Served asset /.js - 404 Not Found (2ms)
|
295
|
+
|
296
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
297
|
+
|
298
|
+
|
299
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
300
|
+
|
301
|
+
|
302
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:58:37 -0400
|
303
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
304
|
+
Parameters: {"type"=>"foo"}
|
305
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
306
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
307
|
+
|
308
|
+
|
309
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:37 -0400
|
310
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
311
|
+
|
312
|
+
|
313
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:37 -0400
|
314
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
315
|
+
|
316
|
+
|
317
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:37 -0400
|
318
|
+
Served asset /.js - 404 Not Found (1ms)
|
319
|
+
|
320
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
321
|
+
|
322
|
+
|
323
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
324
|
+
|
325
|
+
|
326
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:37 -0400
|
327
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
328
|
+
|
329
|
+
|
330
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:37 -0400
|
331
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
332
|
+
|
333
|
+
|
334
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:38 -0400
|
335
|
+
Served asset /.js - 404 Not Found (5ms)
|
336
|
+
|
337
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
338
|
+
|
339
|
+
|
340
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
341
|
+
|
342
|
+
|
343
|
+
Started GET "/importable/spreadsheets/foo/nw" for 127.0.0.1 at 2011-09-14 19:58:40 -0400
|
344
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
345
|
+
Parameters: {"type"=>"foo", "id"=>"nw"}
|
346
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.0ms)
|
347
|
+
Completed 200 OK in 45ms (Views: 45.2ms | ActiveRecord: 0.0ms)
|
348
|
+
|
349
|
+
|
350
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:40 -0400
|
351
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
352
|
+
|
353
|
+
|
354
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:40 -0400
|
355
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
356
|
+
|
357
|
+
|
358
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:40 -0400
|
359
|
+
Served asset /.js - 404 Not Found (2ms)
|
360
|
+
|
361
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
362
|
+
|
363
|
+
|
364
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
365
|
+
|
366
|
+
|
367
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:40 -0400
|
368
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
369
|
+
|
370
|
+
|
371
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:40 -0400
|
372
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
373
|
+
|
374
|
+
|
375
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:40 -0400
|
376
|
+
Served asset /.js - 404 Not Found (1ms)
|
377
|
+
|
378
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
379
|
+
|
380
|
+
|
381
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
382
|
+
|
383
|
+
|
384
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:58:42 -0400
|
385
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
386
|
+
Parameters: {"type"=>"foo"}
|
387
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
388
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
389
|
+
|
390
|
+
|
391
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:42 -0400
|
392
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
393
|
+
|
394
|
+
|
395
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:42 -0400
|
396
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (2ms)
|
397
|
+
|
398
|
+
|
399
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:42 -0400
|
400
|
+
Served asset /.js - 404 Not Found (1ms)
|
401
|
+
|
402
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
403
|
+
|
404
|
+
|
405
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
406
|
+
|
407
|
+
|
408
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:42 -0400
|
409
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
410
|
+
|
411
|
+
|
412
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:42 -0400
|
413
|
+
Served asset /importable/application.js - 304 Not Modified (4ms)
|
414
|
+
|
415
|
+
|
416
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:42 -0400
|
417
|
+
Served asset /.js - 404 Not Found (1ms)
|
418
|
+
|
419
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
420
|
+
|
421
|
+
|
422
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
423
|
+
|
424
|
+
|
425
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:58:51 -0400
|
426
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
427
|
+
Parameters: {"type"=>"foo"}
|
428
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
429
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
430
|
+
|
431
|
+
|
432
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:51 -0400
|
433
|
+
Served asset /importable/application.css - 200 OK (0ms)
|
434
|
+
|
435
|
+
|
436
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:51 -0400
|
437
|
+
Served asset /importable/spreadsheets.css - 200 OK (0ms)
|
438
|
+
|
439
|
+
|
440
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:51 -0400
|
441
|
+
Served asset /.js - 404 Not Found (1ms)
|
442
|
+
|
443
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
444
|
+
|
445
|
+
|
446
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
447
|
+
|
448
|
+
|
449
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:51 -0400
|
450
|
+
Served asset /importable/spreadsheets.js - 200 OK (0ms)
|
451
|
+
|
452
|
+
|
453
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:51 -0400
|
454
|
+
Served asset /importable/application.js - 200 OK (0ms)
|
455
|
+
|
456
|
+
|
457
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:51 -0400
|
458
|
+
Served asset /.js - 404 Not Found (1ms)
|
459
|
+
|
460
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
461
|
+
|
462
|
+
|
463
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
464
|
+
|
465
|
+
|
466
|
+
Started GET "/importable/spreadsheets/foo/nw" for 127.0.0.1 at 2011-09-14 19:58:52 -0400
|
467
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
468
|
+
Parameters: {"type"=>"foo", "id"=>"nw"}
|
469
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.0ms)
|
470
|
+
Completed 200 OK in 13ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
471
|
+
|
472
|
+
|
473
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:53 -0400
|
474
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
475
|
+
|
476
|
+
|
477
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:53 -0400
|
478
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
479
|
+
|
480
|
+
|
481
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:53 -0400
|
482
|
+
Served asset /.js - 404 Not Found (1ms)
|
483
|
+
|
484
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
485
|
+
|
486
|
+
|
487
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
488
|
+
|
489
|
+
|
490
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:53 -0400
|
491
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
492
|
+
|
493
|
+
|
494
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:53 -0400
|
495
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
496
|
+
|
497
|
+
|
498
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:53 -0400
|
499
|
+
Served asset /.js - 404 Not Found (1ms)
|
500
|
+
|
501
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
502
|
+
|
503
|
+
|
504
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.4ms)
|
505
|
+
|
506
|
+
|
507
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:58:55 -0400
|
508
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
509
|
+
Parameters: {"type"=>"foo"}
|
510
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
511
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
512
|
+
|
513
|
+
|
514
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:55 -0400
|
515
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
516
|
+
|
517
|
+
|
518
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:58:55 -0400
|
519
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
520
|
+
|
521
|
+
|
522
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:55 -0400
|
523
|
+
Served asset /.js - 404 Not Found (7ms)
|
524
|
+
|
525
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
526
|
+
|
527
|
+
|
528
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
529
|
+
|
530
|
+
|
531
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:55 -0400
|
532
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
533
|
+
|
534
|
+
|
535
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:55 -0400
|
536
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
537
|
+
|
538
|
+
|
539
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:58:55 -0400
|
540
|
+
Served asset /.js - 404 Not Found (1ms)
|
541
|
+
|
542
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
543
|
+
|
544
|
+
|
545
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
546
|
+
|
547
|
+
|
548
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:59:02 -0400
|
549
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
550
|
+
Parameters: {"type"=>"foo"}
|
551
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (9.4ms)
|
552
|
+
Completed 200 OK in 74ms (Views: 73.3ms | ActiveRecord: 0.0ms)
|
553
|
+
|
554
|
+
|
555
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:03 -0400
|
556
|
+
Served asset /importable/application.css - 200 OK (0ms)
|
557
|
+
|
558
|
+
|
559
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:03 -0400
|
560
|
+
Served asset /importable/spreadsheets.css - 200 OK (2ms)
|
561
|
+
|
562
|
+
|
563
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:03 -0400
|
564
|
+
Served asset /.js - 404 Not Found (1ms)
|
565
|
+
|
566
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
567
|
+
|
568
|
+
|
569
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
570
|
+
|
571
|
+
|
572
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:03 -0400
|
573
|
+
Served asset /importable/spreadsheets.js - 200 OK (2ms)
|
574
|
+
|
575
|
+
|
576
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:03 -0400
|
577
|
+
Served asset /importable/application.js - 200 OK (0ms)
|
578
|
+
|
579
|
+
|
580
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:03 -0400
|
581
|
+
Served asset /.js - 404 Not Found (1ms)
|
582
|
+
|
583
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
584
|
+
|
585
|
+
|
586
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
587
|
+
|
588
|
+
|
589
|
+
Started GET "/importable/spreadsheets/foo/ne" for 127.0.0.1 at 2011-09-14 19:59:04 -0400
|
590
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
591
|
+
Parameters: {"type"=>"foo", "id"=>"ne"}
|
592
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.3ms)
|
593
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:04 -0400
|
597
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
598
|
+
|
599
|
+
|
600
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:04 -0400
|
601
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
602
|
+
|
603
|
+
|
604
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:04 -0400
|
605
|
+
Served asset /.js - 404 Not Found (1ms)
|
606
|
+
|
607
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
608
|
+
|
609
|
+
|
610
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.7ms)
|
611
|
+
|
612
|
+
|
613
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:04 -0400
|
614
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
615
|
+
|
616
|
+
|
617
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:04 -0400
|
618
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
619
|
+
|
620
|
+
|
621
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:04 -0400
|
622
|
+
Served asset /.js - 404 Not Found (4ms)
|
623
|
+
|
624
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
625
|
+
|
626
|
+
|
627
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
628
|
+
|
629
|
+
|
630
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:59:06 -0400
|
631
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
632
|
+
Parameters: {"type"=>"foo"}
|
633
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
634
|
+
Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
635
|
+
|
636
|
+
|
637
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:06 -0400
|
638
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
639
|
+
|
640
|
+
|
641
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:06 -0400
|
642
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
643
|
+
|
644
|
+
|
645
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:06 -0400
|
646
|
+
Served asset /.js - 404 Not Found (1ms)
|
647
|
+
|
648
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
649
|
+
|
650
|
+
|
651
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
652
|
+
|
653
|
+
|
654
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:06 -0400
|
655
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
656
|
+
|
657
|
+
|
658
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:06 -0400
|
659
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
660
|
+
|
661
|
+
|
662
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:06 -0400
|
663
|
+
Served asset /.js - 404 Not Found (1ms)
|
664
|
+
|
665
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
666
|
+
|
667
|
+
|
668
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
669
|
+
|
670
|
+
|
671
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:59:14 -0400
|
672
|
+
|
673
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo/new"):
|
674
|
+
|
675
|
+
|
676
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
677
|
+
|
678
|
+
|
679
|
+
Started GET "/importable/spreadsheets/f" for 127.0.0.1 at 2011-09-14 19:59:23 -0400
|
680
|
+
|
681
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/f"):
|
682
|
+
|
683
|
+
|
684
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
685
|
+
|
686
|
+
|
687
|
+
Started GET "/importable/spreadsheets/foo" for 127.0.0.1 at 2011-09-14 19:59:25 -0400
|
688
|
+
|
689
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo"):
|
690
|
+
|
691
|
+
|
692
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
693
|
+
|
694
|
+
|
695
|
+
Started GET "/importable/spreadsheets/foo/" for 127.0.0.1 at 2011-09-14 19:59:27 -0400
|
696
|
+
|
697
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo"):
|
698
|
+
|
699
|
+
|
700
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
701
|
+
|
702
|
+
|
703
|
+
Started GET "/importable/spreadsheets/foo/x" for 127.0.0.1 at 2011-09-14 19:59:29 -0400
|
704
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
705
|
+
Parameters: {"type"=>"foo", "id"=>"x"}
|
706
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.0ms)
|
707
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
708
|
+
|
709
|
+
|
710
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:29 -0400
|
711
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
712
|
+
|
713
|
+
|
714
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:29 -0400
|
715
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
716
|
+
|
717
|
+
|
718
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:29 -0400
|
719
|
+
Served asset /.js - 404 Not Found (1ms)
|
720
|
+
|
721
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
722
|
+
|
723
|
+
|
724
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
725
|
+
|
726
|
+
|
727
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:29 -0400
|
728
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
729
|
+
|
730
|
+
|
731
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:29 -0400
|
732
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
733
|
+
|
734
|
+
|
735
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:29 -0400
|
736
|
+
Served asset /.js - 404 Not Found (1ms)
|
737
|
+
|
738
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
739
|
+
|
740
|
+
|
741
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
742
|
+
|
743
|
+
|
744
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 19:59:31 -0400
|
745
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
746
|
+
Parameters: {"type"=>"foo"}
|
747
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.1ms)
|
748
|
+
Completed 200 OK in 127ms (Views: 126.3ms | ActiveRecord: 0.0ms)
|
749
|
+
|
750
|
+
|
751
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:31 -0400
|
752
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
753
|
+
|
754
|
+
|
755
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 19:59:31 -0400
|
756
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
757
|
+
|
758
|
+
|
759
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:31 -0400
|
760
|
+
Served asset /.js - 404 Not Found (57ms)
|
761
|
+
|
762
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
763
|
+
|
764
|
+
|
765
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
766
|
+
|
767
|
+
|
768
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:31 -0400
|
769
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
770
|
+
|
771
|
+
|
772
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:31 -0400
|
773
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
774
|
+
|
775
|
+
|
776
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 19:59:31 -0400
|
777
|
+
Served asset /.js - 404 Not Found (2ms)
|
778
|
+
|
779
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
780
|
+
|
781
|
+
|
782
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
783
|
+
|
784
|
+
|
785
|
+
Started GET "/importable/spreadsheets/foo/" for 127.0.0.1 at 2011-09-14 19:59:39 -0400
|
786
|
+
|
787
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo"):
|
788
|
+
|
789
|
+
|
790
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
791
|
+
|
792
|
+
|
793
|
+
Started GET "/importable/spreadsheets/foo" for 127.0.0.1 at 2011-09-14 19:59:43 -0400
|
794
|
+
|
795
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo"):
|
796
|
+
|
797
|
+
|
798
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
799
|
+
|
800
|
+
|
801
|
+
Started GET "/importable/spreadsheets/foo" for 127.0.0.1 at 2011-09-14 19:59:46 -0400
|
802
|
+
|
803
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo"):
|
804
|
+
|
805
|
+
|
806
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
807
|
+
|
808
|
+
|
809
|
+
Started GET "/importable/spreadsheets/foo" for 127.0.0.1 at 2011-09-14 19:59:51 -0400
|
810
|
+
|
811
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo"):
|
812
|
+
|
813
|
+
|
814
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (10.0ms)
|
815
|
+
|
816
|
+
|
817
|
+
Started GET "/importable/spreadsheets/foo" for 127.0.0.1 at 2011-09-14 19:59:53 -0400
|
818
|
+
|
819
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo"):
|
820
|
+
|
821
|
+
|
822
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
823
|
+
|
824
|
+
|
825
|
+
Started GET "/importable/spreadsheets/foo/1" for 127.0.0.1 at 2011-09-14 20:00:09 -0400
|
826
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
827
|
+
Parameters: {"type"=>"foo", "id"=>"1"}
|
828
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.3ms)
|
829
|
+
Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
|
830
|
+
|
831
|
+
|
832
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:09 -0400
|
833
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
834
|
+
|
835
|
+
|
836
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:09 -0400
|
837
|
+
Served asset /.js - 404 Not Found (2ms)
|
838
|
+
|
839
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
840
|
+
|
841
|
+
|
842
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
843
|
+
|
844
|
+
|
845
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:09 -0400
|
846
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (7ms)
|
847
|
+
|
848
|
+
|
849
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:09 -0400
|
850
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (2ms)
|
851
|
+
|
852
|
+
|
853
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:09 -0400
|
854
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
855
|
+
|
856
|
+
|
857
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:09 -0400
|
858
|
+
Served asset /.js - 404 Not Found (3ms)
|
859
|
+
|
860
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
861
|
+
|
862
|
+
|
863
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms)
|
864
|
+
|
865
|
+
|
866
|
+
Started GET "/importable/spreadsheets/foo/1" for 127.0.0.1 at 2011-09-14 20:00:31 -0400
|
867
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
868
|
+
Parameters: {"type"=>"foo", "id"=>"1"}
|
869
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.3ms)
|
870
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
871
|
+
|
872
|
+
|
873
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:31 -0400
|
874
|
+
Served asset /importable/application.css - 200 OK (0ms)
|
875
|
+
|
876
|
+
|
877
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:31 -0400
|
878
|
+
Served asset /importable/spreadsheets.css - 200 OK (0ms)
|
879
|
+
|
880
|
+
|
881
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:31 -0400
|
882
|
+
Served asset /.js - 404 Not Found (3ms)
|
883
|
+
|
884
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
885
|
+
|
886
|
+
|
887
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
888
|
+
|
889
|
+
|
890
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:31 -0400
|
891
|
+
Served asset /importable/spreadsheets.js - 200 OK (0ms)
|
892
|
+
|
893
|
+
|
894
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:31 -0400
|
895
|
+
Served asset /importable/application.js - 200 OK (0ms)
|
896
|
+
|
897
|
+
|
898
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:31 -0400
|
899
|
+
Served asset /.js - 404 Not Found (1ms)
|
900
|
+
|
901
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
902
|
+
|
903
|
+
|
904
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (27.2ms)
|
905
|
+
|
906
|
+
|
907
|
+
Started GET "/importable/spreadsheets/foo/wer" for 127.0.0.1 at 2011-09-14 20:00:36 -0400
|
908
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
909
|
+
Parameters: {"type"=>"foo", "id"=>"wer"}
|
910
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.0ms)
|
911
|
+
Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
|
912
|
+
|
913
|
+
|
914
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:36 -0400
|
915
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
916
|
+
|
917
|
+
|
918
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:36 -0400
|
919
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
920
|
+
|
921
|
+
|
922
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:36 -0400
|
923
|
+
Served asset /.js - 404 Not Found (1ms)
|
924
|
+
|
925
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
926
|
+
|
927
|
+
|
928
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
929
|
+
|
930
|
+
|
931
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:36 -0400
|
932
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
933
|
+
|
934
|
+
|
935
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:36 -0400
|
936
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
937
|
+
|
938
|
+
|
939
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:36 -0400
|
940
|
+
Served asset /.js - 404 Not Found (1ms)
|
941
|
+
|
942
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
943
|
+
|
944
|
+
|
945
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
946
|
+
|
947
|
+
|
948
|
+
Started GET "/importable/spreadsheets/foo/1" for 127.0.0.1 at 2011-09-14 20:00:39 -0400
|
949
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
950
|
+
Parameters: {"type"=>"foo", "id"=>"1"}
|
951
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.0ms)
|
952
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
953
|
+
|
954
|
+
|
955
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:39 -0400
|
956
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
957
|
+
|
958
|
+
|
959
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:39 -0400
|
960
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
961
|
+
|
962
|
+
|
963
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:39 -0400
|
964
|
+
Served asset /.js - 404 Not Found (2ms)
|
965
|
+
|
966
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
967
|
+
|
968
|
+
|
969
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
970
|
+
|
971
|
+
|
972
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:39 -0400
|
973
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
974
|
+
|
975
|
+
|
976
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:39 -0400
|
977
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
978
|
+
|
979
|
+
|
980
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:39 -0400
|
981
|
+
Served asset /.js - 404 Not Found (1ms)
|
982
|
+
|
983
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
984
|
+
|
985
|
+
|
986
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
987
|
+
|
988
|
+
|
989
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 20:00:41 -0400
|
990
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
991
|
+
Parameters: {"type"=>"foo"}
|
992
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.3ms)
|
993
|
+
Completed 200 OK in 41ms (Views: 41.0ms | ActiveRecord: 0.0ms)
|
994
|
+
|
995
|
+
|
996
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:41 -0400
|
997
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
998
|
+
|
999
|
+
|
1000
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:41 -0400
|
1001
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
1002
|
+
|
1003
|
+
|
1004
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:41 -0400
|
1005
|
+
Served asset /.js - 404 Not Found (1ms)
|
1006
|
+
|
1007
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1008
|
+
|
1009
|
+
|
1010
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1011
|
+
|
1012
|
+
|
1013
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:41 -0400
|
1014
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
1015
|
+
|
1016
|
+
|
1017
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:41 -0400
|
1018
|
+
Served asset /importable/application.js - 304 Not Modified (6ms)
|
1019
|
+
|
1020
|
+
|
1021
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:41 -0400
|
1022
|
+
Served asset /.js - 404 Not Found (1ms)
|
1023
|
+
|
1024
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1025
|
+
|
1026
|
+
|
1027
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1028
|
+
|
1029
|
+
|
1030
|
+
Started GET "/importable/spreadsheets/foo/ne" for 127.0.0.1 at 2011-09-14 20:00:42 -0400
|
1031
|
+
Processing by Importable::SpreadsheetsController#show as HTML
|
1032
|
+
Parameters: {"type"=>"foo", "id"=>"ne"}
|
1033
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/show.html.erb within layouts/importable/application (0.0ms)
|
1034
|
+
Completed 200 OK in 5ms (Views: 5.1ms | ActiveRecord: 0.0ms)
|
1035
|
+
|
1036
|
+
|
1037
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:42 -0400
|
1038
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
1039
|
+
|
1040
|
+
|
1041
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:42 -0400
|
1042
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
1043
|
+
|
1044
|
+
|
1045
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:42 -0400
|
1046
|
+
Served asset /.js - 404 Not Found (1ms)
|
1047
|
+
|
1048
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1049
|
+
|
1050
|
+
|
1051
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1052
|
+
|
1053
|
+
|
1054
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:42 -0400
|
1055
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
1056
|
+
|
1057
|
+
|
1058
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:42 -0400
|
1059
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
1060
|
+
|
1061
|
+
|
1062
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:42 -0400
|
1063
|
+
Served asset /.js - 404 Not Found (3ms)
|
1064
|
+
|
1065
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1066
|
+
|
1067
|
+
|
1068
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1069
|
+
|
1070
|
+
|
1071
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 20:00:44 -0400
|
1072
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1073
|
+
Parameters: {"type"=>"foo"}
|
1074
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.0ms)
|
1075
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
1076
|
+
|
1077
|
+
|
1078
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:44 -0400
|
1079
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
1080
|
+
|
1081
|
+
|
1082
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:00:44 -0400
|
1083
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
1084
|
+
|
1085
|
+
|
1086
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:44 -0400
|
1087
|
+
Served asset /.js - 404 Not Found (1ms)
|
1088
|
+
|
1089
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1090
|
+
|
1091
|
+
|
1092
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
|
1093
|
+
|
1094
|
+
|
1095
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:44 -0400
|
1096
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
1097
|
+
|
1098
|
+
|
1099
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:44 -0400
|
1100
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
1101
|
+
|
1102
|
+
|
1103
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:00:44 -0400
|
1104
|
+
Served asset /.js - 404 Not Found (4ms)
|
1105
|
+
|
1106
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1107
|
+
|
1108
|
+
|
1109
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
1110
|
+
|
1111
|
+
|
1112
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 20:03:13 -0400
|
1113
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1114
|
+
Parameters: {"type"=>"foo"}
|
1115
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (0.3ms)
|
1116
|
+
Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
1117
|
+
|
1118
|
+
|
1119
|
+
Started GET "/assets/importable/application.css?body=1" for 127.0.0.1 at 2011-09-14 20:03:13 -0400
|
1120
|
+
Served asset /importable/application.css - 304 Not Modified (0ms)
|
1121
|
+
|
1122
|
+
|
1123
|
+
Started GET "/assets/importable/spreadsheets.css?body=1" for 127.0.0.1 at 2011-09-14 20:03:13 -0400
|
1124
|
+
Served asset /importable/spreadsheets.css - 304 Not Modified (0ms)
|
1125
|
+
|
1126
|
+
|
1127
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:03:13 -0400
|
1128
|
+
Served asset /.js - 404 Not Found (1ms)
|
1129
|
+
|
1130
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1131
|
+
|
1132
|
+
|
1133
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1134
|
+
|
1135
|
+
|
1136
|
+
Started GET "/assets/importable/spreadsheets.js?body=1" for 127.0.0.1 at 2011-09-14 20:03:13 -0400
|
1137
|
+
Served asset /importable/spreadsheets.js - 304 Not Modified (0ms)
|
1138
|
+
|
1139
|
+
|
1140
|
+
Started GET "/assets/importable/application.js?body=1" for 127.0.0.1 at 2011-09-14 20:03:13 -0400
|
1141
|
+
Served asset /importable/application.js - 304 Not Modified (0ms)
|
1142
|
+
|
1143
|
+
|
1144
|
+
Started GET "/assets/.js?body=1" for 127.0.0.1 at 2011-09-14 20:03:13 -0400
|
1145
|
+
Served asset /.js - 404 Not Found (28ms)
|
1146
|
+
|
1147
|
+
ActionController::RoutingError (No route matches [GET] "/assets/.js"):
|
1148
|
+
|
1149
|
+
|
1150
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started GET "/importable/spreadsheets/foo/new" for 127.0.0.1 at 2011-09-14 20:13:08 -0400
|
1154
|
+
|
1155
|
+
ActionController::RoutingError (No route matches [GET] "/importable/spreadsheets/foo/new"):
|
1156
|
+
|
1157
|
+
|
1158
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1159
|
+
|
1160
|
+
|
1161
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 20:13:13 -0400
|
1162
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1163
|
+
Parameters: {"type"=>"foo"}
|
1164
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (23.6ms)
|
1165
|
+
Completed 500 Internal Server Error in 35ms
|
1166
|
+
|
1167
|
+
ActionView::Template::Error (undefined method `humanize' for nil:NilClass):
|
1168
|
+
1: <h1><%= @type.humanize %> spreadsheet upload</h1>
|
1169
|
+
2:
|
1170
|
+
3: <%= render 'form' %>
|
1171
|
+
|
1172
|
+
|
1173
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
1174
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
1175
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms)
|
1176
|
+
[1m[36m (0.0ms)[0m [1mselect sqlite_version(*)[0m
|
1177
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
1178
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
1179
|
+
[1m[35m (0.6ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1180
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1181
|
+
Migrating to CreateImportableSpreadsheets (20110915001957)
|
1182
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "importable_spreadsheets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "object_type" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1183
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110915001957')[0m
|
1184
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
1185
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1186
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("importable_spreadsheets")
|
1187
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1188
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
1189
|
+
[1m[36m (0.7ms)[0m [1mCREATE TABLE "importable_spreadsheets" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "file" varchar(255), "object_type" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1190
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
1191
|
+
[1m[36m (1.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
1192
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
1193
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
1194
|
+
[1m[35m (0.5ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110915001957')
|
1195
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
1196
|
+
Migrating to CreateFooRequiredFields (20110913175340)
|
1197
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
1198
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "foo_required_fields" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moof" integer, "doof" integer, "created_at" datetime, "updated_at" datetime) [0m
|
1199
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110913175340')
|
1200
|
+
Migrating to CreateFoos (20110913175348)
|
1201
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "moof" integer, "doof" integer, "a" integer, "b" integer, "c" integer, "d" integer, "q" integer, "r" integer, "s" integer, "t" integer, "created_at" datetime, "updated_at" datetime) [0m
|
1202
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110913175348')
|
1203
|
+
Migrating to CreateImportableSpreadsheets (20110915001957)
|
1204
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
1205
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
1206
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("foo_required_fields")[0m
|
1207
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("foos")
|
1208
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("importable_spreadsheets")[0m
|
1209
|
+
|
1210
|
+
|
1211
|
+
Started GET "/imports/foo/new" for 127.0.0.1 at 2011-09-14 21:16:30 -0400
|
1212
|
+
|
1213
|
+
ActionController::RoutingError (No route matches [GET] "/imports/foo/new"):
|
1214
|
+
|
1215
|
+
|
1216
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (12.5ms)
|
1217
|
+
|
1218
|
+
|
1219
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 21:16:36 -0400
|
1220
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1221
|
+
Parameters: {"type"=>"foo"}
|
1222
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.3ms)
|
1223
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.4ms)
|
1224
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (3.5ms)
|
1225
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (4.4ms)
|
1226
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb (47.9ms)
|
1227
|
+
Completed 200 OK in 53ms (Views: 52.4ms | ActiveRecord: 0.0ms)
|
1228
|
+
|
1229
|
+
|
1230
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 21:16:52 -0400
|
1231
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1232
|
+
Parameters: {"type"=>"foo"}
|
1233
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.0ms)
|
1234
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.1ms)
|
1235
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (2.6ms)
|
1236
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (3.2ms)
|
1237
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (3.9ms)
|
1238
|
+
Compiled application.css (0ms) (pid 24386)
|
1239
|
+
Completed 500 Internal Server Error in 53ms
|
1240
|
+
|
1241
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
1242
|
+
(in /Users/mike/work/bd/importable/spec/dummy/app/assets/javascripts/application.js:7)):
|
1243
|
+
3: <head>
|
1244
|
+
4: <title>Dummy</title>
|
1245
|
+
5: <%= stylesheet_link_tag "application" %>
|
1246
|
+
6: <%= javascript_include_tag "application" %>
|
1247
|
+
7: <%= csrf_meta_tags %>
|
1248
|
+
8: </head>
|
1249
|
+
9: <body>
|
1250
|
+
app/views/layouts/importable/application.html.erb:6:in `_app_views_layouts_importable_application_html_erb___2914265055821303763_2170840380'
|
1251
|
+
|
1252
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
|
1253
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (5.4ms)
|
1254
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
|
1255
|
+
|
1256
|
+
|
1257
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 21:17:39 -0400
|
1258
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1259
|
+
Parameters: {"type"=>"foo"}
|
1260
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.4ms)
|
1261
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.4ms)
|
1262
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (3.6ms)
|
1263
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (4.5ms)
|
1264
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (27.2ms)
|
1265
|
+
Completed 500 Internal Server Error in 125ms
|
1266
|
+
|
1267
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
1268
|
+
(in /Users/mike/work/bd/importable/spec/dummy/app/assets/javascripts/application.js:7)):
|
1269
|
+
3: <head>
|
1270
|
+
4: <title>Dummy</title>
|
1271
|
+
5: <%= stylesheet_link_tag "application" %>
|
1272
|
+
6: <%= javascript_include_tag "application" %>
|
1273
|
+
7: <%= csrf_meta_tags %>
|
1274
|
+
8: </head>
|
1275
|
+
9: <body>
|
1276
|
+
app/views/layouts/importable/application.html.erb:6:in `_app_views_layouts_importable_application_html_erb___2212835425600031962_2171925420'
|
1277
|
+
|
1278
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
1279
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
1280
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (3.6ms)
|
1281
|
+
|
1282
|
+
|
1283
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 21:18:06 -0400
|
1284
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1285
|
+
Parameters: {"type"=>"foo"}
|
1286
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.4ms)
|
1287
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.4ms)
|
1288
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (3.6ms)
|
1289
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (4.5ms)
|
1290
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (26.8ms)
|
1291
|
+
Compiled application.js (0ms) (pid 24408)
|
1292
|
+
Completed 200 OK in 101ms (Views: 100.6ms | ActiveRecord: 0.0ms)
|
1293
|
+
|
1294
|
+
|
1295
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 21:18:07 -0400
|
1296
|
+
Served asset /application.css - 200 OK (2ms)
|
1297
|
+
|
1298
|
+
|
1299
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 21:18:07 -0400
|
1300
|
+
Served asset /application.js - 200 OK (2ms)
|
1301
|
+
|
1302
|
+
|
1303
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 21:18:20 -0400
|
1304
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1305
|
+
Parameters: {"type"=>"foo"}
|
1306
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.0ms)
|
1307
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.1ms)
|
1308
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (2.2ms)
|
1309
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (2.8ms)
|
1310
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb (3.4ms)
|
1311
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
1312
|
+
|
1313
|
+
|
1314
|
+
Started GET "/imports/foo/new" for 127.0.0.1 at 2011-09-14 22:08:26 -0400
|
1315
|
+
|
1316
|
+
ActionController::RoutingError (No route matches [GET] "/imports/foo/new"):
|
1317
|
+
|
1318
|
+
|
1319
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (20.7ms)
|
1320
|
+
|
1321
|
+
|
1322
|
+
Started GET "/importables/foo/new" for 127.0.0.1 at 2011-09-14 22:08:30 -0400
|
1323
|
+
|
1324
|
+
ActionController::RoutingError (No route matches [GET] "/importables/foo/new"):
|
1325
|
+
|
1326
|
+
|
1327
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
1328
|
+
|
1329
|
+
|
1330
|
+
Started GET "/importables/foo/new" for 127.0.0.1 at 2011-09-14 22:08:33 -0400
|
1331
|
+
|
1332
|
+
ActionController::RoutingError (No route matches [GET] "/importables/foo/new"):
|
1333
|
+
|
1334
|
+
|
1335
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.1ms)
|
1336
|
+
|
1337
|
+
|
1338
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 22:08:37 -0400
|
1339
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1340
|
+
Parameters: {"type"=>"foo"}
|
1341
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.6ms)
|
1342
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.5ms)
|
1343
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (4.4ms)
|
1344
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (5.6ms)
|
1345
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (60.7ms)
|
1346
|
+
Completed 200 OK in 72ms (Views: 71.9ms | ActiveRecord: 0.0ms)
|
1347
|
+
|
1348
|
+
|
1349
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 22:08:37 -0400
|
1350
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
1351
|
+
|
1352
|
+
|
1353
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 22:08:37 -0400
|
1354
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
1355
|
+
|
1356
|
+
|
1357
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 22:09:42 -0400
|
1358
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1359
|
+
Parameters: {"type"=>"foo"}
|
1360
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.0ms)
|
1361
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.1ms)
|
1362
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (2.3ms)
|
1363
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (2.9ms)
|
1364
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (3.5ms)
|
1365
|
+
Completed 200 OK in 9ms (Views: 8.1ms | ActiveRecord: 0.0ms)
|
1366
|
+
|
1367
|
+
|
1368
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 22:09:43 -0400
|
1369
|
+
Served asset /application.css - 200 OK (5ms)
|
1370
|
+
|
1371
|
+
|
1372
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 22:09:43 -0400
|
1373
|
+
Served asset /application.js - 200 OK (0ms)
|
1374
|
+
|
1375
|
+
|
1376
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 22:09:43 -0400
|
1377
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1378
|
+
Parameters: {"type"=>"foo"}
|
1379
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.0ms)
|
1380
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.1ms)
|
1381
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (2.2ms)
|
1382
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (2.8ms)
|
1383
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (3.4ms)
|
1384
|
+
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
1385
|
+
|
1386
|
+
|
1387
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 22:09:43 -0400
|
1388
|
+
Served asset /application.css - 200 OK (0ms)
|
1389
|
+
|
1390
|
+
|
1391
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 22:09:43 -0400
|
1392
|
+
Served asset /application.js - 200 OK (0ms)
|
1393
|
+
|
1394
|
+
|
1395
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 22:09:53 -0400
|
1396
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1397
|
+
Parameters: {"type"=>"foo"}
|
1398
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.4ms)
|
1399
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.4ms)
|
1400
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (3.5ms)
|
1401
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (4.4ms)
|
1402
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (26.4ms)
|
1403
|
+
Completed 200 OK in 69ms (Views: 68.5ms | ActiveRecord: 0.0ms)
|
1404
|
+
|
1405
|
+
|
1406
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 22:09:54 -0400
|
1407
|
+
Served asset /application.css - 200 OK (0ms)
|
1408
|
+
|
1409
|
+
|
1410
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 22:09:54 -0400
|
1411
|
+
Served asset /application.js - 200 OK (0ms)
|
1412
|
+
|
1413
|
+
|
1414
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 22:09:55 -0400
|
1415
|
+
Processing by Importable::SpreadsheetsController#new as HTML
|
1416
|
+
Parameters: {"type"=>"foo"}
|
1417
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_errors.erb (0.0ms)
|
1418
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_actions.erb (0.1ms)
|
1419
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_upload_file_step.erb (2.3ms)
|
1420
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/_form.html.erb (2.9ms)
|
1421
|
+
Rendered /Users/mike/work/bd/importable/app/views/importable/spreadsheets/new.html.erb within layouts/importable/application (3.5ms)
|
1422
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
1423
|
+
|
1424
|
+
|
1425
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-09-14 22:09:55 -0400
|
1426
|
+
Served asset /application.css - 200 OK (0ms)
|
1427
|
+
|
1428
|
+
|
1429
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-09-14 22:09:55 -0400
|
1430
|
+
Served asset /application.js - 200 OK (0ms)
|
1431
|
+
|
1432
|
+
|
1433
|
+
Started GET "/importable/foo/new" for 127.0.0.1 at 2011-09-14 22:11:49 -0400
|
1434
|
+
|
1435
|
+
Exception (nnnn):
|
1436
|
+
|
1437
|
+
|
1438
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
1439
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
|
1440
|
+
Rendered /Users/mike/.rvm/gems/ruby-1.9.2-p290@importable/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (3.7ms)
|