sections_rails 0.0.6 → 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +3 -0
- data/lib/generators/sections_generator.rb +3 -3
- data/lib/sections_rails/version.rb +1 -1
- data/lib/sections_rails.rb +6 -4
- metadata +8 -108
- data/spec/dummy/Rakefile +0 -7
- data/spec/dummy/app/assets/javascripts/application.js +0 -9
- data/spec/dummy/app/assets/stylesheets/application.css +0 -7
- data/spec/dummy/app/controllers/application_controller.rb +0 -3
- data/spec/dummy/app/controllers/demos_controller.rb +0 -5
- data/spec/dummy/app/helpers/application_helper.rb +0 -2
- data/spec/dummy/app/sections/hello_world/_hello_world.html.erb +0 -6
- data/spec/dummy/app/sections/hello_world/hello_world.css +0 -9
- data/spec/dummy/app/sections/hello_world/hello_world.js +0 -10
- data/spec/dummy/app/views/demos/index.html.erb +0 -2
- data/spec/dummy/app/views/layouts/application.html.erb +0 -14
- data/spec/dummy/config/application.rb +0 -46
- data/spec/dummy/config/boot.rb +0 -10
- data/spec/dummy/config/database.yml +0 -25
- data/spec/dummy/config/environment.rb +0 -5
- data/spec/dummy/config/environments/development.rb +0 -30
- data/spec/dummy/config/environments/production.rb +0 -60
- data/spec/dummy/config/environments/test.rb +0 -39
- data/spec/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/spec/dummy/config/initializers/inflections.rb +0 -10
- data/spec/dummy/config/initializers/mime_types.rb +0 -5
- data/spec/dummy/config/initializers/secret_token.rb +0 -7
- data/spec/dummy/config/initializers/session_store.rb +0 -8
- data/spec/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/spec/dummy/config/locales/en.yml +0 -5
- data/spec/dummy/config/routes.rb +0 -60
- data/spec/dummy/config.ru +0 -4
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/log/development.log +0 -551
- data/spec/dummy/public/404.html +0 -26
- data/spec/dummy/public/422.html +0 -26
- data/spec/dummy/public/500.html +0 -26
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +0 -6
- data/spec/dummy/tmp/cache/assets/C73/0F0/sprockets%2F6f588d2eb67224099de772816998294a +0 -0
- data/spec/dummy/tmp/cache/assets/C9F/C10/sprockets%2F23fdd7731b76429ab821110239eb320f +0 -0
- data/spec/dummy/tmp/cache/assets/CBC/F40/sprockets%2Ff65678384223384d27c1be5bd58d527c +0 -0
- data/spec/dummy/tmp/cache/assets/CD6/B30/sprockets%2Fd360dea16179bf8b7c461301a3b48761 +0 -0
- data/spec/dummy/tmp/cache/assets/CD7/AC0/sprockets%2F2a8dc3c6e05c15a16948432386b61ad5 +0 -0
- data/spec/dummy/tmp/cache/assets/CE3/080/sprockets%2F7d4d7689d6fa8236f0b4848c03ba1215 +0 -0
- data/spec/dummy/tmp/cache/assets/CE5/100/sprockets%2F3255ada839df268ed863150542e87ac3 +0 -0
- data/spec/dummy/tmp/cache/assets/CE5/D30/sprockets%2F8c9834a63b25a66203918a75ff56e2ac +0 -0
- data/spec/dummy/tmp/cache/assets/D2D/C80/sprockets%2F5f8f97f91f67258b75bc96704a90ce1f +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D50/950/sprockets%2F93ba20a0001c0b50711bf58cf8e36bfb +0 -0
- data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
- data/spec/dummy/tmp/cache/assets/D84/210/sprockets%2Fabd0103ccec2b428ac62c94e4c40b384 +0 -9648
- data/spec/dummy/tmp/cache/assets/D93/630/sprockets%2F1203dbc01cf782fc6d17e5d7d8b53eb0 +0 -0
- data/spec/dummy/tmp/cache/assets/D94/460/sprockets%2Fd4ba18ed6ca55f732dba192d4b6036a8 +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
data/spec/dummy/config/routes.rb
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
Dummy::Application.routes.draw do
|
2
|
-
resources :demos
|
3
|
-
|
4
|
-
# The priority is based upon order of creation:
|
5
|
-
# first created -> highest priority.
|
6
|
-
|
7
|
-
# Sample of regular route:
|
8
|
-
# match 'products/:id' => 'catalog#view'
|
9
|
-
# Keep in mind you can assign values other than :controller and :action
|
10
|
-
|
11
|
-
# Sample of named route:
|
12
|
-
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
13
|
-
# This route can be invoked with purchase_url(:id => product.id)
|
14
|
-
|
15
|
-
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
16
|
-
# resources :products
|
17
|
-
|
18
|
-
# Sample resource route with options:
|
19
|
-
# resources :products do
|
20
|
-
# member do
|
21
|
-
# get 'short'
|
22
|
-
# post 'toggle'
|
23
|
-
# end
|
24
|
-
#
|
25
|
-
# collection do
|
26
|
-
# get 'sold'
|
27
|
-
# end
|
28
|
-
# end
|
29
|
-
|
30
|
-
# Sample resource route with sub-resources:
|
31
|
-
# resources :products do
|
32
|
-
# resources :comments, :sales
|
33
|
-
# resource :seller
|
34
|
-
# end
|
35
|
-
|
36
|
-
# Sample resource route with more complex sub-resources
|
37
|
-
# resources :products do
|
38
|
-
# resources :comments
|
39
|
-
# resources :sales do
|
40
|
-
# get 'recent', :on => :collection
|
41
|
-
# end
|
42
|
-
# end
|
43
|
-
|
44
|
-
# Sample resource route within a namespace:
|
45
|
-
# namespace :admin do
|
46
|
-
# # Directs /admin/products/* to Admin::ProductsController
|
47
|
-
# # (app/controllers/admin/products_controller.rb)
|
48
|
-
# resources :products
|
49
|
-
# end
|
50
|
-
|
51
|
-
# You can have the root of your site routed with "root"
|
52
|
-
# just remember to delete public/index.html.
|
53
|
-
# root :to => 'welcome#index'
|
54
|
-
|
55
|
-
# See how all your routes lay out with "rake routes"
|
56
|
-
|
57
|
-
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
58
|
-
# Note: This route will make all actions in every controller accessible via GET requests.
|
59
|
-
# match ':controller(/:action(/:id(.:format)))'
|
60
|
-
end
|
data/spec/dummy/config.ru
DELETED
File without changes
|
@@ -1,551 +0,0 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
Started GET "/demos" for 127.0.0.1 at Fri Nov 25 22:27:31 -0800 2011
|
4
|
-
|
5
|
-
ActionController::RoutingError (No route matches [GET] "/demos"):
|
6
|
-
|
7
|
-
|
8
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.0ms)
|
9
|
-
|
10
|
-
|
11
|
-
Started GET "/demos" for 127.0.0.1 at Fri Nov 25 22:28:34 -0800 2011
|
12
|
-
Processing by DemosController#index as HTML
|
13
|
-
Rendered demos/index.html.erb within layouts/application (0.4ms)
|
14
|
-
Compiled application.css (2ms) (pid 64156)
|
15
|
-
Compiled demos.css (0ms) (pid 64156)
|
16
|
-
Compiled application.js (6ms) (pid 64156)
|
17
|
-
Compiled jquery.js (6ms) (pid 64156)
|
18
|
-
Compiled jquery_ujs.js (0ms) (pid 64156)
|
19
|
-
Compiled demos.js (1ms) (pid 64156)
|
20
|
-
Completed 200 OK in 277ms (Views: 277.0ms | ActiveRecord: 0.0ms)
|
21
|
-
|
22
|
-
|
23
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
|
24
|
-
Served asset /jquery.js - 200 OK (16ms)
|
25
|
-
|
26
|
-
|
27
|
-
Started GET "/assets/demos.css?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
|
28
|
-
Served asset /demos.css - 200 OK (4ms)
|
29
|
-
|
30
|
-
|
31
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
|
32
|
-
Served asset /jquery_ujs.js - 200 OK (4ms)
|
33
|
-
|
34
|
-
|
35
|
-
Started GET "/assets/demos.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
|
36
|
-
Served asset /demos.js - 200 OK (30ms)
|
37
|
-
|
38
|
-
|
39
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
|
40
|
-
Served asset /application.js - 200 OK (9ms)
|
41
|
-
|
42
|
-
|
43
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Fri Nov 25 22:28:35 -0800 2011
|
44
|
-
Served asset /application.css - 200 OK (0ms)
|
45
|
-
|
46
|
-
|
47
|
-
Started GET "/" for 127.0.0.1 at Sat Nov 26 13:44:06 -0800 2011
|
48
|
-
|
49
|
-
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
50
|
-
|
51
|
-
|
52
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
53
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (11.9ms)
|
54
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (76.9ms)
|
55
|
-
|
56
|
-
|
57
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 13:44:14 -0800 2011
|
58
|
-
|
59
|
-
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
60
|
-
|
61
|
-
|
62
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
63
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
64
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.1ms)
|
65
|
-
|
66
|
-
|
67
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 13:44:19 -0800 2011
|
68
|
-
|
69
|
-
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
70
|
-
|
71
|
-
|
72
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
73
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
74
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.0ms)
|
75
|
-
|
76
|
-
|
77
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 13:45:13 -0800 2011
|
78
|
-
Processing by DemosController#index as HTML
|
79
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
|
80
|
-
Rendered demos/index.html.erb within layouts/application (92.6ms)
|
81
|
-
Compiled application.css (1ms) (pid 69844)
|
82
|
-
Compiled application.js (5ms) (pid 69844)
|
83
|
-
Completed 200 OK in 319ms (Views: 318.9ms | ActiveRecord: 0.0ms)
|
84
|
-
|
85
|
-
|
86
|
-
Started GET "/assets/hello_world/hello_world.js" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
|
87
|
-
Served asset /hello_world/hello_world.js - 404 Not Found (3ms)
|
88
|
-
|
89
|
-
ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.js"):
|
90
|
-
|
91
|
-
|
92
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
93
|
-
|
94
|
-
|
95
|
-
Started GET "/assets/hello_world/hello_world.css" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
|
96
|
-
Served asset /hello_world/hello_world.css - 404 Not Found (2ms)
|
97
|
-
|
98
|
-
ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.css"):
|
99
|
-
|
100
|
-
|
101
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
102
|
-
|
103
|
-
|
104
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
|
105
|
-
Served asset /application.css - 200 OK (0ms)
|
106
|
-
|
107
|
-
|
108
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
|
109
|
-
Served asset /jquery.js - 304 Not Modified (6ms)
|
110
|
-
|
111
|
-
|
112
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
|
113
|
-
Served asset /application.js - 200 OK (0ms)
|
114
|
-
|
115
|
-
|
116
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 13:45:14 -0800 2011
|
117
|
-
Served asset /jquery_ujs.js - 304 Not Modified (23ms)
|
118
|
-
|
119
|
-
|
120
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:30:50 -0800 2011
|
121
|
-
Processing by DemosController#index as HTML
|
122
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
|
123
|
-
Rendered demos/index.html.erb within layouts/application (53.9ms)
|
124
|
-
Completed 200 OK in 3096ms (Views: 3084.1ms | ActiveRecord: 0.0ms)
|
125
|
-
|
126
|
-
|
127
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
|
128
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
129
|
-
|
130
|
-
|
131
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
|
132
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
133
|
-
|
134
|
-
|
135
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
|
136
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
137
|
-
|
138
|
-
|
139
|
-
Started GET "/assets/hello_world/hello_world.js" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
|
140
|
-
Served asset /hello_world/hello_world.js - 404 Not Found (2ms)
|
141
|
-
|
142
|
-
ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.js"):
|
143
|
-
|
144
|
-
|
145
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
146
|
-
|
147
|
-
|
148
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
|
149
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
150
|
-
|
151
|
-
|
152
|
-
Started GET "/assets/hello_world/hello_world.css" for 127.0.0.1 at Sat Nov 26 14:30:58 -0800 2011
|
153
|
-
Served asset /hello_world/hello_world.css - 404 Not Found (4ms)
|
154
|
-
|
155
|
-
ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.css"):
|
156
|
-
|
157
|
-
|
158
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
|
159
|
-
|
160
|
-
|
161
|
-
Started GET "/assets/hello_world/hello_world.css" for 127.0.0.1 at Sat Nov 26 14:31:51 -0800 2011
|
162
|
-
Served asset /hello_world/hello_world.css - 404 Not Found (2ms)
|
163
|
-
|
164
|
-
ActionController::RoutingError (No route matches [GET] "/assets/hello_world/hello_world.css"):
|
165
|
-
|
166
|
-
|
167
|
-
Rendered /opt/local/lib/ruby/gems/1.8/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms)
|
168
|
-
|
169
|
-
|
170
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:44:58 -0800 2011
|
171
|
-
Processing by DemosController#index as HTML
|
172
|
-
Compiled hello_world/hello_world.js (0ms) (pid 70769)
|
173
|
-
Compiled hello_world/hello_world.css (0ms) (pid 70769)
|
174
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
|
175
|
-
Rendered demos/index.html.erb within layouts/application (128.5ms)
|
176
|
-
Completed 200 OK in 309ms (Views: 308.2ms | ActiveRecord: 0.0ms)
|
177
|
-
|
178
|
-
|
179
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
|
180
|
-
Served asset /application.css - 304 Not Modified (1ms)
|
181
|
-
|
182
|
-
|
183
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
|
184
|
-
Served asset /hello_world/hello_world.js - 200 OK (0ms)
|
185
|
-
|
186
|
-
|
187
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
|
188
|
-
Served asset /jquery.js - 304 Not Modified (19ms)
|
189
|
-
|
190
|
-
|
191
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
|
192
|
-
Served asset /hello_world/hello_world.css - 200 OK (0ms)
|
193
|
-
|
194
|
-
|
195
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
|
196
|
-
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
197
|
-
|
198
|
-
|
199
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:44:59 -0800 2011
|
200
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
201
|
-
|
202
|
-
|
203
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:45:13 -0800 2011
|
204
|
-
Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
|
205
|
-
|
206
|
-
|
207
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
|
208
|
-
Processing by DemosController#index as HTML
|
209
|
-
Compiled hello_world/hello_world.css (67ms) (pid 70795)
|
210
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
|
211
|
-
Rendered demos/index.html.erb within layouts/application (85.6ms)
|
212
|
-
Completed 200 OK in 113ms (Views: 112.7ms | ActiveRecord: 0.0ms)
|
213
|
-
|
214
|
-
|
215
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
|
216
|
-
Served asset /jquery_ujs.js - 304 Not Modified (4ms)
|
217
|
-
|
218
|
-
|
219
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
|
220
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
221
|
-
|
222
|
-
|
223
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
|
224
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
225
|
-
|
226
|
-
|
227
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
|
228
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
229
|
-
|
230
|
-
|
231
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:45:54 -0800 2011
|
232
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
233
|
-
|
234
|
-
|
235
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:45:55 -0800 2011
|
236
|
-
Served asset /hello_world/hello_world.css - 200 OK (0ms)
|
237
|
-
|
238
|
-
|
239
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:46:30 -0800 2011
|
240
|
-
Processing by DemosController#index as HTML
|
241
|
-
Compiled hello_world/hello_world.css (69ms) (pid 70811)
|
242
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.2ms)
|
243
|
-
Rendered demos/index.html.erb within layouts/application (85.9ms)
|
244
|
-
Completed 200 OK in 114ms (Views: 113.5ms | ActiveRecord: 0.0ms)
|
245
|
-
|
246
|
-
|
247
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
|
248
|
-
Served asset /jquery_ujs.js - 304 Not Modified (3ms)
|
249
|
-
|
250
|
-
|
251
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
|
252
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
253
|
-
|
254
|
-
|
255
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
|
256
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
257
|
-
|
258
|
-
|
259
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
|
260
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
261
|
-
|
262
|
-
|
263
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
|
264
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
265
|
-
|
266
|
-
|
267
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:46:31 -0800 2011
|
268
|
-
Served asset /hello_world/hello_world.css - 200 OK (0ms)
|
269
|
-
|
270
|
-
|
271
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:47:29 -0800 2011
|
272
|
-
Processing by DemosController#index as HTML
|
273
|
-
Compiled hello_world/hello_world.css (65ms) (pid 70841)
|
274
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
|
275
|
-
Rendered demos/index.html.erb within layouts/application (81.2ms)
|
276
|
-
Completed 200 OK in 110ms (Views: 109.3ms | ActiveRecord: 0.0ms)
|
277
|
-
|
278
|
-
|
279
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:29 -0800 2011
|
280
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
281
|
-
|
282
|
-
|
283
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
|
284
|
-
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
285
|
-
|
286
|
-
|
287
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
|
288
|
-
Served asset /jquery.js - 304 Not Modified (3ms)
|
289
|
-
|
290
|
-
|
291
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
|
292
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
293
|
-
|
294
|
-
|
295
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
|
296
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
297
|
-
|
298
|
-
|
299
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:30 -0800 2011
|
300
|
-
Served asset /hello_world/hello_world.css - 200 OK (0ms)
|
301
|
-
|
302
|
-
|
303
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
|
304
|
-
Processing by DemosController#index as HTML
|
305
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
|
306
|
-
Rendered demos/index.html.erb within layouts/application (2.2ms)
|
307
|
-
Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
|
308
|
-
|
309
|
-
|
310
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
|
311
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
312
|
-
|
313
|
-
|
314
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
|
315
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
316
|
-
|
317
|
-
|
318
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
|
319
|
-
Served asset /application.js - 304 Not Modified (1ms)
|
320
|
-
|
321
|
-
|
322
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
|
323
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
324
|
-
|
325
|
-
|
326
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
|
327
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
328
|
-
|
329
|
-
|
330
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:31 -0800 2011
|
331
|
-
Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
|
332
|
-
|
333
|
-
|
334
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
|
335
|
-
Processing by DemosController#index as HTML
|
336
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
|
337
|
-
Rendered demos/index.html.erb within layouts/application (2.0ms)
|
338
|
-
Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
|
339
|
-
|
340
|
-
|
341
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
|
342
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
343
|
-
|
344
|
-
|
345
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
|
346
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
347
|
-
|
348
|
-
|
349
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
|
350
|
-
Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
|
351
|
-
|
352
|
-
|
353
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
|
354
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
355
|
-
|
356
|
-
|
357
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
|
358
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
359
|
-
|
360
|
-
|
361
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:47:32 -0800 2011
|
362
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
363
|
-
|
364
|
-
|
365
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
|
366
|
-
Processing by DemosController#index as HTML
|
367
|
-
Compiled hello_world/hello_world.css (0ms) (pid 70841)
|
368
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
|
369
|
-
Rendered demos/index.html.erb within layouts/application (8.1ms)
|
370
|
-
Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
|
371
|
-
|
372
|
-
|
373
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
|
374
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
375
|
-
|
376
|
-
|
377
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
|
378
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
379
|
-
|
380
|
-
|
381
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
|
382
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
383
|
-
|
384
|
-
|
385
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
|
386
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
387
|
-
|
388
|
-
|
389
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
|
390
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
391
|
-
|
392
|
-
|
393
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:48:05 -0800 2011
|
394
|
-
Served asset /hello_world/hello_world.css - 200 OK (0ms)
|
395
|
-
|
396
|
-
|
397
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
|
398
|
-
Processing by DemosController#index as HTML
|
399
|
-
Compiled hello_world/hello_world.css (0ms) (pid 70841)
|
400
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
|
401
|
-
Rendered demos/index.html.erb within layouts/application (25.8ms)
|
402
|
-
Completed 200 OK in 58ms (Views: 57.6ms | ActiveRecord: 0.0ms)
|
403
|
-
|
404
|
-
|
405
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
|
406
|
-
Served asset /application.css - 304 Not Modified (3ms)
|
407
|
-
|
408
|
-
|
409
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
|
410
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
411
|
-
|
412
|
-
|
413
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
|
414
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
415
|
-
|
416
|
-
|
417
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
|
418
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
419
|
-
|
420
|
-
|
421
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
|
422
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
423
|
-
|
424
|
-
|
425
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:15 -0800 2011
|
426
|
-
Served asset /hello_world/hello_world.css - 200 OK (0ms)
|
427
|
-
|
428
|
-
|
429
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:49:32 -0800 2011
|
430
|
-
Processing by DemosController#index as HTML
|
431
|
-
Compiled hello_world/hello_world.css (0ms) (pid 70841)
|
432
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
|
433
|
-
Rendered demos/index.html.erb within layouts/application (21.3ms)
|
434
|
-
Completed 200 OK in 32ms (Views: 31.4ms | ActiveRecord: 0.0ms)
|
435
|
-
|
436
|
-
|
437
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
|
438
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
439
|
-
|
440
|
-
|
441
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
|
442
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
443
|
-
|
444
|
-
|
445
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
|
446
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
447
|
-
|
448
|
-
|
449
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
|
450
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
451
|
-
|
452
|
-
|
453
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
|
454
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
455
|
-
|
456
|
-
|
457
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:49:33 -0800 2011
|
458
|
-
Served asset /hello_world/hello_world.css - 200 OK (0ms)
|
459
|
-
|
460
|
-
|
461
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
|
462
|
-
Processing by DemosController#index as HTML
|
463
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
|
464
|
-
Rendered demos/index.html.erb within layouts/application (22.4ms)
|
465
|
-
Completed 200 OK in 78ms (Views: 77.1ms | ActiveRecord: 0.0ms)
|
466
|
-
|
467
|
-
|
468
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
|
469
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
470
|
-
|
471
|
-
|
472
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
|
473
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
474
|
-
|
475
|
-
|
476
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
|
477
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
478
|
-
|
479
|
-
|
480
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
|
481
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
482
|
-
|
483
|
-
|
484
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
|
485
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
486
|
-
|
487
|
-
|
488
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:25 -0800 2011
|
489
|
-
Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
|
490
|
-
|
491
|
-
|
492
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
|
493
|
-
Processing by DemosController#index as HTML
|
494
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.1ms)
|
495
|
-
Rendered demos/index.html.erb within layouts/application (1.9ms)
|
496
|
-
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
497
|
-
|
498
|
-
|
499
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
|
500
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
501
|
-
|
502
|
-
|
503
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
|
504
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
505
|
-
|
506
|
-
|
507
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
|
508
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
509
|
-
|
510
|
-
|
511
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
|
512
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
513
|
-
|
514
|
-
|
515
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
|
516
|
-
Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
|
517
|
-
|
518
|
-
|
519
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:51:54 -0800 2011
|
520
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
521
|
-
|
522
|
-
|
523
|
-
Started GET "/demos" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
|
524
|
-
Processing by DemosController#index as HTML
|
525
|
-
Rendered app/sections/hello_world/_hello_world.html.erb (0.3ms)
|
526
|
-
Rendered demos/index.html.erb within layouts/application (2.4ms)
|
527
|
-
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
528
|
-
|
529
|
-
|
530
|
-
Started GET "/assets/application.css?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
|
531
|
-
Served asset /application.css - 304 Not Modified (0ms)
|
532
|
-
|
533
|
-
|
534
|
-
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
|
535
|
-
Served asset /jquery.js - 304 Not Modified (0ms)
|
536
|
-
|
537
|
-
|
538
|
-
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
|
539
|
-
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
540
|
-
|
541
|
-
|
542
|
-
Started GET "/assets/hello_world/hello_world.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
|
543
|
-
Served asset /hello_world/hello_world.js - 304 Not Modified (0ms)
|
544
|
-
|
545
|
-
|
546
|
-
Started GET "/assets/application.js?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
|
547
|
-
Served asset /application.js - 304 Not Modified (0ms)
|
548
|
-
|
549
|
-
|
550
|
-
Started GET "/assets/hello_world/hello_world.css?body=1" for 127.0.0.1 at Sat Nov 26 14:52:23 -0800 2011
|
551
|
-
Served asset /hello_world/hello_world.css - 304 Not Modified (0ms)
|
data/spec/dummy/public/404.html
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
-
<style type="text/css">
|
6
|
-
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
-
div.dialog {
|
8
|
-
width: 25em;
|
9
|
-
padding: 0 4em;
|
10
|
-
margin: 4em auto 0 auto;
|
11
|
-
border: 1px solid #ccc;
|
12
|
-
border-right-color: #999;
|
13
|
-
border-bottom-color: #999;
|
14
|
-
}
|
15
|
-
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
-
</style>
|
17
|
-
</head>
|
18
|
-
|
19
|
-
<body>
|
20
|
-
<!-- This file lives in public/404.html -->
|
21
|
-
<div class="dialog">
|
22
|
-
<h1>The page you were looking for doesn't exist.</h1>
|
23
|
-
<p>You may have mistyped the address or the page may have moved.</p>
|
24
|
-
</div>
|
25
|
-
</body>
|
26
|
-
</html>
|
data/spec/dummy/public/422.html
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>The change you wanted was rejected (422)</title>
|
5
|
-
<style type="text/css">
|
6
|
-
body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
|
7
|
-
div.dialog {
|
8
|
-
width: 25em;
|
9
|
-
padding: 0 4em;
|
10
|
-
margin: 4em auto 0 auto;
|
11
|
-
border: 1px solid #ccc;
|
12
|
-
border-right-color: #999;
|
13
|
-
border-bottom-color: #999;
|
14
|
-
}
|
15
|
-
h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
|
16
|
-
</style>
|
17
|
-
</head>
|
18
|
-
|
19
|
-
<body>
|
20
|
-
<!-- This file lives in public/422.html -->
|
21
|
-
<div class="dialog">
|
22
|
-
<h1>The change you wanted was rejected.</h1>
|
23
|
-
<p>Maybe you tried to change something you didn't have access to.</p>
|
24
|
-
</div>
|
25
|
-
</body>
|
26
|
-
</html>
|