smart_editor 0.0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +40 -0
- data/app/assets/javascripts/smart_editor/application.js +15 -0
- data/app/assets/javascripts/smart_editor/editor_images.js +1 -0
- data/app/assets/stylesheets/smart_editor/application.css +13 -0
- data/app/assets/stylesheets/smart_editor/editor_images.css +4 -0
- data/app/controllers/smart_editor/application_controller.rb +4 -0
- data/app/controllers/smart_editor/editor_images_controller.rb +41 -0
- data/app/helpers/smart_editor/application_helper.rb +4 -0
- data/app/helpers/smart_editor/editor_images_helper.rb +4 -0
- data/app/models/smart_editor/editor_image.rb +7 -0
- data/app/uploaders/file_uploader.rb +55 -0
- data/app/views/layouts/smart_editor/application.html.erb +14 -0
- data/app/views/smart_editor/editor_images/index.html.erb +4 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20130101074444_create_smart_editor_editor_images.rb +10 -0
- data/lib/generators/smart_editor/smart_editor_generator.rb +18 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/SmartEditor2Skin.html +635 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader.php +22 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/FileUploader_html5.php +25 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html +100 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js +675 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/callback.html +32 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo.min.js +12686 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/popup/quick_photo/jindo_fileUpload.js +390 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea.html +9 -0
- data/lib/generators/smart_editor/templates/public/smart_editor/smart_editor2_inputarea_ie8.html +10 -0
- data/lib/smart_editor/class_methods.rb +10 -0
- data/lib/smart_editor/engine.rb +5 -0
- data/lib/smart_editor/form_builder.rb +11 -0
- data/lib/smart_editor/version.rb +3 -0
- data/lib/smart_editor.rb +18 -0
- data/lib/tasks/smart_editor_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +16 -0
- data/test/dummy/app/assets/javascripts/posts.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/posts.css +4 -0
- data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/controllers/posts_controller.rb +85 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/posts_helper.rb +2 -0
- data/test/dummy/app/models/post.rb +4 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/posts/_form.html.erb +30 -0
- data/test/dummy/app/views/posts/edit.html.erb +6 -0
- data/test/dummy/app/views/posts/index.html.erb +27 -0
- data/test/dummy/app/views/posts/new.html.erb +5 -0
- data/test/dummy/app/views/posts/show.html.erb +20 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +7 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130103085542_create_posts.rb +11 -0
- data/test/dummy/db/migrate/20130103090021_create_smart_editor_editor_images.smart_editor.rb +11 -0
- data/test/dummy/db/schema.rb +32 -0
- data/test/dummy/log/development.log +713 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/smart_editor/SmartEditor2Skin.html +635 -0
- data/test/dummy/public/smart_editor/popup/quick_photo/FileUploader.php +22 -0
- data/test/dummy/public/smart_editor/popup/quick_photo/FileUploader_html5.php +25 -0
- data/test/dummy/public/smart_editor/popup/quick_photo/Photo_Quick_UploadPopup.html +100 -0
- data/test/dummy/public/smart_editor/popup/quick_photo/QuickPhotoPopup.js +675 -0
- data/test/dummy/public/smart_editor/popup/quick_photo/callback.html +32 -0
- data/test/dummy/public/smart_editor/popup/quick_photo/jindo.min.js +12686 -0
- data/test/dummy/public/smart_editor/popup/quick_photo/jindo_fileUpload.js +390 -0
- data/test/dummy/public/smart_editor/smart_editor2_inputarea.html +9 -0
- data/test/dummy/public/smart_editor/smart_editor2_inputarea_ie8.html +10 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/posts.yml +11 -0
- data/test/dummy/test/functional/posts_controller_test.rb +49 -0
- data/test/dummy/test/unit/helpers/posts_helper_test.rb +4 -0
- data/test/dummy/test/unit/post_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/C39/A20/sprockets%2Fd75302feb7958c52568020a888775667 +0 -0
- data/test/dummy/tmp/cache/assets/C8B/9F0/sprockets%2F42090f88c5061f72460d7c83a9bc8990 +0 -0
- data/test/dummy/tmp/cache/assets/C8E/A60/sprockets%2F74b1945f4d4a322ab567f73798c32838 +0 -0
- data/test/dummy/tmp/cache/assets/CD4/040/sprockets%2F7c241e3470f7210ab843c109c9d68a4b +0 -0
- data/test/dummy/tmp/cache/assets/CE3/740/sprockets%2F200278c67b4dde839345d7b018fed561 +0 -0
- data/test/dummy/tmp/cache/assets/CEE/680/sprockets%2F6d653ad72aed952816dd79e63c761417 +0 -0
- data/test/dummy/tmp/cache/assets/D12/CA0/sprockets%2Fcd507925f6bb1f62170d028ca668ad98 +0 -0
- data/test/dummy/tmp/cache/assets/D13/8A0/sprockets%2Fec89fa303e9609b18f50b6de2831433e +0 -0
- data/test/dummy/tmp/cache/assets/D6F/A80/sprockets%2F8893ca0d5d16eb3d85c0964bdbbe3381 +0 -0
- data/test/dummy/tmp/cache/assets/D86/AF0/sprockets%2Fcfa5f1244012fcd263cee551afe412b2 +0 -0
- data/test/dummy/tmp/cache/assets/D92/5A0/sprockets%2Fb0e45a13b900ecbf7011b78bdff2595e +0 -0
- data/test/dummy/tmp/cache/assets/D9D/950/sprockets%2F65093fff17b1aa3bed7e0dda53563b79 +0 -0
- data/test/dummy/tmp/cache/assets/DF9/8C0/sprockets%2Fc27a71cbee6a5dffdc2534b267b2fa66 +0 -0
- data/test/dummy/tmp/cache/assets/E54/F60/sprockets%2Ff1bba5cc065ebbb83addfbba59f82059 +0 -0
- data/test/fixtures/smart_editor/editor_images.yml +11 -0
- data/test/functional/smart_editor/editor_images_controller_test.rb +9 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/smart_editor_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- data/test/unit/helpers/smart_editor/editor_images_helper_test.rb +6 -0
- data/test/unit/smart_editor/editor_image_test.rb +9 -0
- data/vendor/assets/images/smart_editor/bg_b1.png +0 -0
- data/vendor/assets/images/smart_editor/bg_find_h3.gif +0 -0
- data/vendor/assets/images/smart_editor/bg_line1.gif +0 -0
- data/vendor/assets/images/smart_editor/bg_quote2.gif +0 -0
- data/vendor/assets/images/smart_editor/bg_set.gif +0 -0
- data/vendor/assets/images/smart_editor/bg_tool2.gif +0 -0
- data/vendor/assets/images/smart_editor/btn_set.png +0 -0
- data/vendor/assets/images/smart_editor/bx_set_110302.gif +0 -0
- data/vendor/assets/images/smart_editor/editor_guideline_698.gif +0 -0
- data/vendor/assets/images/smart_editor/editor_guideline_890.gif +0 -0
- data/vendor/assets/images/smart_editor/icon_set.gif +0 -0
- data/vendor/assets/images/smart_editor/photoQuickPopup/bg_drag_image.png +0 -0
- data/vendor/assets/images/smart_editor/photoQuickPopup/btn_cancel.png +0 -0
- data/vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm.png +0 -0
- data/vendor/assets/images/smart_editor/photoQuickPopup/btn_confirm2.png +0 -0
- data/vendor/assets/images/smart_editor/photoQuickPopup/btn_del.png +0 -0
- data/vendor/assets/images/smart_editor/photoQuickPopup/btn_find.png +0 -0
- data/vendor/assets/images/smart_editor/text_tool_set.png +0 -0
- data/vendor/assets/images/smart_editor/text_tool_set2.png +0 -0
- data/vendor/assets/javascripts/smart_editor/HuskyEZCreator.js +133 -0
- data/vendor/assets/javascripts/smart_editor/SE2B_Configuration.js +77 -0
- data/vendor/assets/javascripts/smart_editor/SE2BasicCreator.js +85 -0
- data/vendor/assets/javascripts/smart_editor/hp_SE2M_AttachQuickPhoto.js +106 -0
- data/vendor/assets/javascripts/smart_editor/jindo.min.js +12699 -0
- data/vendor/assets/javascripts/smart_editor/jindo_component.js +279 -0
- data/vendor/assets/javascripts/smart_editor/loader-min.js +120 -0
- data/vendor/assets/javascripts/smart_editor.js +21 -0
- data/vendor/assets/stylesheets/smart_editor/smart_editor2.css +262 -0
- data/vendor/assets/stylesheets/smart_editor/smart_editor2_in.css +20 -0
- data/vendor/assets/stylesheets/smart_editor/smart_editor2_items.css +454 -0
- data/vendor/assets/stylesheets/smart_editor/smart_editor2_out.css +24 -0
- metadata +331 -0
@@ -0,0 +1,713 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
|
3
|
+
|
4
|
+
Started GET "/" for 127.0.0.1 at 2013-01-01 16:30:55 +0900
|
5
|
+
Connecting to database specified by database.yml
|
6
|
+
|
7
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
8
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
9
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
10
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
11
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
12
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
13
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
14
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
15
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
16
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
17
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
18
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
19
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
20
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
21
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
22
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
23
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
24
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
25
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
26
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
27
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
28
|
+
|
29
|
+
|
30
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.2ms)
|
31
|
+
Connecting to database specified by database.yml
|
32
|
+
|
33
|
+
|
34
|
+
Started GET "/" for 127.0.0.1 at 2013-01-02 22:57:26 +0900
|
35
|
+
Connecting to database specified by database.yml
|
36
|
+
|
37
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
38
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
39
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
40
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
41
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
42
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
43
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
44
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
45
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
46
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
47
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
48
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
49
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
50
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
51
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
52
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
53
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
54
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
55
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
56
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
57
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
58
|
+
|
59
|
+
|
60
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.3ms)
|
61
|
+
|
62
|
+
|
63
|
+
Started GET "/editr_images" for 127.0.0.1 at 2013-01-02 22:57:32 +0900
|
64
|
+
|
65
|
+
ActionController::RoutingError (No route matches [GET] "/editr_images"):
|
66
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
67
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
68
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
69
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
70
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
71
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
72
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
73
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
74
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
75
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
76
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
77
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
78
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
79
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
80
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
81
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
82
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
83
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
84
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
85
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
86
|
+
|
87
|
+
|
88
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
89
|
+
|
90
|
+
|
91
|
+
Started GET "/editr_images" for 127.0.0.1 at 2013-01-02 22:57:36 +0900
|
92
|
+
|
93
|
+
ActionController::RoutingError (No route matches [GET] "/editr_images"):
|
94
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
95
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
96
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
97
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
98
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
99
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
100
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
101
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
102
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
103
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
104
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
105
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
106
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
107
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
108
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
109
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
110
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
111
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
112
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
113
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
114
|
+
|
115
|
+
|
116
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
117
|
+
|
118
|
+
|
119
|
+
Started GET "/smart_editor" for 127.0.0.1 at 2013-01-02 22:58:12 +0900
|
120
|
+
|
121
|
+
ActionController::RoutingError (No route matches [GET] "/smart_editor"):
|
122
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
123
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
124
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
125
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
126
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
127
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
128
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
129
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
130
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
131
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
132
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
133
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
134
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
135
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
136
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
137
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
138
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
139
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
140
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
141
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
142
|
+
|
143
|
+
|
144
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
|
145
|
+
|
146
|
+
|
147
|
+
Started GET "/smart_editor/editor_images" for 127.0.0.1 at 2013-01-02 22:58:17 +0900
|
148
|
+
|
149
|
+
AbstractController::ActionNotFound (The action 'show' could not be found for SmartEditor::EditorImagesController):
|
150
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:116:in `process'
|
151
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
152
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
153
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
154
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
155
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
156
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
157
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
158
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
159
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
160
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
161
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
162
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
163
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
164
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
165
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
166
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
167
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
168
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
169
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
170
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
171
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
172
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
173
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
174
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
175
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
176
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
177
|
+
activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
|
178
|
+
activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
179
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
180
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__2198462517044840090__call__2872178481225732260__callbacks'
|
181
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
182
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
183
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
184
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
185
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
186
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
187
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
188
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
189
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
190
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
191
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
192
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
193
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
194
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
195
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
196
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
197
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
198
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
199
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
200
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
201
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
202
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
203
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
204
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
205
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
206
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
207
|
+
|
208
|
+
|
209
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
|
210
|
+
|
211
|
+
|
212
|
+
Started GET "/smart_editor/editor_images" for 127.0.0.1 at 2013-01-02 22:58:48 +0900
|
213
|
+
|
214
|
+
AbstractController::ActionNotFound (The action 'show' could not be found for SmartEditor::EditorImagesController):
|
215
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:116:in `process'
|
216
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
217
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
218
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
219
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
220
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
221
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
222
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
223
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
224
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
225
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
226
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
227
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
228
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
229
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
230
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
231
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
232
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
233
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
234
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
235
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
236
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
237
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
238
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
239
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
240
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
241
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
242
|
+
activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
|
243
|
+
activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
244
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
245
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__2198462517044840090__call__2872178481225732260__callbacks'
|
246
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
247
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
248
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
249
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
250
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
251
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
252
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
253
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
254
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
255
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
256
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
257
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
258
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
259
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
260
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
261
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
262
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
263
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
264
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
265
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
266
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
267
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
268
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
269
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
270
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
271
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
272
|
+
|
273
|
+
|
274
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
|
275
|
+
|
276
|
+
|
277
|
+
Started GET "/smart_editor/editor_images" for 127.0.0.1 at 2013-01-02 22:58:58 +0900
|
278
|
+
Processing by SmartEditor::EditorImagesController#index as HTML
|
279
|
+
Rendered /Users/choi0hun/Project/smart_editor/app/views/smart_editor/editor_images/index.html.erb within layouts/smart_editor/application (0.4ms)
|
280
|
+
Compiled smart_editor/editor_images.css (0ms) (pid 849)
|
281
|
+
Compiled smart_editor/application.css (54ms) (pid 849)
|
282
|
+
Compiled jquery.js (3ms) (pid 849)
|
283
|
+
Compiled jquery_ujs.js (0ms) (pid 849)
|
284
|
+
Compiled smart_editor/editor_images.js (0ms) (pid 849)
|
285
|
+
Compiled smart_editor/application.js (84ms) (pid 849)
|
286
|
+
Completed 200 OK in 191ms (Views: 190.6ms | ActiveRecord: 0.0ms)
|
287
|
+
|
288
|
+
|
289
|
+
Started GET "/assets/smart_editor/application.css?body=1" for 127.0.0.1 at 2013-01-02 22:58:59 +0900
|
290
|
+
Served asset /smart_editor/application.css - 200 OK (11ms)
|
291
|
+
|
292
|
+
|
293
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-02 22:58:59 +0900
|
294
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
295
|
+
|
296
|
+
|
297
|
+
Started GET "/assets/smart_editor/editor_images.js?body=1" for 127.0.0.1 at 2013-01-02 22:58:59 +0900
|
298
|
+
Served asset /smart_editor/editor_images.js - 200 OK (3ms)
|
299
|
+
|
300
|
+
|
301
|
+
Started GET "/assets/smart_editor/editor_images.css?body=1" for 127.0.0.1 at 2013-01-02 22:58:59 +0900
|
302
|
+
Served asset /smart_editor/editor_images.css - 200 OK (6ms)
|
303
|
+
|
304
|
+
|
305
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-02 22:58:59 +0900
|
306
|
+
Served asset /jquery.js - 200 OK (8ms)
|
307
|
+
|
308
|
+
|
309
|
+
Started GET "/assets/smart_editor/application.js?body=1" for 127.0.0.1 at 2013-01-02 22:58:59 +0900
|
310
|
+
Served asset /smart_editor/application.js - 200 OK (48ms)
|
311
|
+
|
312
|
+
|
313
|
+
Started GET "/smart_editor/editor_images" for 127.0.0.1 at 2013-01-02 22:59:00 +0900
|
314
|
+
Processing by SmartEditor::EditorImagesController#index as HTML
|
315
|
+
Rendered /Users/choi0hun/Project/smart_editor/app/views/smart_editor/editor_images/index.html.erb within layouts/smart_editor/application (0.0ms)
|
316
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
317
|
+
|
318
|
+
|
319
|
+
Started GET "/assets/smart_editor/editor_images.css?body=1" for 127.0.0.1 at 2013-01-02 22:59:00 +0900
|
320
|
+
Served asset /smart_editor/editor_images.css - 304 Not Modified (0ms)
|
321
|
+
|
322
|
+
|
323
|
+
Started GET "/assets/smart_editor/application.css?body=1" for 127.0.0.1 at 2013-01-02 22:59:00 +0900
|
324
|
+
Served asset /smart_editor/application.css - 304 Not Modified (0ms)
|
325
|
+
|
326
|
+
|
327
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-02 22:59:00 +0900
|
328
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
329
|
+
|
330
|
+
|
331
|
+
Started GET "/assets/smart_editor/editor_images.js?body=1" for 127.0.0.1 at 2013-01-02 22:59:00 +0900
|
332
|
+
Served asset /smart_editor/editor_images.js - 304 Not Modified (0ms)
|
333
|
+
|
334
|
+
|
335
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-02 22:59:00 +0900
|
336
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
337
|
+
|
338
|
+
|
339
|
+
Started GET "/assets/smart_editor/application.js?body=1" for 127.0.0.1 at 2013-01-02 22:59:00 +0900
|
340
|
+
Served asset /smart_editor/application.js - 304 Not Modified (0ms)
|
341
|
+
|
342
|
+
|
343
|
+
Started GET "/smart_editor/editor_images" for 127.0.0.1 at 2013-01-02 23:04:52 +0900
|
344
|
+
Processing by SmartEditor::EditorImagesController#index as HTML
|
345
|
+
Rendered /Users/choi0hun/Project/smart_editor/app/views/smart_editor/editor_images/index.html.erb within layouts/smart_editor/application (0.0ms)
|
346
|
+
Completed 500 Internal Server Error in 29ms
|
347
|
+
|
348
|
+
ActionView::Template::Error (cannot load such file -- coffee_script
|
349
|
+
(in /Users/choi0hun/Project/smart_editor/app/assets/javascripts/smart_editor/editor_images.js.coffee)):
|
350
|
+
3: <head>
|
351
|
+
4: <title>SmartEditor</title>
|
352
|
+
5: <%= stylesheet_link_tag "smart_editor/application", :media => "all" %>
|
353
|
+
6: <%= javascript_include_tag "smart_editor/application" %>
|
354
|
+
7: <%= csrf_meta_tags %>
|
355
|
+
8: </head>
|
356
|
+
9: <body>
|
357
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:251:in `require'
|
358
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:251:in `block in require'
|
359
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:236:in `load_dependency'
|
360
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:251:in `require'
|
361
|
+
tilt (1.3.3) lib/tilt/template.rb:108:in `require_template_library'
|
362
|
+
tilt (1.3.3) lib/tilt/coffee.rb:36:in `initialize_engine'
|
363
|
+
tilt (1.3.3) lib/tilt/template.rb:55:in `initialize'
|
364
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `new'
|
365
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `block in evaluate'
|
366
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
367
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
368
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
369
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
370
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
371
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
372
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
373
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
374
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
375
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
376
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
377
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
378
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
379
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
380
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
381
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
382
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
383
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
384
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
385
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
386
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
387
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
388
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
389
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
390
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
391
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
392
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
|
393
|
+
sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
|
394
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
|
395
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
396
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
397
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
398
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
399
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
400
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
401
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag'
|
402
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
403
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
404
|
+
/Users/choi0hun/Project/smart_editor/app/views/layouts/smart_editor/application.html.erb:6:in `___sers_choi_hun__roject_smart_editor_app_views_layouts_smart_editor_application_html_erb___654547129859381683_70297628531640'
|
405
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
406
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
407
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
408
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
409
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
410
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
411
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
412
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
413
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
414
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
415
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
416
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
417
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
418
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
419
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
420
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
421
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
422
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
423
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
424
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
425
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
426
|
+
activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
427
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
428
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
429
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
430
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
431
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
432
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
433
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__3209061273351268313__process_action__3054152670867909668__callbacks'
|
434
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
435
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
436
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
437
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
438
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
439
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
440
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
441
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
442
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
443
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
444
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
445
|
+
activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
446
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
447
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
448
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
449
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
450
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
451
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
452
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
453
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
454
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
455
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
456
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
457
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
458
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
459
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
460
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
461
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
462
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
463
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
464
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
465
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
466
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
467
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
468
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
469
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
470
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
471
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
472
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
473
|
+
activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
|
474
|
+
activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
475
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
476
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__2198462517044840090__call__2872178481225732260__callbacks'
|
477
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
478
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
479
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
480
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
481
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
482
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
483
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
484
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
485
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
486
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
487
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
488
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
489
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
490
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
491
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
492
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
493
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
494
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
495
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
496
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
497
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
498
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
499
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
500
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
501
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
502
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
503
|
+
|
504
|
+
|
505
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
506
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
507
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (14.5ms)
|
508
|
+
|
509
|
+
|
510
|
+
Started GET "/smart_editor/editor_images" for 127.0.0.1 at 2013-01-02 23:04:53 +0900
|
511
|
+
Processing by SmartEditor::EditorImagesController#index as HTML
|
512
|
+
Rendered /Users/choi0hun/Project/smart_editor/app/views/smart_editor/editor_images/index.html.erb within layouts/smart_editor/application (0.0ms)
|
513
|
+
Completed 500 Internal Server Error in 23ms
|
514
|
+
|
515
|
+
ActionView::Template::Error (cannot load such file -- coffee_script
|
516
|
+
(in /Users/choi0hun/Project/smart_editor/app/assets/javascripts/smart_editor/editor_images.js.coffee)):
|
517
|
+
3: <head>
|
518
|
+
4: <title>SmartEditor</title>
|
519
|
+
5: <%= stylesheet_link_tag "smart_editor/application", :media => "all" %>
|
520
|
+
6: <%= javascript_include_tag "smart_editor/application" %>
|
521
|
+
7: <%= csrf_meta_tags %>
|
522
|
+
8: </head>
|
523
|
+
9: <body>
|
524
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:251:in `require'
|
525
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:251:in `block in require'
|
526
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:236:in `load_dependency'
|
527
|
+
activesupport (3.2.9) lib/active_support/dependencies.rb:251:in `require'
|
528
|
+
tilt (1.3.3) lib/tilt/template.rb:108:in `require_template_library'
|
529
|
+
tilt (1.3.3) lib/tilt/coffee.rb:36:in `initialize_engine'
|
530
|
+
tilt (1.3.3) lib/tilt/template.rb:55:in `initialize'
|
531
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `new'
|
532
|
+
sprockets (2.2.2) lib/sprockets/context.rb:192:in `block in evaluate'
|
533
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `each'
|
534
|
+
sprockets (2.2.2) lib/sprockets/context.rb:190:in `evaluate'
|
535
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:12:in `initialize'
|
536
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
537
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
538
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
539
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
540
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
541
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
542
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
543
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
544
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
545
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:111:in `block in resolve_dependencies'
|
546
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `each'
|
547
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:105:in `resolve_dependencies'
|
548
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:97:in `build_required_assets'
|
549
|
+
sprockets (2.2.2) lib/sprockets/processed_asset.rb:16:in `initialize'
|
550
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `new'
|
551
|
+
sprockets (2.2.2) lib/sprockets/base.rb:249:in `block in build_asset'
|
552
|
+
sprockets (2.2.2) lib/sprockets/base.rb:270:in `circular_call_protection'
|
553
|
+
sprockets (2.2.2) lib/sprockets/base.rb:248:in `build_asset'
|
554
|
+
sprockets (2.2.2) lib/sprockets/index.rb:93:in `block in build_asset'
|
555
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:19:in `cache_asset'
|
556
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
557
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
558
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
559
|
+
sprockets (2.2.2) lib/sprockets/bundled_asset.rb:38:in `init_with'
|
560
|
+
sprockets (2.2.2) lib/sprockets/asset.rb:24:in `from_hash'
|
561
|
+
sprockets (2.2.2) lib/sprockets/caching.rb:15:in `cache_asset'
|
562
|
+
sprockets (2.2.2) lib/sprockets/index.rb:92:in `build_asset'
|
563
|
+
sprockets (2.2.2) lib/sprockets/base.rb:169:in `find_asset'
|
564
|
+
sprockets (2.2.2) lib/sprockets/index.rb:60:in `find_asset'
|
565
|
+
sprockets (2.2.2) lib/sprockets/environment.rb:78:in `find_asset'
|
566
|
+
sprockets (2.2.2) lib/sprockets/base.rb:177:in `[]'
|
567
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:126:in `asset_for'
|
568
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:27:in `block in javascript_include_tag'
|
569
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `collect'
|
570
|
+
actionpack (3.2.9) lib/sprockets/helpers/rails_helper.rb:26:in `javascript_include_tag'
|
571
|
+
/Users/choi0hun/Project/smart_editor/app/views/layouts/smart_editor/application.html.erb:6:in `___sers_choi_hun__roject_smart_editor_app_views_layouts_smart_editor_application_html_erb___654547129859381683_70297628531640'
|
572
|
+
actionpack (3.2.9) lib/action_view/template.rb:145:in `block in render'
|
573
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:125:in `instrument'
|
574
|
+
actionpack (3.2.9) lib/action_view/template.rb:143:in `render'
|
575
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:59:in `render_with_layout'
|
576
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
577
|
+
actionpack (3.2.9) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
578
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
579
|
+
actionpack (3.2.9) lib/action_view/renderer/renderer.rb:17:in `render'
|
580
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
581
|
+
actionpack (3.2.9) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
582
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
583
|
+
actionpack (3.2.9) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
584
|
+
actionpack (3.2.9) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
585
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:88:in `render'
|
586
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:16:in `render'
|
587
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
588
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
589
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
590
|
+
activesupport (3.2.9) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
591
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
592
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
593
|
+
activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
594
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
595
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
596
|
+
actionpack (3.2.9) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
597
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:167:in `process_action'
|
598
|
+
actionpack (3.2.9) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
599
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
600
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:403:in `_run__3209061273351268313__process_action__3054152670867909668__callbacks'
|
601
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
602
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
603
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
604
|
+
actionpack (3.2.9) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
605
|
+
actionpack (3.2.9) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
606
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
607
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `block in instrument'
|
608
|
+
activesupport (3.2.9) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
609
|
+
activesupport (3.2.9) lib/active_support/notifications.rb:123:in `instrument'
|
610
|
+
actionpack (3.2.9) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
611
|
+
actionpack (3.2.9) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
612
|
+
activerecord (3.2.9) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
613
|
+
actionpack (3.2.9) lib/abstract_controller/base.rb:121:in `process'
|
614
|
+
actionpack (3.2.9) lib/abstract_controller/rendering.rb:45:in `process'
|
615
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:203:in `dispatch'
|
616
|
+
actionpack (3.2.9) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
617
|
+
actionpack (3.2.9) lib/action_controller/metal.rb:246:in `block in action'
|
618
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
619
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
620
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
621
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
622
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
623
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
624
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
625
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
626
|
+
railties (3.2.9) lib/rails/railtie/configurable.rb:30:in `method_missing'
|
627
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
628
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
629
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
630
|
+
actionpack (3.2.9) lib/action_dispatch/routing/route_set.rb:601:in `call'
|
631
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
632
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
633
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
634
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/head.rb:14:in `call'
|
635
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
636
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
637
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
638
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
639
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
640
|
+
activerecord (3.2.9) lib/active_record/query_cache.rb:64:in `call'
|
641
|
+
activerecord (3.2.9) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
642
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
643
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `_run__2198462517044840090__call__2872178481225732260__callbacks'
|
644
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:405:in `__run_callback'
|
645
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
646
|
+
activesupport (3.2.9) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
647
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
648
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
649
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
650
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
651
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
652
|
+
railties (3.2.9) lib/rails/rack/logger.rb:32:in `call_app'
|
653
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `block in call'
|
654
|
+
activesupport (3.2.9) lib/active_support/tagged_logging.rb:22:in `tagged'
|
655
|
+
railties (3.2.9) lib/rails/rack/logger.rb:16:in `call'
|
656
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
657
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
658
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
659
|
+
activesupport (3.2.9) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
660
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
661
|
+
actionpack (3.2.9) lib/action_dispatch/middleware/static.rb:62:in `call'
|
662
|
+
railties (3.2.9) lib/rails/engine.rb:479:in `call'
|
663
|
+
railties (3.2.9) lib/rails/application.rb:223:in `call'
|
664
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
665
|
+
railties (3.2.9) lib/rails/rack/log_tailer.rb:17:in `call'
|
666
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
667
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
668
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
669
|
+
/Users/choi0hun/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
670
|
+
|
671
|
+
|
672
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_trace.erb (40.8ms)
|
673
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
674
|
+
Rendered /Users/choi0hun/.rvm/gems/ruby-1.9.3-p194/gems/actionpack-3.2.9/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (49.9ms)
|
675
|
+
|
676
|
+
|
677
|
+
Started GET "/smart_editor/editor_images" for 127.0.0.1 at 2013-01-02 23:05:19 +0900
|
678
|
+
Processing by SmartEditor::EditorImagesController#index as HTML
|
679
|
+
Rendered /Users/choi0hun/Project/smart_editor/app/views/smart_editor/editor_images/index.html.erb within layouts/smart_editor/application (0.0ms)
|
680
|
+
Compiled smart_editor/editor_images.js (0ms) (pid 849)
|
681
|
+
Compiled smart_editor/application.js (3ms) (pid 849)
|
682
|
+
Completed 200 OK in 30ms (Views: 29.7ms | ActiveRecord: 0.0ms)
|
683
|
+
|
684
|
+
|
685
|
+
Started GET "/assets/smart_editor/editor_images.css?body=1" for 127.0.0.1 at 2013-01-02 23:05:20 +0900
|
686
|
+
Served asset /smart_editor/editor_images.css - 304 Not Modified (0ms)
|
687
|
+
|
688
|
+
|
689
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-01-02 23:05:20 +0900
|
690
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
691
|
+
|
692
|
+
|
693
|
+
Started GET "/assets/smart_editor/application.css?body=1" for 127.0.0.1 at 2013-01-02 23:05:20 +0900
|
694
|
+
Served asset /smart_editor/application.css - 304 Not Modified (0ms)
|
695
|
+
|
696
|
+
|
697
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-01-02 23:05:20 +0900
|
698
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
699
|
+
|
700
|
+
|
701
|
+
Started GET "/assets/smart_editor/editor_images.js?body=1" for 127.0.0.1 at 2013-01-02 23:05:20 +0900
|
702
|
+
Served asset /smart_editor/editor_images.js - 200 OK (3ms)
|
703
|
+
|
704
|
+
|
705
|
+
Started GET "/assets/smart_editor/application.js?body=1" for 127.0.0.1 at 2013-01-02 23:05:20 +0900
|
706
|
+
Served asset /smart_editor/application.js - 304 Not Modified (13ms)
|
707
|
+
Connecting to database specified by database.yml
|
708
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
709
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
710
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
711
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
712
|
+
Connecting to database specified by database.yml
|
713
|
+
Connecting to database specified by database.yml
|