jquery_mobile_rails 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/lib/jquery_mobile_rails/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +470 -0
- data/test/dummy/tmp/cache/assets/C8E/8B0/sprockets%2F52156458f704751589bb6d29ec84a52e +0 -0
- data/test/dummy/tmp/cache/assets/CB1/D10/sprockets%2F5827a2184097ddeeb4158ef641f00085 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CDE/910/sprockets%2F8af59305547610b5be0e9e038bb58f21 +0 -0
- data/test/dummy/tmp/cache/assets/D20/330/sprockets%2Fe76bd3b1395773eefc19cb17743e5846 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D38/BD0/sprockets%2Ffe52d2d1bcf248d028108d0c513e6d79 +0 -0
- data/test/dummy/tmp/cache/assets/D40/4D0/sprockets%2F20f705b59cf5abf8a0a7938b887b11f1 +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D5F/7B0/sprockets%2F1792255ae34105be22fabed9ba5e4d15 +0 -0
- data/test/dummy/tmp/cache/assets/D6C/7A0/sprockets%2Ff25aa7e262f1ff93154f29dc914afc20 +0 -0
- data/test/dummy/tmp/cache/assets/D9B/360/sprockets%2Fbb7052d2ba9883c28d4db137e1fb9b6c +0 -0
- data/test/dummy/tmp/cache/assets/DB7/390/sprockets%2Ff800b3c4a4a306067fea026fc7b2bbde +0 -0
- data/test/dummy/tmp/cache/assets/DDC/0B0/sprockets%2F63d8cfc5e184b372b7ec77cca69d4db7 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/E08/030/sprockets%2F21255d26ce8eda2e2e0e69dfbea8cf99 +0 -0
- data/test/dummy/tmp/cache/assets/E1F/BB0/sprockets%2F222d4a2c95dbe3c58acdb1df2a04bff9 +0 -0
- data/test/dummy/tmp/cache/assets/E9D/620/sprockets%2Fcbde7d2f6466ed4a7dddefc773f63eae +0 -0
- data/vendor/assets/images/jquery-mobile/icons-18-black.png +0 -0
- data/vendor/assets/images/jquery-mobile/icons-36-black.png +0 -0
- data/vendor/assets/javascripts/jquery.mobile.js +245 -77
- data/vendor/assets/javascripts/jquery.mobile.min.js +123 -117
- data/vendor/assets/stylesheets/jquery.mobile.css.scss +42 -42
- data/vendor/assets/stylesheets/jquery.mobile.min.css.scss +1 -1
- data/vendor/assets/stylesheets/jquery.mobile.structure.css +33 -11
- data/vendor/assets/stylesheets/jquery.mobile.structure.min.css +2 -2
- metadata +52 -8
data/README.rdoc
CHANGED
Binary file
|
@@ -0,0 +1,470 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/" for 127.0.0.1 at 2012-01-28 10:17:55 -0200
|
4
|
+
Processing by NotesController#index as HTML
|
5
|
+
Completed 500 Internal Server Error in 1ms
|
6
|
+
|
7
|
+
ActiveRecord::StatementInvalid (Could not find table 'notes'):
|
8
|
+
app/controllers/notes_controller.rb:5:in `index'
|
9
|
+
|
10
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.1ms)
|
11
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.9ms)
|
12
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (37.5ms)
|
13
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
14
|
+
[1m[35m (3.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
15
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
16
|
+
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
17
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
18
|
+
Migrating to CreateNotes (20110914151624)
|
19
|
+
[1m[35m (0.7ms)[0m CREATE TABLE "notes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar(255), "body" text, "created_at" datetime, "updated_at" datetime)
|
20
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20110914151624')[0m
|
21
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
22
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
23
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("notes")
|
24
|
+
|
25
|
+
|
26
|
+
Started GET "/" for 127.0.0.1 at 2012-01-28 10:18:11 -0200
|
27
|
+
Processing by NotesController#index as HTML
|
28
|
+
[1m[36mNote Load (0.4ms)[0m [1mSELECT "notes".* FROM "notes" [0m
|
29
|
+
Rendered notes/index.html.erb within layouts/application (33.9ms)
|
30
|
+
Compiled application.css (3ms) (pid 2238)
|
31
|
+
Completed 500 Internal Server Error in 88ms
|
32
|
+
|
33
|
+
ActionView::Template::Error (no such file to load -- sass
|
34
|
+
(in /Users/tscolari/Projetos/gems/jquery-mobile-rails/vendor/assets/stylesheets/jquery.mobile.min.css.scss)):
|
35
|
+
3: <head>
|
36
|
+
4: <title>Dummy</title>
|
37
|
+
5: <meta name="viewport" content="width=device-width, initial-scale=1">
|
38
|
+
6: <%= stylesheet_link_tag "application" %>
|
39
|
+
7: <%= javascript_include_tag "application" %>
|
40
|
+
8: <%= csrf_meta_tags %>
|
41
|
+
9: </head>
|
42
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1449618547341120855_70246763589460'
|
43
|
+
app/controllers/notes_controller.rb:7:in `index'
|
44
|
+
|
45
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
46
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
47
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.1.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
|
48
|
+
|
49
|
+
|
50
|
+
Started GET "/" for 127.0.0.1 at 2012-01-28 10:22:01 -0200
|
51
|
+
|
52
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
53
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:374:in `retrieve_connection'
|
54
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_specification.rb:168:in `retrieve_connection'
|
55
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_specification.rb:142:in `connection'
|
56
|
+
activerecord (3.2.1) lib/active_record/query_cache.rb:67:in `rescue in call'
|
57
|
+
activerecord (3.2.1) lib/active_record/query_cache.rb:61:in `call'
|
58
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
|
59
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
60
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__205396868830559061__call__3676564681778977609__callbacks'
|
61
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
|
62
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
63
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
64
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
65
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
66
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
67
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
68
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
69
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
70
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
71
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
72
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
73
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
74
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
75
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
76
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
77
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
78
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
79
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
80
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
81
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
82
|
+
/Users/tscolari/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
83
|
+
/Users/tscolari/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
84
|
+
/Users/tscolari/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
85
|
+
|
86
|
+
|
87
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
88
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (8.8ms)
|
89
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.5ms)
|
90
|
+
|
91
|
+
|
92
|
+
Started GET "/notes" for 127.0.0.1 at 2012-01-28 10:22:38 -0200
|
93
|
+
|
94
|
+
ActiveRecord::ConnectionNotEstablished (ActiveRecord::ConnectionNotEstablished):
|
95
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:374:in `retrieve_connection'
|
96
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_specification.rb:168:in `retrieve_connection'
|
97
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_specification.rb:142:in `connection'
|
98
|
+
activerecord (3.2.1) lib/active_record/query_cache.rb:67:in `rescue in call'
|
99
|
+
activerecord (3.2.1) lib/active_record/query_cache.rb:61:in `call'
|
100
|
+
activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
|
101
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
102
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__205396868830559061__call__3676564681778977609__callbacks'
|
103
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
|
104
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
105
|
+
activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
106
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
107
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
108
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
109
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
110
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
111
|
+
railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
|
112
|
+
railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
|
113
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
114
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
115
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
116
|
+
activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
117
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
118
|
+
actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
|
119
|
+
railties (3.2.1) lib/rails/engine.rb:479:in `call'
|
120
|
+
railties (3.2.1) lib/rails/application.rb:220:in `call'
|
121
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
122
|
+
railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
|
123
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
124
|
+
/Users/tscolari/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
|
125
|
+
/Users/tscolari/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
|
126
|
+
/Users/tscolari/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
|
127
|
+
|
128
|
+
|
129
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
130
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
131
|
+
Rendered /Users/tscolari/.rvm/gems/ruby-1.9.2-p290@jquery-mobile-rails/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.0ms)
|
132
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
133
|
+
Migrating to CreateNotes (20110914151624)
|
134
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
135
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
136
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("notes")
|
137
|
+
|
138
|
+
|
139
|
+
Started GET "/notes" for 127.0.0.1 at 2012-01-28 10:26:04 -0200
|
140
|
+
Processing by NotesController#index as HTML
|
141
|
+
[1m[36mNote Load (0.1ms)[0m [1mSELECT "notes".* FROM "notes" [0m
|
142
|
+
Rendered notes/index.html.erb within layouts/application (10.6ms)
|
143
|
+
Compiled jquery.mobile.min.css (1124ms) (pid 2899)
|
144
|
+
Compiled notes.css (0ms) (pid 2899)
|
145
|
+
Compiled application.css (1158ms) (pid 2899)
|
146
|
+
Compiled jquery.js (1ms) (pid 2899)
|
147
|
+
Compiled jquery_ujs.js (0ms) (pid 2899)
|
148
|
+
Compiled jquery.mobile.min.js (0ms) (pid 2899)
|
149
|
+
Compiled notes.js (0ms) (pid 2899)
|
150
|
+
Compiled application.js (88ms) (pid 2899)
|
151
|
+
Completed 200 OK in 1398ms (Views: 1396.3ms | ActiveRecord: 0.1ms)
|
152
|
+
|
153
|
+
|
154
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
155
|
+
Served asset /jquery.mobile.min.css - 200 OK (9ms)
|
156
|
+
|
157
|
+
|
158
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
159
|
+
Served asset /application.css - 200 OK (6ms)
|
160
|
+
|
161
|
+
|
162
|
+
Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
163
|
+
Served asset /notes.css - 200 OK (3ms)
|
164
|
+
|
165
|
+
|
166
|
+
Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
167
|
+
Served asset /notes.js - 200 OK (1ms)
|
168
|
+
|
169
|
+
|
170
|
+
Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
171
|
+
Served asset /jquery.mobile.min.js - 200 OK (2ms)
|
172
|
+
|
173
|
+
|
174
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
175
|
+
Served asset /jquery.js - 200 OK (2ms)
|
176
|
+
|
177
|
+
|
178
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
179
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
180
|
+
|
181
|
+
|
182
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 10:26:06 -0200
|
183
|
+
Served asset /application.js - 200 OK (14ms)
|
184
|
+
|
185
|
+
|
186
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:26:12 -0200
|
187
|
+
Served asset /jquery.mobile.min.css - 304 Not Modified (0ms)
|
188
|
+
|
189
|
+
|
190
|
+
Started GET "/notes/new" for 127.0.0.1 at 2012-01-28 10:26:40 -0200
|
191
|
+
Processing by NotesController#new as HTML
|
192
|
+
Rendered notes/_form.html.erb (9.9ms)
|
193
|
+
Rendered notes/new.html.erb within layouts/application (53.7ms)
|
194
|
+
Completed 200 OK in 66ms (Views: 58.7ms | ActiveRecord: 0.0ms)
|
195
|
+
|
196
|
+
|
197
|
+
Started POST "/notes" for 127.0.0.1 at 2012-01-28 10:26:45 -0200
|
198
|
+
Processing by NotesController#create as HTML
|
199
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"FxHpSalQer31d1EnIY0ye/phSznGKmoVP1KsgVF6YLE=", "note"=>{"title"=>"saddsad", "body"=>"asdadas"}, "commit"=>"Create Note"}
|
200
|
+
[1m[35m (0.1ms)[0m begin transaction
|
201
|
+
[1m[36mSQL (13.9ms)[0m [1mINSERT INTO "notes" ("body", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?)[0m [["body", "asdadas"], ["created_at", Sat, 28 Jan 2012 12:26:45 UTC +00:00], ["title", "saddsad"], ["updated_at", Sat, 28 Jan 2012 12:26:45 UTC +00:00]]
|
202
|
+
[1m[35m (0.7ms)[0m commit transaction
|
203
|
+
Redirected to http://0.0.0.0:3000/notes/1
|
204
|
+
Completed 302 Found in 20ms (ActiveRecord: 14.7ms)
|
205
|
+
|
206
|
+
|
207
|
+
Started GET "/notes/1" for 127.0.0.1 at 2012-01-28 10:26:45 -0200
|
208
|
+
Processing by NotesController#show as HTML
|
209
|
+
Parameters: {"id"=>"1"}
|
210
|
+
[1m[36mNote Load (0.2ms)[0m [1mSELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1[0m [["id", "1"]]
|
211
|
+
Rendered notes/show.html.erb within layouts/application (2.0ms)
|
212
|
+
Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.2ms)
|
213
|
+
|
214
|
+
|
215
|
+
Started GET "/notes/1/edit" for 127.0.0.1 at 2012-01-28 10:26:49 -0200
|
216
|
+
Processing by NotesController#edit as HTML
|
217
|
+
Parameters: {"id"=>"1"}
|
218
|
+
[1m[35mNote Load (0.3ms)[0m SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
|
219
|
+
Rendered notes/_form.html.erb (2.6ms)
|
220
|
+
Rendered notes/edit.html.erb within layouts/application (4.5ms)
|
221
|
+
Completed 200 OK in 15ms (Views: 12.3ms | ActiveRecord: 0.3ms)
|
222
|
+
|
223
|
+
|
224
|
+
Started GET "/notes/1/edit" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
225
|
+
Processing by NotesController#edit as HTML
|
226
|
+
Parameters: {"id"=>"1"}
|
227
|
+
[1m[36mNote Load (0.2ms)[0m [1mSELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1[0m [["id", "1"]]
|
228
|
+
Rendered notes/_form.html.erb (3.0ms)
|
229
|
+
Rendered notes/edit.html.erb within layouts/application (4.6ms)
|
230
|
+
Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.2ms)
|
231
|
+
|
232
|
+
|
233
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
234
|
+
Served asset /application.css - 200 OK (0ms)
|
235
|
+
|
236
|
+
|
237
|
+
Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
238
|
+
Served asset /notes.css - 200 OK (0ms)
|
239
|
+
|
240
|
+
|
241
|
+
Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
242
|
+
Served asset /jquery.mobile.min.js - 200 OK (0ms)
|
243
|
+
|
244
|
+
|
245
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
246
|
+
Served asset /jquery.js - 200 OK (0ms)
|
247
|
+
|
248
|
+
|
249
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
250
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
251
|
+
|
252
|
+
|
253
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
254
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
255
|
+
|
256
|
+
|
257
|
+
Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
258
|
+
Served asset /notes.js - 200 OK (0ms)
|
259
|
+
|
260
|
+
|
261
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:05 -0200
|
262
|
+
Served asset /application.js - 200 OK (0ms)
|
263
|
+
|
264
|
+
|
265
|
+
Started GET "/notes/1/edit" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
266
|
+
Processing by NotesController#edit as HTML
|
267
|
+
Parameters: {"id"=>"1"}
|
268
|
+
[1m[35mNote Load (0.1ms)[0m SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
|
269
|
+
Rendered notes/_form.html.erb (39.1ms)
|
270
|
+
Rendered notes/edit.html.erb within layouts/application (41.0ms)
|
271
|
+
Completed 200 OK in 48ms (Views: 46.6ms | ActiveRecord: 0.1ms)
|
272
|
+
|
273
|
+
|
274
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
275
|
+
Served asset /application.css - 200 OK (0ms)
|
276
|
+
|
277
|
+
|
278
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
279
|
+
Served asset /jquery_ujs.js - 200 OK (0ms)
|
280
|
+
|
281
|
+
|
282
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
283
|
+
Served asset /jquery.js - 200 OK (0ms)
|
284
|
+
|
285
|
+
|
286
|
+
Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
287
|
+
Served asset /notes.css - 200 OK (0ms)
|
288
|
+
|
289
|
+
|
290
|
+
Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
291
|
+
Served asset /jquery.mobile.min.js - 200 OK (0ms)
|
292
|
+
|
293
|
+
|
294
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
295
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
296
|
+
|
297
|
+
|
298
|
+
Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
299
|
+
Served asset /notes.js - 200 OK (0ms)
|
300
|
+
|
301
|
+
|
302
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 10:27:28 -0200
|
303
|
+
Served asset /application.js - 200 OK (1ms)
|
304
|
+
|
305
|
+
|
306
|
+
Started GET "/notes" for 127.0.0.1 at 2012-01-28 10:27:41 -0200
|
307
|
+
Processing by NotesController#index as HTML
|
308
|
+
[1m[36mNote Load (0.2ms)[0m [1mSELECT "notes".* FROM "notes" [0m
|
309
|
+
Rendered notes/index.html.erb within layouts/application (0.6ms)
|
310
|
+
Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)
|
311
|
+
|
312
|
+
|
313
|
+
Started GET "/" for 127.0.0.1 at 2012-01-28 10:27:50 -0200
|
314
|
+
Processing by NotesController#index as HTML
|
315
|
+
[1m[35mNote Load (0.2ms)[0m SELECT "notes".* FROM "notes"
|
316
|
+
Rendered notes/index.html.erb within layouts/application (0.7ms)
|
317
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.2ms)
|
318
|
+
|
319
|
+
|
320
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:30:57 -0200
|
321
|
+
Served asset /jquery.mobile.min.css - 304 Not Modified (5ms)
|
322
|
+
|
323
|
+
|
324
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:31:00 -0200
|
325
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
326
|
+
|
327
|
+
|
328
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:32:26 -0200
|
329
|
+
Served asset /jquery.mobile.min.css - 200 OK (5ms)
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:33:24 -0200
|
333
|
+
Served asset /jquery.mobile.min.css - 200 OK (6ms)
|
334
|
+
|
335
|
+
|
336
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:33:26 -0200
|
337
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
338
|
+
|
339
|
+
|
340
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:33:27 -0200
|
341
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
342
|
+
|
343
|
+
|
344
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:36:41 -0200
|
345
|
+
Served asset /jquery.mobile.min.css - 200 OK (4ms)
|
346
|
+
|
347
|
+
|
348
|
+
Started GET "/" for 127.0.0.1 at 2012-01-28 10:37:07 -0200
|
349
|
+
Processing by NotesController#index as HTML
|
350
|
+
[1m[36mNote Load (0.2ms)[0m [1mSELECT "notes".* FROM "notes" [0m
|
351
|
+
Rendered notes/index.html.erb within layouts/application (24.8ms)
|
352
|
+
Compiled application.css (3ms) (pid 2958)
|
353
|
+
Completed 200 OK in 133ms (Views: 126.3ms | ActiveRecord: 0.2ms)
|
354
|
+
|
355
|
+
|
356
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
357
|
+
Served asset /application.css - 200 OK (17ms)
|
358
|
+
|
359
|
+
|
360
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
361
|
+
Served asset /jquery.mobile.min.css - 304 Not Modified (0ms)
|
362
|
+
|
363
|
+
|
364
|
+
Started GET "/assets/jquery.mobile.min.js?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
365
|
+
Served asset /jquery.mobile.min.js - 304 Not Modified (6ms)
|
366
|
+
|
367
|
+
|
368
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
369
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
370
|
+
|
371
|
+
|
372
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
373
|
+
Served asset /jquery.js - 304 Not Modified (30ms)
|
374
|
+
|
375
|
+
|
376
|
+
Started GET "/assets/notes.css?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
377
|
+
Served asset /notes.css - 304 Not Modified (2ms)
|
378
|
+
|
379
|
+
|
380
|
+
Started GET "/assets/notes.js?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
381
|
+
Served asset /notes.js - 304 Not Modified (3ms)
|
382
|
+
|
383
|
+
|
384
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 10:37:08 -0200
|
385
|
+
Served asset /application.js - 304 Not Modified (11ms)
|
386
|
+
|
387
|
+
|
388
|
+
Started GET "/notes/1" for 127.0.0.1 at 2012-01-28 10:37:09 -0200
|
389
|
+
Processing by NotesController#show as HTML
|
390
|
+
Parameters: {"id"=>"1"}
|
391
|
+
[1m[35mNote Load (0.4ms)[0m SELECT "notes".* FROM "notes" WHERE "notes"."id" = ? LIMIT 1 [["id", "1"]]
|
392
|
+
Rendered notes/show.html.erb within layouts/application (1.5ms)
|
393
|
+
Completed 200 OK in 9ms (Views: 6.9ms | ActiveRecord: 0.4ms)
|
394
|
+
|
395
|
+
|
396
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:38 -0200
|
397
|
+
Served asset /jquery.mobile.min.css - 200 OK (6ms)
|
398
|
+
|
399
|
+
|
400
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:40 -0200
|
401
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
402
|
+
|
403
|
+
|
404
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:41 -0200
|
405
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
406
|
+
|
407
|
+
|
408
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:42 -0200
|
409
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
410
|
+
|
411
|
+
|
412
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:42 -0200
|
413
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
414
|
+
|
415
|
+
|
416
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:42 -0200
|
417
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
418
|
+
|
419
|
+
|
420
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:43 -0200
|
421
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
422
|
+
|
423
|
+
|
424
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:43 -0200
|
425
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
426
|
+
|
427
|
+
|
428
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:43 -0200
|
429
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
430
|
+
|
431
|
+
|
432
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:43 -0200
|
433
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
434
|
+
|
435
|
+
|
436
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:44 -0200
|
437
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
438
|
+
|
439
|
+
|
440
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:44 -0200
|
441
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
442
|
+
|
443
|
+
|
444
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:46 -0200
|
445
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
446
|
+
|
447
|
+
|
448
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:47 -0200
|
449
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
450
|
+
|
451
|
+
|
452
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:39:48 -0200
|
453
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
454
|
+
|
455
|
+
|
456
|
+
Started GET "/assets/jquery.mobile.min.css?body=1" for 127.0.0.1 at 2012-01-28 10:40:28 -0200
|
457
|
+
Served asset /jquery.mobile.min.css - 200 OK (0ms)
|
458
|
+
|
459
|
+
|
460
|
+
Started GET "/assets/jquery.mobile.css?body=1" for 127.0.0.1 at 2012-01-28 10:40:33 -0200
|
461
|
+
Compiled jquery.mobile.css (1539ms) (pid 2997)
|
462
|
+
Served asset /jquery.mobile.css - 200 OK (1548ms)
|
463
|
+
|
464
|
+
|
465
|
+
Started GET "/assets/jquery.mobile.css?body=1" for 127.0.0.1 at 2012-01-28 10:40:39 -0200
|
466
|
+
Served asset /jquery.mobile.css - 304 Not Modified (0ms)
|
467
|
+
|
468
|
+
|
469
|
+
Started GET "/assets/jquery.mobile.css?body=1" for 127.0.0.1 at 2012-01-28 10:40:40 -0200
|
470
|
+
Served asset /jquery.mobile.css - 200 OK (0ms)
|