left_side 0.0.5 → 1.0.0
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/README.md +13 -8
- data/left_side.gemspec +2 -0
- data/lib/left_side/base.rb +8 -1
- data/lib/left_side/core_ext.rb +4 -0
- data/lib/left_side/railtie.rb +11 -0
- data/lib/left_side/version.rb +1 -1
- data/lib/left_side.rb +1 -0
- data/spec/dummy/config/environments/production.rb +2 -2
- data/spec/dummy/config/left_side/section.yml +1 -1
- data/spec/dummy/log/development.log +382 -0
- data/spec/dummy/log/test.log +539 -0
- metadata +34 -1
data/README.md
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
[<img src="https://secure.travis-ci.org/zlx/left_side.png" />](https://travis-ci.org/zlx/left_side)
|
|
1
|
+
LeftSide [](https://travis-ci.org/zlx/left_side) [](https://codeclimate.com/github/zlx/left_side)
|
|
2
|
+
========
|
|
4
3
|
|
|
5
4
|
|
|
6
5
|
left_side is a smart tool to render sidebar for your rails app
|
|
@@ -50,15 +49,19 @@ Then run:
|
|
|
50
49
|
|
|
51
50
|
- in the action
|
|
52
51
|
|
|
53
|
-
|
|
52
|
+
```ruby
|
|
53
|
+
render :layout => false
|
|
54
|
+
```
|
|
54
55
|
|
|
55
56
|
### How to change the default left_side in some special page
|
|
56
57
|
|
|
57
58
|
- in the page
|
|
58
59
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
60
|
+
```ruby
|
|
61
|
+
<% content_for :nav_left do%>
|
|
62
|
+
<%= render_left_side :tasks %>
|
|
63
|
+
<% end %>
|
|
64
|
+
```
|
|
62
65
|
|
|
63
66
|
*tasks is the top string in the section.yml*
|
|
64
67
|
|
|
@@ -66,7 +69,9 @@ Then run:
|
|
|
66
69
|
|
|
67
70
|
+ run
|
|
68
71
|
|
|
69
|
-
|
|
72
|
+
```sh
|
|
73
|
+
rails g left_side:stylesheet
|
|
74
|
+
```
|
|
70
75
|
|
|
71
76
|
+ modify *assets/stylesheets/left-side.css.scss*
|
|
72
77
|
|
data/left_side.gemspec
CHANGED
|
@@ -25,6 +25,8 @@ Gem::Specification.new do |gem|
|
|
|
25
25
|
gem.add_development_dependency "sqlite3"
|
|
26
26
|
gem.add_development_dependency "capybara"
|
|
27
27
|
gem.add_development_dependency "sass"
|
|
28
|
+
gem.add_development_dependency "uglifier"
|
|
29
|
+
gem.add_development_dependency "therubyracer"
|
|
28
30
|
|
|
29
31
|
gem.add_development_dependency "launchy"
|
|
30
32
|
gem.add_development_dependency "debugger"
|
data/lib/left_side/base.rb
CHANGED
|
@@ -3,22 +3,29 @@ require 'left_side/core_ext'
|
|
|
3
3
|
|
|
4
4
|
module LeftSide
|
|
5
5
|
class Base
|
|
6
|
+
|
|
6
7
|
include Singleton
|
|
7
8
|
class << self
|
|
8
9
|
|
|
9
10
|
def load
|
|
10
11
|
@@sections ||= YAML.load_file(File.join(::Rails.root, 'config', 'left_side', 'section.yml'))
|
|
12
|
+
process_url_helper
|
|
11
13
|
define_section_method
|
|
12
14
|
instance
|
|
13
15
|
end
|
|
14
16
|
|
|
15
17
|
private
|
|
18
|
+
|
|
19
|
+
def process_url_helper
|
|
20
|
+
@@sections.process_each_value{|url| instance.respond_to?(url) ? instance.send(url) : url}
|
|
21
|
+
end
|
|
22
|
+
|
|
16
23
|
def create_section_method(name)
|
|
17
24
|
send(:define_method, name){ @@sections[name] }
|
|
18
25
|
end
|
|
19
26
|
|
|
20
27
|
def controller_name(url)
|
|
21
|
-
::Rails.application.routes.recognize_path(url)[:controller].scan(/\w+$/).first.singularize
|
|
28
|
+
::Rails.application.routes.recognize_path(instance.respond_to?(url) ? instance.send(url) : url)[:controller].scan(/\w+$/).first.singularize
|
|
22
29
|
end
|
|
23
30
|
|
|
24
31
|
def fetch_section_controller_names(section)
|
data/lib/left_side/core_ext.rb
CHANGED
|
@@ -31,4 +31,8 @@ class Hash
|
|
|
31
31
|
def fetch_values
|
|
32
32
|
self.map{|_, v| v.is_a?(Hash) ? v.fetch_values : v}.join(',').split(',')
|
|
33
33
|
end
|
|
34
|
+
|
|
35
|
+
def process_each_value(&block)
|
|
36
|
+
self.each{|k, v| self[k] = v.is_a?(Hash) ? v.process_each_value(&block) : Array(v).map{|vv| yield vv}}
|
|
37
|
+
end
|
|
34
38
|
end
|
data/lib/left_side/version.rb
CHANGED
data/lib/left_side.rb
CHANGED
|
@@ -15,7 +15,7 @@ Dummy::Application.configure do
|
|
|
15
15
|
config.assets.compress = true
|
|
16
16
|
|
|
17
17
|
# Don't fallback to assets pipeline if a precompiled asset is missed
|
|
18
|
-
config.assets.compile =
|
|
18
|
+
config.assets.compile = true
|
|
19
19
|
|
|
20
20
|
# Generate digests for assets URLs
|
|
21
21
|
config.assets.digest = true
|
|
@@ -46,7 +46,7 @@ Dummy::Application.configure do
|
|
|
46
46
|
# config.action_controller.asset_host = "http://assets.example.com"
|
|
47
47
|
|
|
48
48
|
# Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
|
|
49
|
-
#
|
|
49
|
+
#config.assets.precompile += %w( search.js )
|
|
50
50
|
|
|
51
51
|
# Disable delivery errors, bad email addresses will be ignored
|
|
52
52
|
# config.action_mailer.raise_delivery_errors = false
|
|
@@ -2969,3 +2969,385 @@ Served asset /bootstrap.min.css - 304 Not Modified (0ms)
|
|
|
2969
2969
|
|
|
2970
2970
|
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-06 13:40:13 +0800
|
|
2971
2971
|
Served asset /application.js - 304 Not Modified (0ms)
|
|
2972
|
+
|
|
2973
|
+
|
|
2974
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 14:30:25 +0800
|
|
2975
|
+
Connecting to database specified by database.yml
|
|
2976
|
+
Processing by TodosController#index as HTML
|
|
2977
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
|
2978
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
2979
|
+
Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms)
|
|
2980
|
+
|
|
2981
|
+
|
|
2982
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-02-06 14:30:25 +0800
|
|
2983
|
+
Served asset /application.css - 304 Not Modified (6ms)
|
|
2984
|
+
|
|
2985
|
+
|
|
2986
|
+
Started GET "/assets/left-side.css?body=1" for 127.0.0.1 at 2013-02-06 14:30:25 +0800
|
|
2987
|
+
Served asset /left-side.css - 304 Not Modified (1ms)
|
|
2988
|
+
|
|
2989
|
+
|
|
2990
|
+
Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-02-06 14:30:25 +0800
|
|
2991
|
+
Served asset /bootstrap.min.css - 304 Not Modified (1ms)
|
|
2992
|
+
|
|
2993
|
+
|
|
2994
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-06 14:30:25 +0800
|
|
2995
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
2996
|
+
|
|
2997
|
+
|
|
2998
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 14:31:32 +0800
|
|
2999
|
+
Processing by TodosController#index as HTML
|
|
3000
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3001
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
3002
|
+
Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
|
|
3003
|
+
|
|
3004
|
+
|
|
3005
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-02-06 14:31:32 +0800
|
|
3006
|
+
Served asset /application.css - 304 Not Modified (2ms)
|
|
3007
|
+
|
|
3008
|
+
|
|
3009
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-06 14:31:32 +0800
|
|
3010
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
3011
|
+
|
|
3012
|
+
|
|
3013
|
+
Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-02-06 14:31:32 +0800
|
|
3014
|
+
Served asset /bootstrap.min.css - 304 Not Modified (0ms)
|
|
3015
|
+
|
|
3016
|
+
|
|
3017
|
+
Started GET "/assets/left-side.css?body=1" for 127.0.0.1 at 2013-02-06 14:31:32 +0800
|
|
3018
|
+
Served asset /left-side.css - 304 Not Modified (0ms)
|
|
3019
|
+
|
|
3020
|
+
|
|
3021
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:31:36 +0800
|
|
3022
|
+
Processing by TasksController#index as HTML
|
|
3023
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
3024
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
3025
|
+
Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
|
|
3026
|
+
|
|
3027
|
+
|
|
3028
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-02-06 14:31:37 +0800
|
|
3029
|
+
Served asset /application.css - 304 Not Modified (3ms)
|
|
3030
|
+
|
|
3031
|
+
|
|
3032
|
+
Started GET "/assets/left-side.css?body=1" for 127.0.0.1 at 2013-02-06 14:31:37 +0800
|
|
3033
|
+
Served asset /left-side.css - 304 Not Modified (0ms)
|
|
3034
|
+
|
|
3035
|
+
|
|
3036
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-06 14:31:37 +0800
|
|
3037
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
|
3038
|
+
|
|
3039
|
+
|
|
3040
|
+
Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-02-06 14:31:37 +0800
|
|
3041
|
+
Served asset /bootstrap.min.css - 304 Not Modified (0ms)
|
|
3042
|
+
|
|
3043
|
+
|
|
3044
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:31:52 +0800
|
|
3045
|
+
Connecting to database specified by database.yml
|
|
3046
|
+
Processing by TasksController#index as HTML
|
|
3047
|
+
Rendered tasks/index.html.erb within layouts/application (0.7ms)
|
|
3048
|
+
Completed 500 Internal Server Error in 25ms
|
|
3049
|
+
|
|
3050
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3051
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___2434265780197295702_26151420'
|
|
3052
|
+
|
|
3053
|
+
|
|
3054
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3055
|
+
|
|
3056
|
+
|
|
3057
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:31:53 +0800
|
|
3058
|
+
Processing by TasksController#index as HTML
|
|
3059
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3060
|
+
Completed 500 Internal Server Error in 6ms
|
|
3061
|
+
|
|
3062
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3063
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___2434265780197295702_26151420'
|
|
3064
|
+
|
|
3065
|
+
|
|
3066
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3067
|
+
|
|
3068
|
+
|
|
3069
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:31:54 +0800
|
|
3070
|
+
Processing by TasksController#index as HTML
|
|
3071
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3072
|
+
Completed 500 Internal Server Error in 8ms
|
|
3073
|
+
|
|
3074
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3075
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___2434265780197295702_26151420'
|
|
3076
|
+
|
|
3077
|
+
|
|
3078
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3079
|
+
|
|
3080
|
+
|
|
3081
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:31:55 +0800
|
|
3082
|
+
Processing by TasksController#index as HTML
|
|
3083
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3084
|
+
Completed 500 Internal Server Error in 7ms
|
|
3085
|
+
|
|
3086
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3087
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___2434265780197295702_26151420'
|
|
3088
|
+
|
|
3089
|
+
|
|
3090
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3091
|
+
|
|
3092
|
+
|
|
3093
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:31:55 +0800
|
|
3094
|
+
Processing by TasksController#index as HTML
|
|
3095
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3096
|
+
Completed 500 Internal Server Error in 8ms
|
|
3097
|
+
|
|
3098
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3099
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___2434265780197295702_26151420'
|
|
3100
|
+
|
|
3101
|
+
|
|
3102
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3103
|
+
|
|
3104
|
+
|
|
3105
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:31:56 +0800
|
|
3106
|
+
Processing by TasksController#index as HTML
|
|
3107
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3108
|
+
Completed 500 Internal Server Error in 8ms
|
|
3109
|
+
|
|
3110
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3111
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___2434265780197295702_26151420'
|
|
3112
|
+
|
|
3113
|
+
|
|
3114
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3115
|
+
|
|
3116
|
+
|
|
3117
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:59:19 +0800
|
|
3118
|
+
Connecting to database specified by database.yml
|
|
3119
|
+
Processing by TasksController#index as HTML
|
|
3120
|
+
Rendered tasks/index.html.erb within layouts/application (0.8ms)
|
|
3121
|
+
Completed 500 Internal Server Error in 16ms
|
|
3122
|
+
|
|
3123
|
+
ActionView::Template::Error (undefined method `root' for LeftSide::Rails:Module):
|
|
3124
|
+
11: <% if content_for? :nav_left %>
|
|
3125
|
+
12: <%= yield :nav_left %>
|
|
3126
|
+
13: <% else %>
|
|
3127
|
+
14: <%= render_left_side controller_name %>
|
|
3128
|
+
15: <% end %>
|
|
3129
|
+
16: </aside>
|
|
3130
|
+
17: <section class='span21'>
|
|
3131
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___1923134023767721391_25224340'
|
|
3132
|
+
|
|
3133
|
+
|
|
3134
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
|
3135
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
|
3136
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.7ms)
|
|
3137
|
+
|
|
3138
|
+
|
|
3139
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:04 +0800
|
|
3140
|
+
Processing by TasksController#index as HTML
|
|
3141
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3142
|
+
Completed 500 Internal Server Error in 5ms
|
|
3143
|
+
|
|
3144
|
+
ActionView::Template::Error (undefined method `root' for LeftSide::Rails:Module):
|
|
3145
|
+
11: <% if content_for? :nav_left %>
|
|
3146
|
+
12: <%= yield :nav_left %>
|
|
3147
|
+
13: <% else %>
|
|
3148
|
+
14: <%= render_left_side controller_name %>
|
|
3149
|
+
15: <% end %>
|
|
3150
|
+
16: </aside>
|
|
3151
|
+
17: <section class='span21'>
|
|
3152
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___1923134023767721391_25224340'
|
|
3153
|
+
|
|
3154
|
+
|
|
3155
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
|
3156
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
|
3157
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
|
|
3158
|
+
|
|
3159
|
+
|
|
3160
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:06 +0800
|
|
3161
|
+
Processing by TasksController#index as HTML
|
|
3162
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3163
|
+
Completed 500 Internal Server Error in 4ms
|
|
3164
|
+
|
|
3165
|
+
ActionView::Template::Error (undefined method `root' for LeftSide::Rails:Module):
|
|
3166
|
+
11: <% if content_for? :nav_left %>
|
|
3167
|
+
12: <%= yield :nav_left %>
|
|
3168
|
+
13: <% else %>
|
|
3169
|
+
14: <%= render_left_side controller_name %>
|
|
3170
|
+
15: <% end %>
|
|
3171
|
+
16: </aside>
|
|
3172
|
+
17: <section class='span21'>
|
|
3173
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___1923134023767721391_25224340'
|
|
3174
|
+
|
|
3175
|
+
|
|
3176
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
|
3177
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
|
3178
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
|
|
3179
|
+
|
|
3180
|
+
|
|
3181
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:21 +0800
|
|
3182
|
+
Connecting to database specified by database.yml
|
|
3183
|
+
Processing by TasksController#index as HTML
|
|
3184
|
+
Rendered tasks/index.html.erb within layouts/application (0.7ms)
|
|
3185
|
+
Completed 500 Internal Server Error in 25ms
|
|
3186
|
+
|
|
3187
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3188
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___379066639842456743_28083560'
|
|
3189
|
+
|
|
3190
|
+
|
|
3191
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3192
|
+
|
|
3193
|
+
|
|
3194
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:23 +0800
|
|
3195
|
+
Processing by TasksController#index as HTML
|
|
3196
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3197
|
+
Completed 500 Internal Server Error in 6ms
|
|
3198
|
+
|
|
3199
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3200
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___379066639842456743_28083560'
|
|
3201
|
+
|
|
3202
|
+
|
|
3203
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3204
|
+
|
|
3205
|
+
|
|
3206
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:23 +0800
|
|
3207
|
+
Processing by TasksController#index as HTML
|
|
3208
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3209
|
+
Completed 500 Internal Server Error in 8ms
|
|
3210
|
+
|
|
3211
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3212
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___379066639842456743_28083560'
|
|
3213
|
+
|
|
3214
|
+
|
|
3215
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3216
|
+
|
|
3217
|
+
|
|
3218
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:24 +0800
|
|
3219
|
+
Processing by TasksController#index as HTML
|
|
3220
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3221
|
+
Completed 500 Internal Server Error in 9ms
|
|
3222
|
+
|
|
3223
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3224
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___379066639842456743_28083560'
|
|
3225
|
+
|
|
3226
|
+
|
|
3227
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3228
|
+
|
|
3229
|
+
|
|
3230
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:35 +0800
|
|
3231
|
+
Processing by TasksController#index as HTML
|
|
3232
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3233
|
+
Completed 500 Internal Server Error in 5ms
|
|
3234
|
+
|
|
3235
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3236
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___379066639842456743_28083560'
|
|
3237
|
+
|
|
3238
|
+
|
|
3239
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3240
|
+
|
|
3241
|
+
|
|
3242
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:37 +0800
|
|
3243
|
+
Processing by TasksController#index as HTML
|
|
3244
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3245
|
+
Completed 500 Internal Server Error in 9ms
|
|
3246
|
+
|
|
3247
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3248
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___379066639842456743_28083560'
|
|
3249
|
+
|
|
3250
|
+
|
|
3251
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3252
|
+
|
|
3253
|
+
|
|
3254
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:00:37 +0800
|
|
3255
|
+
Processing by TasksController#index as HTML
|
|
3256
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3257
|
+
Completed 500 Internal Server Error in 8ms
|
|
3258
|
+
|
|
3259
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3260
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb___379066639842456743_28083560'
|
|
3261
|
+
|
|
3262
|
+
|
|
3263
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3264
|
+
Connecting to database specified by database.yml
|
|
3265
|
+
Connecting to database specified by database.yml
|
|
3266
|
+
|
|
3267
|
+
|
|
3268
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:07:19 +0800
|
|
3269
|
+
Connecting to database specified by database.yml
|
|
3270
|
+
Processing by TasksController#index as HTML
|
|
3271
|
+
Rendered tasks/index.html.erb within layouts/application (0.7ms)
|
|
3272
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.7ms)
|
|
3273
|
+
Completed 500 Internal Server Error in 30ms
|
|
3274
|
+
|
|
3275
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3276
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__3639103398650063810_30942840'
|
|
3277
|
+
|
|
3278
|
+
|
|
3279
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3280
|
+
|
|
3281
|
+
|
|
3282
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:07:21 +0800
|
|
3283
|
+
Processing by TasksController#index as HTML
|
|
3284
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3285
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
|
3286
|
+
Completed 500 Internal Server Error in 13ms
|
|
3287
|
+
|
|
3288
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3289
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__3639103398650063810_30942840'
|
|
3290
|
+
|
|
3291
|
+
|
|
3292
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3293
|
+
|
|
3294
|
+
|
|
3295
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:07:22 +0800
|
|
3296
|
+
Processing by TasksController#index as HTML
|
|
3297
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3298
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
|
3299
|
+
Completed 500 Internal Server Error in 13ms
|
|
3300
|
+
|
|
3301
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3302
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__3639103398650063810_30942840'
|
|
3303
|
+
|
|
3304
|
+
|
|
3305
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
|
3306
|
+
|
|
3307
|
+
|
|
3308
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:07:22 +0800
|
|
3309
|
+
Processing by TasksController#index as HTML
|
|
3310
|
+
Rendered tasks/index.html.erb within layouts/application (0.0ms)
|
|
3311
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.0ms)
|
|
3312
|
+
Completed 500 Internal Server Error in 12ms
|
|
3313
|
+
|
|
3314
|
+
ActionController::RoutingError (No route matches "/tasks_path"):
|
|
3315
|
+
app/views/layouts/application.html.erb:14:in `_app_views_layouts_application_html_erb__3639103398650063810_30942840'
|
|
3316
|
+
|
|
3317
|
+
|
|
3318
|
+
Rendered /home/soffolk/.rvm/gems/ruby-1.9.3-p327-falcon/gems/actionpack-3.2.11/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.4ms)
|
|
3319
|
+
|
|
3320
|
+
|
|
3321
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:46:40 +0800
|
|
3322
|
+
Connecting to database specified by database.yml
|
|
3323
|
+
Processing by TasksController#index as HTML
|
|
3324
|
+
Rendered tasks/index.html.erb within layouts/application (0.7ms)
|
|
3325
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
3326
|
+
Completed 200 OK in 27ms (Views: 27.2ms | ActiveRecord: 0.0ms)
|
|
3327
|
+
|
|
3328
|
+
|
|
3329
|
+
Started GET "/assets/bootstrap.min.css?body=1" for 127.0.0.1 at 2013-02-06 15:46:41 +0800
|
|
3330
|
+
Served asset /bootstrap.min.css - 200 OK (1ms)
|
|
3331
|
+
|
|
3332
|
+
|
|
3333
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-02-06 15:46:41 +0800
|
|
3334
|
+
Served asset /application.css - 200 OK (5ms)
|
|
3335
|
+
|
|
3336
|
+
|
|
3337
|
+
Started GET "/assets/left-side.css?body=1" for 127.0.0.1 at 2013-02-06 15:46:41 +0800
|
|
3338
|
+
Served asset /left-side.css - 200 OK (2ms)
|
|
3339
|
+
|
|
3340
|
+
|
|
3341
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-06 15:46:41 +0800
|
|
3342
|
+
Served asset /application.js - 304 Not Modified (1ms)
|
|
3343
|
+
|
|
3344
|
+
|
|
3345
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:46:44 +0800
|
|
3346
|
+
Processing by TodosController#index as HTML
|
|
3347
|
+
Rendered todos/index.html.erb within layouts/application (0.4ms)
|
|
3348
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
3349
|
+
Completed 200 OK in 14ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
|
3350
|
+
|
|
3351
|
+
|
|
3352
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-02-06 15:46:44 +0800
|
|
3353
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
data/spec/dummy/log/test.log
CHANGED
|
@@ -2549,3 +2549,542 @@ Processing by TodosController#index as HTML
|
|
|
2549
2549
|
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2550
2550
|
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
|
2551
2551
|
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
|
|
2552
|
+
Connecting to database specified by database.yml
|
|
2553
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 14:17:40 +0800
|
|
2554
|
+
Processing by TodosController#index as HTML
|
|
2555
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
|
2556
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
2557
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
|
2558
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 14:17:40 +0800
|
|
2559
|
+
Processing by TasksController#index as HTML
|
|
2560
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2561
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
2562
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
2563
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 14:17:40 +0800
|
|
2564
|
+
Processing by TodosController#index as HTML
|
|
2565
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2566
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
2567
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
|
2568
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 14:17:40 +0800
|
|
2569
|
+
Processing by TasksController#new as HTML
|
|
2570
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2571
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
2572
|
+
Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
|
2573
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 14:17:40 +0800
|
|
2574
|
+
Processing by TodosController#index as HTML
|
|
2575
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2576
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
|
2577
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
|
2578
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 14:17:40 +0800
|
|
2579
|
+
Processing by TodosController#new as HTML
|
|
2580
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2581
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
2582
|
+
Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
|
2583
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 14:17:40 +0800
|
|
2584
|
+
Processing by TodosController#index as HTML
|
|
2585
|
+
Parameters: {"extract"=>"Hi"}
|
|
2586
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2587
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
2588
|
+
Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
|
2589
|
+
Connecting to database specified by database.yml
|
|
2590
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:01:00 +0800
|
|
2591
|
+
Processing by TodosController#index as HTML
|
|
2592
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2593
|
+
Completed 500 Internal Server Error in 9ms
|
|
2594
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:01:00 +0800
|
|
2595
|
+
Processing by TasksController#index as HTML
|
|
2596
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2597
|
+
Completed 500 Internal Server Error in 6ms
|
|
2598
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:01:00 +0800
|
|
2599
|
+
Processing by TodosController#index as HTML
|
|
2600
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2601
|
+
Completed 500 Internal Server Error in 4ms
|
|
2602
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:01:00 +0800
|
|
2603
|
+
Processing by TasksController#new as HTML
|
|
2604
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2605
|
+
Completed 500 Internal Server Error in 4ms
|
|
2606
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:01:00 +0800
|
|
2607
|
+
Processing by TodosController#index as HTML
|
|
2608
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2609
|
+
Completed 500 Internal Server Error in 3ms
|
|
2610
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:01:00 +0800
|
|
2611
|
+
Processing by TodosController#new as HTML
|
|
2612
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2613
|
+
Completed 500 Internal Server Error in 4ms
|
|
2614
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:01:00 +0800
|
|
2615
|
+
Processing by TodosController#index as HTML
|
|
2616
|
+
Parameters: {"extract"=>"Hi"}
|
|
2617
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2618
|
+
Completed 500 Internal Server Error in 3ms
|
|
2619
|
+
Connecting to database specified by database.yml
|
|
2620
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:01:57 +0800
|
|
2621
|
+
Processing by TodosController#index as HTML
|
|
2622
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2623
|
+
Completed 500 Internal Server Error in 9ms
|
|
2624
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:01:57 +0800
|
|
2625
|
+
Processing by TasksController#index as HTML
|
|
2626
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2627
|
+
Completed 500 Internal Server Error in 6ms
|
|
2628
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:01:57 +0800
|
|
2629
|
+
Processing by TodosController#index as HTML
|
|
2630
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2631
|
+
Completed 500 Internal Server Error in 3ms
|
|
2632
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:01:57 +0800
|
|
2633
|
+
Processing by TasksController#new as HTML
|
|
2634
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2635
|
+
Completed 500 Internal Server Error in 4ms
|
|
2636
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:01:57 +0800
|
|
2637
|
+
Processing by TodosController#index as HTML
|
|
2638
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2639
|
+
Completed 500 Internal Server Error in 3ms
|
|
2640
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:01:57 +0800
|
|
2641
|
+
Processing by TodosController#new as HTML
|
|
2642
|
+
Rendered todos/new.html.erb within layouts/application (0.3ms)
|
|
2643
|
+
Completed 500 Internal Server Error in 5ms
|
|
2644
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:01:57 +0800
|
|
2645
|
+
Processing by TodosController#index as HTML
|
|
2646
|
+
Parameters: {"extract"=>"Hi"}
|
|
2647
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2648
|
+
Completed 500 Internal Server Error in 3ms
|
|
2649
|
+
Connecting to database specified by database.yml
|
|
2650
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:08:44 +0800
|
|
2651
|
+
Processing by TodosController#index as HTML
|
|
2652
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2653
|
+
Completed 500 Internal Server Error in 8ms
|
|
2654
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:08:45 +0800
|
|
2655
|
+
Processing by TasksController#index as HTML
|
|
2656
|
+
Rendered tasks/index.html.erb within layouts/application (1.1ms)
|
|
2657
|
+
Completed 500 Internal Server Error in 4ms
|
|
2658
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:08:45 +0800
|
|
2659
|
+
Processing by TodosController#index as HTML
|
|
2660
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2661
|
+
Completed 500 Internal Server Error in 2ms
|
|
2662
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:08:45 +0800
|
|
2663
|
+
Processing by TasksController#new as HTML
|
|
2664
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2665
|
+
Completed 500 Internal Server Error in 2ms
|
|
2666
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:08:45 +0800
|
|
2667
|
+
Processing by TodosController#index as HTML
|
|
2668
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2669
|
+
Completed 500 Internal Server Error in 2ms
|
|
2670
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:08:45 +0800
|
|
2671
|
+
Processing by TodosController#new as HTML
|
|
2672
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2673
|
+
Completed 500 Internal Server Error in 2ms
|
|
2674
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:08:45 +0800
|
|
2675
|
+
Processing by TodosController#index as HTML
|
|
2676
|
+
Parameters: {"extract"=>"Hi"}
|
|
2677
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2678
|
+
Completed 500 Internal Server Error in 2ms
|
|
2679
|
+
Connecting to database specified by database.yml
|
|
2680
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:08:58 +0800
|
|
2681
|
+
Processing by TodosController#index as HTML
|
|
2682
|
+
Rendered todos/index.html.erb within layouts/application (0.9ms)
|
|
2683
|
+
Completed 500 Internal Server Error in 12ms
|
|
2684
|
+
Connecting to database specified by database.yml
|
|
2685
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:09:29 +0800
|
|
2686
|
+
Processing by TodosController#index as HTML
|
|
2687
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2688
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.3ms)
|
|
2689
|
+
Completed 500 Internal Server Error in 13ms
|
|
2690
|
+
Connecting to database specified by database.yml
|
|
2691
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:09:50 +0800
|
|
2692
|
+
Processing by TodosController#index as HTML
|
|
2693
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2694
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.2ms)
|
|
2695
|
+
Completed 500 Internal Server Error in 13ms
|
|
2696
|
+
Connecting to database specified by database.yml
|
|
2697
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:10:07 +0800
|
|
2698
|
+
Processing by TodosController#index as HTML
|
|
2699
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2700
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.3ms)
|
|
2701
|
+
Completed 500 Internal Server Error in 13ms
|
|
2702
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:10:07 +0800
|
|
2703
|
+
Processing by TasksController#index as HTML
|
|
2704
|
+
Rendered tasks/index.html.erb within layouts/application (0.3ms)
|
|
2705
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.8ms)
|
|
2706
|
+
Completed 500 Internal Server Error in 8ms
|
|
2707
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:10:07 +0800
|
|
2708
|
+
Processing by TodosController#index as HTML
|
|
2709
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2710
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
2711
|
+
Completed 500 Internal Server Error in 6ms
|
|
2712
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:10:07 +0800
|
|
2713
|
+
Processing by TasksController#new as HTML
|
|
2714
|
+
Rendered tasks/new.html.erb within layouts/application (0.3ms)
|
|
2715
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.1ms)
|
|
2716
|
+
Completed 500 Internal Server Error in 10ms
|
|
2717
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:10:07 +0800
|
|
2718
|
+
Processing by TodosController#index as HTML
|
|
2719
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2720
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
2721
|
+
Completed 500 Internal Server Error in 6ms
|
|
2722
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:10:07 +0800
|
|
2723
|
+
Processing by TodosController#new as HTML
|
|
2724
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2725
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
|
2726
|
+
Completed 500 Internal Server Error in 7ms
|
|
2727
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:10:07 +0800
|
|
2728
|
+
Processing by TodosController#index as HTML
|
|
2729
|
+
Parameters: {"extract"=>"Hi"}
|
|
2730
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2731
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.2ms)
|
|
2732
|
+
Completed 500 Internal Server Error in 10ms
|
|
2733
|
+
Connecting to database specified by database.yml
|
|
2734
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:12:02 +0800
|
|
2735
|
+
Processing by TodosController#index as HTML
|
|
2736
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
|
2737
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.2ms)
|
|
2738
|
+
Completed 500 Internal Server Error in 13ms
|
|
2739
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:12:02 +0800
|
|
2740
|
+
Processing by TasksController#index as HTML
|
|
2741
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2742
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
|
2743
|
+
Completed 500 Internal Server Error in 8ms
|
|
2744
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:12:02 +0800
|
|
2745
|
+
Processing by TodosController#index as HTML
|
|
2746
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2747
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
2748
|
+
Completed 500 Internal Server Error in 6ms
|
|
2749
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:12:02 +0800
|
|
2750
|
+
Processing by TasksController#new as HTML
|
|
2751
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2752
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (2.1ms)
|
|
2753
|
+
Completed 500 Internal Server Error in 7ms
|
|
2754
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:12:02 +0800
|
|
2755
|
+
Processing by TodosController#index as HTML
|
|
2756
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2757
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
2758
|
+
Completed 500 Internal Server Error in 6ms
|
|
2759
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:12:02 +0800
|
|
2760
|
+
Processing by TodosController#new as HTML
|
|
2761
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2762
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.7ms)
|
|
2763
|
+
Completed 500 Internal Server Error in 7ms
|
|
2764
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:12:02 +0800
|
|
2765
|
+
Processing by TodosController#index as HTML
|
|
2766
|
+
Parameters: {"extract"=>"Hi"}
|
|
2767
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2768
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.5ms)
|
|
2769
|
+
Completed 500 Internal Server Error in 6ms
|
|
2770
|
+
Connecting to database specified by database.yml
|
|
2771
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:18:55 +0800
|
|
2772
|
+
Processing by TodosController#index as HTML
|
|
2773
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2774
|
+
Completed 500 Internal Server Error in 8ms
|
|
2775
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:18:55 +0800
|
|
2776
|
+
Processing by TasksController#index as HTML
|
|
2777
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2778
|
+
Completed 500 Internal Server Error in 4ms
|
|
2779
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:18:55 +0800
|
|
2780
|
+
Processing by TodosController#index as HTML
|
|
2781
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2782
|
+
Completed 500 Internal Server Error in 2ms
|
|
2783
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:18:56 +0800
|
|
2784
|
+
Processing by TasksController#new as HTML
|
|
2785
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2786
|
+
Completed 500 Internal Server Error in 3ms
|
|
2787
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:18:56 +0800
|
|
2788
|
+
Processing by TodosController#index as HTML
|
|
2789
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2790
|
+
Completed 500 Internal Server Error in 2ms
|
|
2791
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:18:56 +0800
|
|
2792
|
+
Processing by TodosController#new as HTML
|
|
2793
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2794
|
+
Completed 500 Internal Server Error in 2ms
|
|
2795
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:18:56 +0800
|
|
2796
|
+
Processing by TodosController#index as HTML
|
|
2797
|
+
Parameters: {"extract"=>"Hi"}
|
|
2798
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2799
|
+
Completed 500 Internal Server Error in 2ms
|
|
2800
|
+
Connecting to database specified by database.yml
|
|
2801
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:19:54 +0800
|
|
2802
|
+
Processing by TodosController#index as HTML
|
|
2803
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2804
|
+
Completed 500 Internal Server Error in 10ms
|
|
2805
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:19:54 +0800
|
|
2806
|
+
Processing by TasksController#index as HTML
|
|
2807
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2808
|
+
Completed 500 Internal Server Error in 6ms
|
|
2809
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:19:54 +0800
|
|
2810
|
+
Processing by TodosController#index as HTML
|
|
2811
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2812
|
+
Completed 500 Internal Server Error in 3ms
|
|
2813
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:19:54 +0800
|
|
2814
|
+
Processing by TasksController#new as HTML
|
|
2815
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2816
|
+
Completed 500 Internal Server Error in 4ms
|
|
2817
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:19:54 +0800
|
|
2818
|
+
Processing by TodosController#index as HTML
|
|
2819
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2820
|
+
Completed 500 Internal Server Error in 3ms
|
|
2821
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:19:54 +0800
|
|
2822
|
+
Processing by TodosController#new as HTML
|
|
2823
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2824
|
+
Completed 500 Internal Server Error in 4ms
|
|
2825
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:19:54 +0800
|
|
2826
|
+
Processing by TodosController#index as HTML
|
|
2827
|
+
Parameters: {"extract"=>"Hi"}
|
|
2828
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2829
|
+
Completed 500 Internal Server Error in 3ms
|
|
2830
|
+
Connecting to database specified by database.yml
|
|
2831
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:24:06 +0800
|
|
2832
|
+
Processing by TodosController#index as HTML
|
|
2833
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2834
|
+
Completed 500 Internal Server Error in 10ms
|
|
2835
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:24:06 +0800
|
|
2836
|
+
Processing by TasksController#index as HTML
|
|
2837
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2838
|
+
Completed 500 Internal Server Error in 6ms
|
|
2839
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:24:06 +0800
|
|
2840
|
+
Processing by TodosController#index as HTML
|
|
2841
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2842
|
+
Completed 500 Internal Server Error in 3ms
|
|
2843
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:24:06 +0800
|
|
2844
|
+
Processing by TasksController#new as HTML
|
|
2845
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2846
|
+
Completed 500 Internal Server Error in 4ms
|
|
2847
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:24:07 +0800
|
|
2848
|
+
Processing by TodosController#index as HTML
|
|
2849
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2850
|
+
Completed 500 Internal Server Error in 3ms
|
|
2851
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:24:07 +0800
|
|
2852
|
+
Processing by TodosController#new as HTML
|
|
2853
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2854
|
+
Completed 500 Internal Server Error in 4ms
|
|
2855
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:24:07 +0800
|
|
2856
|
+
Processing by TodosController#index as HTML
|
|
2857
|
+
Parameters: {"extract"=>"Hi"}
|
|
2858
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2859
|
+
Completed 500 Internal Server Error in 3ms
|
|
2860
|
+
Connecting to database specified by database.yml
|
|
2861
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:24:58 +0800
|
|
2862
|
+
Processing by TodosController#index as HTML
|
|
2863
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2864
|
+
Completed 500 Internal Server Error in 10ms
|
|
2865
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:24:58 +0800
|
|
2866
|
+
Processing by TasksController#index as HTML
|
|
2867
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2868
|
+
Completed 500 Internal Server Error in 6ms
|
|
2869
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:24:58 +0800
|
|
2870
|
+
Processing by TodosController#index as HTML
|
|
2871
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2872
|
+
Completed 500 Internal Server Error in 3ms
|
|
2873
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:24:58 +0800
|
|
2874
|
+
Processing by TasksController#new as HTML
|
|
2875
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2876
|
+
Completed 500 Internal Server Error in 4ms
|
|
2877
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:24:58 +0800
|
|
2878
|
+
Processing by TodosController#index as HTML
|
|
2879
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2880
|
+
Completed 500 Internal Server Error in 3ms
|
|
2881
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:24:58 +0800
|
|
2882
|
+
Processing by TodosController#new as HTML
|
|
2883
|
+
Rendered todos/new.html.erb within layouts/application (0.4ms)
|
|
2884
|
+
Completed 500 Internal Server Error in 5ms
|
|
2885
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:24:58 +0800
|
|
2886
|
+
Processing by TodosController#index as HTML
|
|
2887
|
+
Parameters: {"extract"=>"Hi"}
|
|
2888
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2889
|
+
Completed 500 Internal Server Error in 3ms
|
|
2890
|
+
Connecting to database specified by database.yml
|
|
2891
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:25:16 +0800
|
|
2892
|
+
Processing by TodosController#index as HTML
|
|
2893
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
|
2894
|
+
Completed 500 Internal Server Error in 8ms
|
|
2895
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:25:16 +0800
|
|
2896
|
+
Processing by TasksController#index as HTML
|
|
2897
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2898
|
+
Completed 500 Internal Server Error in 4ms
|
|
2899
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:25:16 +0800
|
|
2900
|
+
Processing by TodosController#index as HTML
|
|
2901
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2902
|
+
Completed 500 Internal Server Error in 2ms
|
|
2903
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:25:16 +0800
|
|
2904
|
+
Processing by TasksController#new as HTML
|
|
2905
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2906
|
+
Completed 500 Internal Server Error in 2ms
|
|
2907
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:25:16 +0800
|
|
2908
|
+
Processing by TodosController#index as HTML
|
|
2909
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2910
|
+
Completed 500 Internal Server Error in 2ms
|
|
2911
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:25:16 +0800
|
|
2912
|
+
Processing by TodosController#new as HTML
|
|
2913
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2914
|
+
Completed 500 Internal Server Error in 2ms
|
|
2915
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:25:16 +0800
|
|
2916
|
+
Processing by TodosController#index as HTML
|
|
2917
|
+
Parameters: {"extract"=>"Hi"}
|
|
2918
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2919
|
+
Completed 500 Internal Server Error in 2ms
|
|
2920
|
+
Connecting to database specified by database.yml
|
|
2921
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:27:15 +0800
|
|
2922
|
+
Processing by TodosController#index as HTML
|
|
2923
|
+
Rendered todos/index.html.erb within layouts/application (0.8ms)
|
|
2924
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (4.0ms)
|
|
2925
|
+
Completed 500 Internal Server Error in 16ms
|
|
2926
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:27:15 +0800
|
|
2927
|
+
Processing by TasksController#index as HTML
|
|
2928
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
2929
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
|
2930
|
+
Completed 500 Internal Server Error in 8ms
|
|
2931
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:27:15 +0800
|
|
2932
|
+
Processing by TodosController#index as HTML
|
|
2933
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2934
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
2935
|
+
Completed 500 Internal Server Error in 6ms
|
|
2936
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:27:15 +0800
|
|
2937
|
+
Processing by TasksController#new as HTML
|
|
2938
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2939
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.9ms)
|
|
2940
|
+
Completed 500 Internal Server Error in 7ms
|
|
2941
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:27:15 +0800
|
|
2942
|
+
Processing by TodosController#index as HTML
|
|
2943
|
+
Rendered todos/index.html.erb within layouts/application (0.1ms)
|
|
2944
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
2945
|
+
Completed 500 Internal Server Error in 9ms
|
|
2946
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:27:15 +0800
|
|
2947
|
+
Processing by TodosController#new as HTML
|
|
2948
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
2949
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
|
2950
|
+
Completed 500 Internal Server Error in 7ms
|
|
2951
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:27:16 +0800
|
|
2952
|
+
Processing by TodosController#index as HTML
|
|
2953
|
+
Parameters: {"extract"=>"Hi"}
|
|
2954
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2955
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.5ms)
|
|
2956
|
+
Completed 500 Internal Server Error in 6ms
|
|
2957
|
+
Connecting to database specified by database.yml
|
|
2958
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:27:44 +0800
|
|
2959
|
+
Processing by TodosController#index as HTML
|
|
2960
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2961
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (3.3ms)
|
|
2962
|
+
Completed 500 Internal Server Error in 14ms
|
|
2963
|
+
Connecting to database specified by database.yml
|
|
2964
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:33:37 +0800
|
|
2965
|
+
Processing by TodosController#index as HTML
|
|
2966
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2967
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (3.4ms)
|
|
2968
|
+
Completed 500 Internal Server Error in 15ms
|
|
2969
|
+
Connecting to database specified by database.yml
|
|
2970
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:43:34 +0800
|
|
2971
|
+
Processing by TodosController#index as HTML
|
|
2972
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
2973
|
+
Completed 500 Internal Server Error in 8ms
|
|
2974
|
+
Connecting to database specified by database.yml
|
|
2975
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:44:07 +0800
|
|
2976
|
+
Processing by TodosController#index as HTML
|
|
2977
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
|
2978
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
2979
|
+
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
|
2980
|
+
Connecting to database specified by database.yml
|
|
2981
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:44:12 +0800
|
|
2982
|
+
Processing by TodosController#index as HTML
|
|
2983
|
+
Rendered todos/index.html.erb within layouts/application (0.7ms)
|
|
2984
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
2985
|
+
Completed 200 OK in 13ms (Views: 13.2ms | ActiveRecord: 0.0ms)
|
|
2986
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:44:12 +0800
|
|
2987
|
+
Processing by TasksController#index as HTML
|
|
2988
|
+
Rendered tasks/index.html.erb within layouts/application (0.4ms)
|
|
2989
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.9ms)
|
|
2990
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
|
2991
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:44:12 +0800
|
|
2992
|
+
Processing by TodosController#index as HTML
|
|
2993
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
2994
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
|
2995
|
+
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
|
|
2996
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:44:12 +0800
|
|
2997
|
+
Processing by TasksController#new as HTML
|
|
2998
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
2999
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.6ms)
|
|
3000
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
|
3001
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:44:12 +0800
|
|
3002
|
+
Processing by TodosController#index as HTML
|
|
3003
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3004
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
3005
|
+
Completed 200 OK in 6ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
|
3006
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:44:12 +0800
|
|
3007
|
+
Processing by TodosController#new as HTML
|
|
3008
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
3009
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.4ms)
|
|
3010
|
+
Completed 200 OK in 31ms (Views: 30.9ms | ActiveRecord: 0.0ms)
|
|
3011
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:44:12 +0800
|
|
3012
|
+
Processing by TodosController#index as HTML
|
|
3013
|
+
Parameters: {"extract"=>"Hi"}
|
|
3014
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3015
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
|
3016
|
+
Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
|
|
3017
|
+
Connecting to database specified by database.yml
|
|
3018
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:44:46 +0800
|
|
3019
|
+
Processing by TodosController#index as HTML
|
|
3020
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
3021
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
3022
|
+
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
|
3023
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:44:46 +0800
|
|
3024
|
+
Processing by TasksController#index as HTML
|
|
3025
|
+
Rendered tasks/index.html.erb within layouts/application (0.3ms)
|
|
3026
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
|
3027
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
|
3028
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:44:46 +0800
|
|
3029
|
+
Processing by TodosController#index as HTML
|
|
3030
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3031
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
3032
|
+
Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
|
3033
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:44:46 +0800
|
|
3034
|
+
Processing by TasksController#new as HTML
|
|
3035
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
3036
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
|
3037
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
3038
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:44:46 +0800
|
|
3039
|
+
Processing by TodosController#index as HTML
|
|
3040
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3041
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
3042
|
+
Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
|
3043
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:44:46 +0800
|
|
3044
|
+
Processing by TodosController#new as HTML
|
|
3045
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
3046
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
|
3047
|
+
Completed 200 OK in 28ms (Views: 27.7ms | ActiveRecord: 0.0ms)
|
|
3048
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:44:46 +0800
|
|
3049
|
+
Processing by TodosController#index as HTML
|
|
3050
|
+
Parameters: {"extract"=>"Hi"}
|
|
3051
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3052
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
|
3053
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
|
|
3054
|
+
Connecting to database specified by database.yml
|
|
3055
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:55:17 +0800
|
|
3056
|
+
Processing by TodosController#index as HTML
|
|
3057
|
+
Rendered todos/index.html.erb within layouts/application (0.6ms)
|
|
3058
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
3059
|
+
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
|
3060
|
+
Started GET "/tasks" for 127.0.0.1 at 2013-02-06 15:55:17 +0800
|
|
3061
|
+
Processing by TasksController#index as HTML
|
|
3062
|
+
Rendered tasks/index.html.erb within layouts/application (0.2ms)
|
|
3063
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
3064
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
|
3065
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:55:17 +0800
|
|
3066
|
+
Processing by TodosController#index as HTML
|
|
3067
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3068
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
3069
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
|
3070
|
+
Started GET "/tasks/new" for 127.0.0.1 at 2013-02-06 15:55:17 +0800
|
|
3071
|
+
Processing by TasksController#new as HTML
|
|
3072
|
+
Rendered tasks/new.html.erb within layouts/application (0.2ms)
|
|
3073
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.2ms)
|
|
3074
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
|
3075
|
+
Started GET "/todos" for 127.0.0.1 at 2013-02-06 15:55:17 +0800
|
|
3076
|
+
Processing by TodosController#index as HTML
|
|
3077
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3078
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.0ms)
|
|
3079
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
|
3080
|
+
Started GET "/todos/new" for 127.0.0.1 at 2013-02-06 15:55:17 +0800
|
|
3081
|
+
Processing by TodosController#new as HTML
|
|
3082
|
+
Rendered todos/new.html.erb within layouts/application (0.2ms)
|
|
3083
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.3ms)
|
|
3084
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.0ms)
|
|
3085
|
+
Started GET "/todos?extract=Hi" for 127.0.0.1 at 2013-02-06 15:55:17 +0800
|
|
3086
|
+
Processing by TodosController#index as HTML
|
|
3087
|
+
Parameters: {"extract"=>"Hi"}
|
|
3088
|
+
Rendered todos/index.html.erb within layouts/application (0.0ms)
|
|
3089
|
+
Rendered /mnt/soffolk/home/soffolk/work/mine/left_side/lib/left_side/cells/left_side/base.html.erb (1.1ms)
|
|
3090
|
+
Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: left_side
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.0
|
|
5
|
+
version: 1.0.0
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- soffolk
|
|
@@ -123,6 +123,38 @@ dependencies:
|
|
|
123
123
|
- !ruby/object:Gem::Version
|
|
124
124
|
version: '0'
|
|
125
125
|
name: sass
|
|
126
|
+
- !ruby/object:Gem::Dependency
|
|
127
|
+
type: :development
|
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
|
129
|
+
none: false
|
|
130
|
+
requirements:
|
|
131
|
+
- - ! '>='
|
|
132
|
+
- !ruby/object:Gem::Version
|
|
133
|
+
version: '0'
|
|
134
|
+
prerelease: false
|
|
135
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
136
|
+
none: false
|
|
137
|
+
requirements:
|
|
138
|
+
- - ! '>='
|
|
139
|
+
- !ruby/object:Gem::Version
|
|
140
|
+
version: '0'
|
|
141
|
+
name: uglifier
|
|
142
|
+
- !ruby/object:Gem::Dependency
|
|
143
|
+
type: :development
|
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
|
145
|
+
none: false
|
|
146
|
+
requirements:
|
|
147
|
+
- - ! '>='
|
|
148
|
+
- !ruby/object:Gem::Version
|
|
149
|
+
version: '0'
|
|
150
|
+
prerelease: false
|
|
151
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
152
|
+
none: false
|
|
153
|
+
requirements:
|
|
154
|
+
- - ! '>='
|
|
155
|
+
- !ruby/object:Gem::Version
|
|
156
|
+
version: '0'
|
|
157
|
+
name: therubyracer
|
|
126
158
|
- !ruby/object:Gem::Dependency
|
|
127
159
|
type: :development
|
|
128
160
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -182,6 +214,7 @@ files:
|
|
|
182
214
|
- lib/left_side/engine.rb
|
|
183
215
|
- lib/left_side/helper.rb
|
|
184
216
|
- lib/left_side/rails.rb
|
|
217
|
+
- lib/left_side/railtie.rb
|
|
185
218
|
- lib/left_side/version.rb
|
|
186
219
|
- spec/dummy/.sass-cache/77b12a84de3c9aab14bc1e241ef001cd6fe973e0/left-side.css.scssc
|
|
187
220
|
- spec/dummy/.sass-cache/91329832bbdb4360da2a782cc83182147fe00409/left-side.scssc
|