skins 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +34 -0
- data/lib/generators/skins/install_generator.rb +14 -0
- data/lib/skins.rb +4 -0
- data/lib/skins/engine.rb +4 -0
- data/lib/skins/version.rb +3 -0
- data/lib/tasks/skins_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +14 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/books_controller.rb +58 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/books_helper.rb +2 -0
- data/test/dummy/app/models/book.rb +2 -0
- data/test/dummy/app/views/books/_form.html.erb +41 -0
- data/test/dummy/app/views/books/edit.html.erb +6 -0
- data/test/dummy/app/views/books/index.html.erb +37 -0
- data/test/dummy/app/views/books/new.html.erb +5 -0
- data/test/dummy/app/views/books/show.html.erb +34 -0
- data/test/dummy/app/views/layouts/application.html.erb +15 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/bin/setup +29 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +26 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +41 -0
- data/test/dummy/config/environments/production.rb +76 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +11 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +60 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20141116110032_create_books.rb +14 -0
- data/test/dummy/db/schema.rb +27 -0
- data/test/dummy/log/development.log +745 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/test/controllers/books_controller_test.rb +49 -0
- data/test/dummy/test/fixtures/books.yml +17 -0
- data/test/dummy/test/models/book_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/071c61ef79e58c05e615b775c9c6ed05 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/20f668d2168c84faddd7eef38ec0f9a5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6fbd6219c2326eddd846c76ce72f1a4a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/876a7f88918317e09955c0c022211db6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/97d8ab493374caffba772b190453211b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a208afbd77920156810272b332e20d8e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bb9ce87fadb7e2d4530b504849626f51 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/df0e607dd6f2c5ab363850690e402621 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e945dd96f47babf994a0b0afc85f4a15 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/skins_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +226 -0
@@ -0,0 +1,745 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/books/new" for ::1 at 2014-12-29 17:59:12 +0000
|
4
|
+
|
5
|
+
ActiveRecord::PendingMigrationError (
|
6
|
+
|
7
|
+
Migrations are pending. To resolve this issue, run:
|
8
|
+
|
9
|
+
bin/rake db:migrate RAILS_ENV=development
|
10
|
+
|
11
|
+
):
|
12
|
+
activerecord (4.2.0.beta4) lib/active_record/migration.rb:393:in `check_pending!'
|
13
|
+
activerecord (4.2.0.beta4) lib/active_record/migration.rb:374:in `call'
|
14
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
15
|
+
activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:88:in `call'
|
16
|
+
activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
17
|
+
activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
18
|
+
activesupport (4.2.0.beta4) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
19
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
20
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
21
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
22
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
23
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
24
|
+
railties (4.2.0.beta4) lib/rails/rack/logger.rb:38:in `call_app'
|
25
|
+
railties (4.2.0.beta4) lib/rails/rack/logger.rb:20:in `block in call'
|
26
|
+
activesupport (4.2.0.beta4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
27
|
+
activesupport (4.2.0.beta4) lib/active_support/tagged_logging.rb:26:in `tagged'
|
28
|
+
activesupport (4.2.0.beta4) lib/active_support/tagged_logging.rb:68:in `tagged'
|
29
|
+
railties (4.2.0.beta4) lib/rails/rack/logger.rb:20:in `call'
|
30
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
31
|
+
rack (1.6.0.beta) lib/rack/methodoverride.rb:22:in `call'
|
32
|
+
rack (1.6.0.beta) lib/rack/runtime.rb:17:in `call'
|
33
|
+
activesupport (4.2.0.beta4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
34
|
+
rack (1.6.0.beta) lib/rack/lock.rb:17:in `call'
|
35
|
+
actionpack (4.2.0.beta4) lib/action_dispatch/middleware/static.rb:113:in `call'
|
36
|
+
rack (1.6.0.beta) lib/rack/sendfile.rb:113:in `call'
|
37
|
+
railties (4.2.0.beta4) lib/rails/engine.rb:514:in `call'
|
38
|
+
railties (4.2.0.beta4) lib/rails/application.rb:161:in `call'
|
39
|
+
rack (1.6.0.beta) lib/rack/tempfile_reaper.rb:15:in `call'
|
40
|
+
rack (1.6.0.beta) lib/rack/lint.rb:49:in `_call'
|
41
|
+
rack (1.6.0.beta) lib/rack/lint.rb:37:in `call'
|
42
|
+
rack (1.6.0.beta) lib/rack/showexceptions.rb:24:in `call'
|
43
|
+
rack (1.6.0.beta) lib/rack/commonlogger.rb:33:in `call'
|
44
|
+
rack (1.6.0.beta) lib/rack/chunked.rb:54:in `call'
|
45
|
+
rack (1.6.0.beta) lib/rack/content_length.rb:15:in `call'
|
46
|
+
rack (1.6.0.beta) lib/rack/handler/webrick.rb:89:in `service'
|
47
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
48
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
49
|
+
/Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
50
|
+
|
51
|
+
|
52
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
|
53
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
54
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
55
|
+
Rendered /Users/arti/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-4.2.0.beta4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (27.6ms)
|
56
|
+
[1m[36m (13.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
57
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
58
|
+
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
59
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
60
|
+
Migrating to CreateBooks (20141116110032)
|
61
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
62
|
+
[1m[35m (0.8ms)[0m CREATE TABLE "books" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "author" varchar, "description" text, "price" float, "published_at" datetime, "discounted" boolean, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
63
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20141116110032"]]
|
64
|
+
[1m[35m (1.6ms)[0m commit transaction
|
65
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
66
|
+
|
67
|
+
|
68
|
+
Started GET "/books/new" for ::1 at 2014-12-29 17:59:42 +0000
|
69
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
70
|
+
Processing by BooksController#new as HTML
|
71
|
+
Rendered books/_form.html.erb (185.1ms)
|
72
|
+
Rendered books/new.html.erb within layouts/application (210.3ms)
|
73
|
+
Completed 200 OK in 410ms (Views: 394.0ms | ActiveRecord: 0.5ms)
|
74
|
+
|
75
|
+
|
76
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 17:59:42 +0000
|
77
|
+
|
78
|
+
|
79
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 17:59:42 +0000
|
80
|
+
|
81
|
+
|
82
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 17:59:42 +0000
|
83
|
+
|
84
|
+
|
85
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 17:59:42 +0000
|
86
|
+
|
87
|
+
|
88
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 17:59:42 +0000
|
89
|
+
|
90
|
+
|
91
|
+
Started GET "/books" for ::1 at 2014-12-29 17:59:48 +0000
|
92
|
+
Processing by BooksController#index as HTML
|
93
|
+
[1m[35mBook Load (0.3ms)[0m SELECT "books".* FROM "books"
|
94
|
+
Rendered books/index.html.erb within layouts/application (4.2ms)
|
95
|
+
Completed 200 OK in 97ms (Views: 95.9ms | ActiveRecord: 0.3ms)
|
96
|
+
|
97
|
+
|
98
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 17:59:48 +0000
|
99
|
+
|
100
|
+
|
101
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 17:59:48 +0000
|
102
|
+
|
103
|
+
|
104
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 17:59:48 +0000
|
105
|
+
|
106
|
+
|
107
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 17:59:48 +0000
|
108
|
+
|
109
|
+
|
110
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 17:59:48 +0000
|
111
|
+
|
112
|
+
|
113
|
+
Started GET "/books/new" for ::1 at 2014-12-29 17:59:53 +0000
|
114
|
+
Processing by BooksController#new as HTML
|
115
|
+
Rendered books/_form.html.erb (10.9ms)
|
116
|
+
Rendered books/new.html.erb within layouts/application (11.9ms)
|
117
|
+
Completed 200 OK in 43ms (Views: 42.6ms | ActiveRecord: 0.0ms)
|
118
|
+
|
119
|
+
|
120
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 17:59:53 +0000
|
121
|
+
|
122
|
+
|
123
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 17:59:53 +0000
|
124
|
+
|
125
|
+
|
126
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 17:59:53 +0000
|
127
|
+
|
128
|
+
|
129
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 17:59:53 +0000
|
130
|
+
|
131
|
+
|
132
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 17:59:53 +0000
|
133
|
+
|
134
|
+
|
135
|
+
Started POST "/books" for ::1 at 2014-12-29 18:02:38 +0000
|
136
|
+
Processing by BooksController#create as HTML
|
137
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"a/nN2sMvmPLOQKFitluxkADo6lu/lU9uhK+4lvVZuopcXz2+m690hqF7X41zfb2EhS5DaoilnovsSJmoAhw8vw==", "book"=>{"title"=>"1984", "author"=>"George Orwell", "description"=>"Written in 1948, 1984 was George Orwell’s chilling prophecy about the future. And while 1984 has come and gone, Orwell’s narrative is timelier than ever. 1984 presents a startling and haunting vision of the world, so powerful that it is completely convincing from start to finish. No one can deny the power of this novel, its hold on the imaginations of multiple generations of readers, or the resiliency of its admonitions—a legacy that seems only to grow with the passage of time.", "price"=>"$11.86", "published_at(1i)"=>"2010", "published_at(2i)"=>"7", "published_at(3i)"=>"1", "published_at(4i)"=>"17", "published_at(5i)"=>"59", "discounted"=>"0"}, "commit"=>"Create Book"}
|
138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
139
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["author", "George Orwell"], ["created_at", "2014-12-29 18:02:38.991123"], ["description", "Written in 1948, 1984 was George Orwell’s chilling prophecy about the future. And while 1984 has come and gone, Orwell’s narrative is timelier than ever. 1984 presents a startling and haunting vision of the world, so powerful that it is completely convincing from start to finish. No one can deny the power of this novel, its hold on the imaginations of multiple generations of readers, or the resiliency of its admonitions—a legacy that seems only to grow with the passage of time."], ["discounted", "f"], ["price", 0.0], ["published_at", "2010-07-01 17:59:00.000000"], ["title", "1984"], ["updated_at", "2014-12-29 18:02:38.991123"]]
|
140
|
+
[1m[36m (2.1ms)[0m [1mcommit transaction[0m
|
141
|
+
Redirected to http://localhost:3000/books/1
|
142
|
+
Completed 302 Found in 20ms (ActiveRecord: 2.8ms)
|
143
|
+
|
144
|
+
|
145
|
+
Started GET "/books/1" for ::1 at 2014-12-29 18:02:39 +0000
|
146
|
+
Processing by BooksController#show as HTML
|
147
|
+
Parameters: {"id"=>"1"}
|
148
|
+
[1m[35mBook Load (0.5ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
149
|
+
Rendered books/show.html.erb within layouts/application (2.3ms)
|
150
|
+
Completed 200 OK in 75ms (Views: 29.4ms | ActiveRecord: 0.5ms)
|
151
|
+
|
152
|
+
|
153
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:02:39 +0000
|
154
|
+
|
155
|
+
|
156
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:02:39 +0000
|
157
|
+
|
158
|
+
|
159
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:02:39 +0000
|
160
|
+
|
161
|
+
|
162
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:02:39 +0000
|
163
|
+
|
164
|
+
|
165
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:02:39 +0000
|
166
|
+
|
167
|
+
|
168
|
+
Started GET "/books" for ::1 at 2014-12-29 18:02:44 +0000
|
169
|
+
Processing by BooksController#index as HTML
|
170
|
+
[1m[36mBook Load (0.3ms)[0m [1mSELECT "books".* FROM "books"[0m
|
171
|
+
Rendered books/index.html.erb within layouts/application (6.0ms)
|
172
|
+
Completed 200 OK in 107ms (Views: 105.9ms | ActiveRecord: 0.3ms)
|
173
|
+
|
174
|
+
|
175
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:02:45 +0000
|
176
|
+
|
177
|
+
|
178
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:02:45 +0000
|
179
|
+
|
180
|
+
|
181
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:02:45 +0000
|
182
|
+
|
183
|
+
|
184
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:02:45 +0000
|
185
|
+
|
186
|
+
|
187
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:02:45 +0000
|
188
|
+
|
189
|
+
|
190
|
+
Started GET "/books/1/edit" for ::1 at 2014-12-29 18:03:04 +0000
|
191
|
+
Processing by BooksController#edit as HTML
|
192
|
+
Parameters: {"id"=>"1"}
|
193
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
194
|
+
Rendered books/_form.html.erb (10.6ms)
|
195
|
+
Rendered books/edit.html.erb within layouts/application (15.1ms)
|
196
|
+
Completed 200 OK in 48ms (Views: 46.6ms | ActiveRecord: 0.2ms)
|
197
|
+
|
198
|
+
|
199
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:03:04 +0000
|
200
|
+
|
201
|
+
|
202
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:03:04 +0000
|
203
|
+
|
204
|
+
|
205
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:04 +0000
|
206
|
+
|
207
|
+
|
208
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:04 +0000
|
209
|
+
|
210
|
+
|
211
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:04 +0000
|
212
|
+
|
213
|
+
|
214
|
+
Started PATCH "/books/1" for ::1 at 2014-12-29 18:03:09 +0000
|
215
|
+
Processing by BooksController#update as HTML
|
216
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tp2/gGzpcVQIyh1W9PYmhUoQ1MKWxDayibinQfGRokJ5O0/kNGmdIGfx47kx0CqRz9Z986H051fhX4Z/BtQkdw==", "book"=>{"title"=>"1984", "author"=>"George Orwell", "description"=>"Written in 1948, 1984 was George Orwell’s chilling prophecy about the future. And while 1984 has come and gone, Orwell’s narrative is timelier than ever. 1984 presents a startling and haunting vision of the world, so powerful that it is completely convincing from start to finish. No one can deny the power of this novel, its hold on the imaginations of multiple generations of readers, or the resiliency of its admonitions—a legacy that seems only to grow with the passage of time.", "price"=>"11.89", "published_at(1i)"=>"2010", "published_at(2i)"=>"7", "published_at(3i)"=>"1", "published_at(4i)"=>"17", "published_at(5i)"=>"59", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"1"}
|
217
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
218
|
+
[1m[35m (0.1ms)[0m begin transaction
|
219
|
+
[1m[36mSQL (0.8ms)[0m [1mUPDATE "books" SET "price" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["price", 11.89], ["updated_at", "2014-12-29 18:03:09.367910"]]
|
220
|
+
[1m[35m (1.9ms)[0m commit transaction
|
221
|
+
Redirected to http://localhost:3000/books/1
|
222
|
+
Completed 302 Found in 14ms (ActiveRecord: 3.0ms)
|
223
|
+
|
224
|
+
|
225
|
+
Started GET "/books/1" for ::1 at 2014-12-29 18:03:09 +0000
|
226
|
+
Processing by BooksController#show as HTML
|
227
|
+
Parameters: {"id"=>"1"}
|
228
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
229
|
+
Rendered books/show.html.erb within layouts/application (1.2ms)
|
230
|
+
Completed 200 OK in 91ms (Views: 89.7ms | ActiveRecord: 0.2ms)
|
231
|
+
|
232
|
+
|
233
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:03:09 +0000
|
234
|
+
|
235
|
+
|
236
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:09 +0000
|
237
|
+
|
238
|
+
|
239
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:09 +0000
|
240
|
+
|
241
|
+
|
242
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:09 +0000
|
243
|
+
|
244
|
+
|
245
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:03:09 +0000
|
246
|
+
|
247
|
+
|
248
|
+
Started GET "/books" for ::1 at 2014-12-29 18:03:11 +0000
|
249
|
+
Processing by BooksController#index as HTML
|
250
|
+
[1m[35mBook Load (0.3ms)[0m SELECT "books".* FROM "books"
|
251
|
+
Rendered books/index.html.erb within layouts/application (7.8ms)
|
252
|
+
Completed 200 OK in 40ms (Views: 39.0ms | ActiveRecord: 0.3ms)
|
253
|
+
|
254
|
+
|
255
|
+
Started GET "/assets/skins-air-a6f972a82ec6afa024fb6c64c499616d.css?body=1" for ::1 at 2014-12-29 18:03:12 +0000
|
256
|
+
|
257
|
+
|
258
|
+
Started GET "/assets/application-e196898d864b153b7dba366e4e0f8b52.css?body=1" for ::1 at 2014-12-29 18:03:12 +0000
|
259
|
+
|
260
|
+
|
261
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:12 +0000
|
262
|
+
|
263
|
+
|
264
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:12 +0000
|
265
|
+
|
266
|
+
|
267
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:12 +0000
|
268
|
+
|
269
|
+
|
270
|
+
Started GET "/books" for ::1 at 2014-12-29 18:03:30 +0000
|
271
|
+
Processing by BooksController#index as HTML
|
272
|
+
[1m[36mBook Load (0.3ms)[0m [1mSELECT "books".* FROM "books"[0m
|
273
|
+
Rendered books/index.html.erb within layouts/application (5.0ms)
|
274
|
+
Completed 200 OK in 110ms (Views: 109.1ms | ActiveRecord: 0.3ms)
|
275
|
+
|
276
|
+
|
277
|
+
Started GET "/assets/skins-air-37e23b1c8dd705e15cfaccab8f944678.css?body=1" for ::1 at 2014-12-29 18:03:30 +0000
|
278
|
+
|
279
|
+
|
280
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:03:30 +0000
|
281
|
+
|
282
|
+
|
283
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:03:30 +0000
|
284
|
+
|
285
|
+
|
286
|
+
Started GET "/assets/application-cc8f44ee36547dc978d14a6603ae7cee.css?body=1" for ::1 at 2014-12-29 18:03:30 +0000
|
287
|
+
|
288
|
+
|
289
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:03:30 +0000
|
290
|
+
|
291
|
+
|
292
|
+
Started GET "/books/1/edit" for ::1 at 2014-12-29 18:04:15 +0000
|
293
|
+
Processing by BooksController#edit as HTML
|
294
|
+
Parameters: {"id"=>"1"}
|
295
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 1]]
|
296
|
+
Rendered books/_form.html.erb (11.3ms)
|
297
|
+
Rendered books/edit.html.erb within layouts/application (12.6ms)
|
298
|
+
Completed 200 OK in 42ms (Views: 40.4ms | ActiveRecord: 0.2ms)
|
299
|
+
|
300
|
+
|
301
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:04:15 +0000
|
302
|
+
|
303
|
+
|
304
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:04:15 +0000
|
305
|
+
|
306
|
+
|
307
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:04:15 +0000
|
308
|
+
|
309
|
+
|
310
|
+
Started PATCH "/books/1" for ::1 at 2014-12-29 18:04:22 +0000
|
311
|
+
Processing by BooksController#update as HTML
|
312
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"oBgWMwvw3dFGWPO6LOqxFJRm2CCOJoZtAiIHX3WePl+XvuZXU3AxpSljDVXpzL0AEaBxEbkWV4hqxSZhgtu4ag==", "book"=>{"title"=>"1984", "author"=>"George Orwell", "description"=>"Written in 1948, 1984 was George Orwell’s chilling prophecy about the future.", "price"=>"11.89", "published_at(1i)"=>"2010", "published_at(2i)"=>"7", "published_at(3i)"=>"1", "published_at(4i)"=>"17", "published_at(5i)"=>"59", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"1"}
|
313
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
314
|
+
[1m[35m (0.2ms)[0m begin transaction
|
315
|
+
[1m[36mSQL (0.5ms)[0m [1mUPDATE "books" SET "description" = ?, "updated_at" = ? WHERE "books"."id" = 1[0m [["description", "Written in 1948, 1984 was George Orwell’s chilling prophecy about the future."], ["updated_at", "2014-12-29 18:04:22.141021"]]
|
316
|
+
[1m[35m (1.7ms)[0m commit transaction
|
317
|
+
Redirected to http://localhost:3000/books/1
|
318
|
+
Completed 302 Found in 84ms (ActiveRecord: 2.6ms)
|
319
|
+
|
320
|
+
|
321
|
+
Started GET "/books/1" for ::1 at 2014-12-29 18:04:22 +0000
|
322
|
+
Processing by BooksController#show as HTML
|
323
|
+
Parameters: {"id"=>"1"}
|
324
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
325
|
+
Rendered books/show.html.erb within layouts/application (1.3ms)
|
326
|
+
Completed 200 OK in 32ms (Views: 30.6ms | ActiveRecord: 0.2ms)
|
327
|
+
|
328
|
+
|
329
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:04:22 +0000
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:04:22 +0000
|
333
|
+
|
334
|
+
|
335
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:04:22 +0000
|
336
|
+
|
337
|
+
|
338
|
+
Started GET "/books" for ::1 at 2014-12-29 18:04:23 +0000
|
339
|
+
Processing by BooksController#index as HTML
|
340
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books"
|
341
|
+
Rendered books/index.html.erb within layouts/application (4.4ms)
|
342
|
+
Completed 200 OK in 39ms (Views: 38.4ms | ActiveRecord: 0.2ms)
|
343
|
+
|
344
|
+
|
345
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:04:23 +0000
|
346
|
+
|
347
|
+
|
348
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:04:23 +0000
|
349
|
+
|
350
|
+
|
351
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:04:23 +0000
|
352
|
+
|
353
|
+
|
354
|
+
Started DELETE "/books/1" for ::1 at 2014-12-29 18:05:01 +0000
|
355
|
+
Processing by BooksController#destroy as HTML
|
356
|
+
Parameters: {"authenticity_token"=>"+I5XznQAPHMUkWCw24e6i/va+6EkPFVHG0xHZyK1JbfPKKeqLIDQB3uqnl8eobaffhxSkBMMhKJzq2ZZ1fCjgg==", "id"=>"1"}
|
357
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 1]]
|
358
|
+
[1m[35m (0.1ms)[0m begin transaction
|
359
|
+
[1m[36mSQL (3.9ms)[0m [1mDELETE FROM "books" WHERE "books"."id" = ?[0m [["id", 1]]
|
360
|
+
[1m[35m (2.7ms)[0m commit transaction
|
361
|
+
Redirected to http://localhost:3000/books
|
362
|
+
Completed 302 Found in 12ms (ActiveRecord: 6.9ms)
|
363
|
+
|
364
|
+
|
365
|
+
Started GET "/books" for ::1 at 2014-12-29 18:05:01 +0000
|
366
|
+
Processing by BooksController#index as HTML
|
367
|
+
[1m[36mBook Load (1.7ms)[0m [1mSELECT "books".* FROM "books"[0m
|
368
|
+
Rendered books/index.html.erb within layouts/application (4.9ms)
|
369
|
+
Completed 200 OK in 86ms (Views: 83.8ms | ActiveRecord: 1.7ms)
|
370
|
+
|
371
|
+
|
372
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:05:01 +0000
|
373
|
+
|
374
|
+
|
375
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:05:01 +0000
|
376
|
+
|
377
|
+
|
378
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:05:01 +0000
|
379
|
+
|
380
|
+
|
381
|
+
Started GET "/books/new" for ::1 at 2014-12-29 18:05:03 +0000
|
382
|
+
Processing by BooksController#new as HTML
|
383
|
+
Rendered books/_form.html.erb (11.1ms)
|
384
|
+
Rendered books/new.html.erb within layouts/application (12.8ms)
|
385
|
+
Completed 200 OK in 43ms (Views: 42.4ms | ActiveRecord: 0.0ms)
|
386
|
+
|
387
|
+
|
388
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:05:03 +0000
|
389
|
+
|
390
|
+
|
391
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:05:03 +0000
|
392
|
+
|
393
|
+
|
394
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:05:03 +0000
|
395
|
+
|
396
|
+
|
397
|
+
Started POST "/books" for ::1 at 2014-12-29 18:06:08 +0000
|
398
|
+
Processing by BooksController#create as HTML
|
399
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"PBh2dJWxiPxHH/MN5bmDUTgaUzopxcCkrR0PlTiKaRELvoYQzTFkiCgkDeIgn49Fvdz6Cx71EUHF+i6rz8/vJA==", "book"=>{"title"=>"Everything I Never Told You: A Novel", "author"=>"Celeste Ng", "description"=>"Lydia is dead. But they don’t know this yet . . . ", "price"=>"15.22", "published_at(1i)"=>"2014", "published_at(2i)"=>"6", "published_at(3i)"=>"1", "published_at(4i)"=>"18", "published_at(5i)"=>"05", "discounted"=>"0"}, "commit"=>"Create Book"}
|
400
|
+
[1m[35m (0.1ms)[0m begin transaction
|
401
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["author", "Celeste Ng"], ["created_at", "2014-12-29 18:06:08.192260"], ["description", "Lydia is dead. But they don’t know this yet . . . "], ["discounted", "f"], ["price", 15.22], ["published_at", "2014-06-01 18:05:00.000000"], ["title", "Everything I Never Told You: A Novel"], ["updated_at", "2014-12-29 18:06:08.192260"]]
|
402
|
+
[1m[35m (1.3ms)[0m commit transaction
|
403
|
+
Redirected to http://localhost:3000/books/2
|
404
|
+
Completed 302 Found in 14ms (ActiveRecord: 1.9ms)
|
405
|
+
|
406
|
+
|
407
|
+
Started GET "/books/2" for ::1 at 2014-12-29 18:06:08 +0000
|
408
|
+
Processing by BooksController#show as HTML
|
409
|
+
Parameters: {"id"=>"2"}
|
410
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 2]]
|
411
|
+
Rendered books/show.html.erb within layouts/application (1.3ms)
|
412
|
+
Completed 200 OK in 30ms (Views: 28.4ms | ActiveRecord: 0.2ms)
|
413
|
+
|
414
|
+
|
415
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:06:08 +0000
|
416
|
+
|
417
|
+
|
418
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:06:08 +0000
|
419
|
+
|
420
|
+
|
421
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:06:08 +0000
|
422
|
+
|
423
|
+
|
424
|
+
Started GET "/books" for ::1 at 2014-12-29 18:06:10 +0000
|
425
|
+
Processing by BooksController#index as HTML
|
426
|
+
[1m[35mBook Load (0.6ms)[0m SELECT "books".* FROM "books"
|
427
|
+
Rendered books/index.html.erb within layouts/application (4.4ms)
|
428
|
+
Completed 200 OK in 37ms (Views: 35.6ms | ActiveRecord: 0.6ms)
|
429
|
+
|
430
|
+
|
431
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:06:10 +0000
|
432
|
+
|
433
|
+
|
434
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:06:10 +0000
|
435
|
+
|
436
|
+
|
437
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:06:10 +0000
|
438
|
+
|
439
|
+
|
440
|
+
Started GET "/books/new" for ::1 at 2014-12-29 18:06:17 +0000
|
441
|
+
Processing by BooksController#new as HTML
|
442
|
+
Rendered books/_form.html.erb (10.0ms)
|
443
|
+
Rendered books/new.html.erb within layouts/application (10.9ms)
|
444
|
+
Completed 200 OK in 44ms (Views: 43.7ms | ActiveRecord: 0.0ms)
|
445
|
+
|
446
|
+
|
447
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:06:17 +0000
|
448
|
+
|
449
|
+
|
450
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:06:17 +0000
|
451
|
+
|
452
|
+
|
453
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:06:17 +0000
|
454
|
+
|
455
|
+
|
456
|
+
Started POST "/books" for ::1 at 2014-12-29 18:07:36 +0000
|
457
|
+
Processing by BooksController#create as HTML
|
458
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"eLfl8Gt4a1iQ6FuQ43dM05V0E5nsExTyBdIZCGPzYB9PERWUM/iHLP/TpX8mUUDHELK6qNsjxRdtNTg2lLbmKg==", "book"=>{"title"=>"All the Light We Cannot See: A Novel", "author"=>"Anthony Doerr", "description"=>"The New York Times bestseller about a blind French girl and a German boy whose paths collide in occupied France as both try to survive the devastation of World War II", "price"=>"17.16", "published_at(1i)"=>"2014", "published_at(2i)"=>"5", "published_at(3i)"=>"6", "published_at(4i)"=>"18", "published_at(5i)"=>"06", "discounted"=>"0"}, "commit"=>"Create Book"}
|
459
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
460
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["author", "Anthony Doerr"], ["created_at", "2014-12-29 18:07:36.614784"], ["description", "The New York Times bestseller about a blind French girl and a German boy whose paths collide in occupied France as both try to survive the devastation of World War II"], ["discounted", "f"], ["price", 17.16], ["published_at", "2014-05-06 18:06:00.000000"], ["title", "All the Light We Cannot See: A Novel"], ["updated_at", "2014-12-29 18:07:36.614784"]]
|
461
|
+
[1m[36m (2.2ms)[0m [1mcommit transaction[0m
|
462
|
+
Redirected to http://localhost:3000/books/3
|
463
|
+
Completed 302 Found in 18ms (ActiveRecord: 2.9ms)
|
464
|
+
|
465
|
+
|
466
|
+
Started GET "/books/3" for ::1 at 2014-12-29 18:07:36 +0000
|
467
|
+
Processing by BooksController#show as HTML
|
468
|
+
Parameters: {"id"=>"3"}
|
469
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 3]]
|
470
|
+
Rendered books/show.html.erb within layouts/application (1.4ms)
|
471
|
+
Completed 200 OK in 32ms (Views: 31.3ms | ActiveRecord: 0.2ms)
|
472
|
+
|
473
|
+
|
474
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:07:36 +0000
|
475
|
+
|
476
|
+
|
477
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:07:36 +0000
|
478
|
+
|
479
|
+
|
480
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:07:36 +0000
|
481
|
+
|
482
|
+
|
483
|
+
Started GET "/books" for ::1 at 2014-12-29 18:07:39 +0000
|
484
|
+
Processing by BooksController#index as HTML
|
485
|
+
[1m[36mBook Load (0.3ms)[0m [1mSELECT "books".* FROM "books"[0m
|
486
|
+
Rendered books/index.html.erb within layouts/application (5.5ms)
|
487
|
+
Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.3ms)
|
488
|
+
|
489
|
+
|
490
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:07:40 +0000
|
491
|
+
|
492
|
+
|
493
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:07:40 +0000
|
494
|
+
|
495
|
+
|
496
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:07:40 +0000
|
497
|
+
|
498
|
+
|
499
|
+
Started GET "/books/new" for ::1 at 2014-12-29 18:07:56 +0000
|
500
|
+
Processing by BooksController#new as HTML
|
501
|
+
Rendered books/_form.html.erb (8.1ms)
|
502
|
+
Rendered books/new.html.erb within layouts/application (9.6ms)
|
503
|
+
Completed 200 OK in 42ms (Views: 41.9ms | ActiveRecord: 0.0ms)
|
504
|
+
|
505
|
+
|
506
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:07:56 +0000
|
507
|
+
|
508
|
+
|
509
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:07:56 +0000
|
510
|
+
|
511
|
+
|
512
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:07:56 +0000
|
513
|
+
|
514
|
+
|
515
|
+
Started POST "/books" for ::1 at 2014-12-29 18:10:11 +0000
|
516
|
+
Processing by BooksController#create as HTML
|
517
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"hbJ69dMQYX8ApNrd+PFg8eF1a9dmpfm4ho5lvlLPeeGyFIqRi5CNC2+fJDI912zlZLPC5lGVKF3uaUSApYr/1A==", "book"=>{"title"=>"Gray Mountain", "author"=>"John Grisham", "description"=>"The year is 2008 and Samantha Kofer’s career at a huge Wall Street law firm is on the fast track...", "price"=>"14.48", "published_at(1i)"=>"2014", "published_at(2i)"=>"10", "published_at(3i)"=>"21", "published_at(4i)"=>"18", "published_at(5i)"=>"07", "discounted"=>"0"}, "commit"=>"Create Book"}
|
518
|
+
[1m[35m (0.1ms)[0m begin transaction
|
519
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "books" ("author", "created_at", "description", "discounted", "price", "published_at", "title", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?)[0m [["author", "John Grisham"], ["created_at", "2014-12-29 18:10:11.486402"], ["description", "The year is 2008 and Samantha Kofer’s career at a huge Wall Street law firm is on the fast track..."], ["discounted", "f"], ["price", 14.48], ["published_at", "2014-10-21 18:07:00.000000"], ["title", "Gray Mountain"], ["updated_at", "2014-12-29 18:10:11.486402"]]
|
520
|
+
[1m[35m (2.1ms)[0m commit transaction
|
521
|
+
Redirected to http://localhost:3000/books/4
|
522
|
+
Completed 302 Found in 10ms (ActiveRecord: 2.6ms)
|
523
|
+
|
524
|
+
|
525
|
+
Started GET "/books/4" for ::1 at 2014-12-29 18:10:11 +0000
|
526
|
+
Processing by BooksController#show as HTML
|
527
|
+
Parameters: {"id"=>"4"}
|
528
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 4]]
|
529
|
+
Rendered books/show.html.erb within layouts/application (1.1ms)
|
530
|
+
Completed 200 OK in 76ms (Views: 74.7ms | ActiveRecord: 0.2ms)
|
531
|
+
|
532
|
+
|
533
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:10:11 +0000
|
534
|
+
|
535
|
+
|
536
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:10:11 +0000
|
537
|
+
|
538
|
+
|
539
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:10:11 +0000
|
540
|
+
|
541
|
+
|
542
|
+
Started GET "/books" for ::1 at 2014-12-29 18:10:13 +0000
|
543
|
+
Processing by BooksController#index as HTML
|
544
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books"
|
545
|
+
Rendered books/index.html.erb within layouts/application (5.3ms)
|
546
|
+
Completed 200 OK in 38ms (Views: 37.6ms | ActiveRecord: 0.2ms)
|
547
|
+
|
548
|
+
|
549
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:10:13 +0000
|
550
|
+
|
551
|
+
|
552
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:10:13 +0000
|
553
|
+
|
554
|
+
|
555
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:10:13 +0000
|
556
|
+
|
557
|
+
|
558
|
+
Started GET "/books" for ::1 at 2014-12-29 18:11:25 +0000
|
559
|
+
Processing by BooksController#index as HTML
|
560
|
+
[1m[36mBook Load (0.3ms)[0m [1mSELECT "books".* FROM "books"[0m
|
561
|
+
Rendered books/index.html.erb within layouts/application (7.7ms)
|
562
|
+
Completed 200 OK in 54ms (Views: 53.1ms | ActiveRecord: 0.3ms)
|
563
|
+
|
564
|
+
|
565
|
+
Started GET "/assets/application-7cb3e8f270a3454dd4827b5f81b0c661.css?body=1" for ::1 at 2014-12-29 18:11:25 +0000
|
566
|
+
|
567
|
+
|
568
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:11:25 +0000
|
569
|
+
|
570
|
+
|
571
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:11:25 +0000
|
572
|
+
|
573
|
+
|
574
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:11:25 +0000
|
575
|
+
|
576
|
+
|
577
|
+
Started GET "/assets/skins-air-04c81545cbbb97bc5771ee94d1d26494.css?body=1" for ::1 at 2014-12-29 18:11:25 +0000
|
578
|
+
|
579
|
+
|
580
|
+
Started GET "/books" for ::1 at 2014-12-29 18:11:38 +0000
|
581
|
+
Processing by BooksController#index as HTML
|
582
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books"
|
583
|
+
Rendered books/index.html.erb within layouts/application (6.3ms)
|
584
|
+
Completed 200 OK in 47ms (Views: 46.3ms | ActiveRecord: 0.2ms)
|
585
|
+
|
586
|
+
|
587
|
+
Started GET "/assets/skins-air-d35ea3eabf4b2eed7195da02f1639f50.css?body=1" for ::1 at 2014-12-29 18:11:38 +0000
|
588
|
+
|
589
|
+
|
590
|
+
Started GET "/assets/application-ca351ff641c9546d7066f2702ef3b43c.css?body=1" for ::1 at 2014-12-29 18:11:38 +0000
|
591
|
+
|
592
|
+
|
593
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:11:38 +0000
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:11:38 +0000
|
597
|
+
|
598
|
+
|
599
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:11:38 +0000
|
600
|
+
|
601
|
+
|
602
|
+
Started GET "/books" for ::1 at 2014-12-29 18:11:45 +0000
|
603
|
+
Processing by BooksController#index as HTML
|
604
|
+
[1m[36mBook Load (0.3ms)[0m [1mSELECT "books".* FROM "books"[0m
|
605
|
+
Rendered books/index.html.erb within layouts/application (6.0ms)
|
606
|
+
Completed 200 OK in 120ms (Views: 119.7ms | ActiveRecord: 0.3ms)
|
607
|
+
|
608
|
+
|
609
|
+
Started GET "/assets/skins-air-451206268eefc91bb451a969d934fe32.css?body=1" for ::1 at 2014-12-29 18:11:45 +0000
|
610
|
+
|
611
|
+
|
612
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:11:45 +0000
|
613
|
+
|
614
|
+
|
615
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:11:45 +0000
|
616
|
+
|
617
|
+
|
618
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:11:45 +0000
|
619
|
+
|
620
|
+
|
621
|
+
Started GET "/assets/application-80b6affb1496899ccc058d0904300dd2.css?body=1" for ::1 at 2014-12-29 18:11:45 +0000
|
622
|
+
|
623
|
+
|
624
|
+
Started GET "/books/2/edit" for ::1 at 2014-12-29 18:12:03 +0000
|
625
|
+
Processing by BooksController#edit as HTML
|
626
|
+
Parameters: {"id"=>"2"}
|
627
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 2]]
|
628
|
+
Rendered books/_form.html.erb (11.9ms)
|
629
|
+
Rendered books/edit.html.erb within layouts/application (13.1ms)
|
630
|
+
Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.2ms)
|
631
|
+
|
632
|
+
|
633
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:03 +0000
|
634
|
+
|
635
|
+
|
636
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:03 +0000
|
637
|
+
|
638
|
+
|
639
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:03 +0000
|
640
|
+
|
641
|
+
|
642
|
+
Started PATCH "/books/2" for ::1 at 2014-12-29 18:12:11 +0000
|
643
|
+
Processing by BooksController#update as HTML
|
644
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"YUUgyY9/LxkAKtUdq85mPENfF1+nllp6bZ2Tq64QQlhW49Ct1//DbW8RK/Ju6Gooxpm+bpCmi58FerKVWVXEbQ==", "book"=>{"title"=>"Everything I Never Told You", "author"=>"Celeste Ng", "description"=>"Lydia is dead. But they don’t know this yet . . . ", "price"=>"15.22", "published_at(1i)"=>"2014", "published_at(2i)"=>"6", "published_at(3i)"=>"1", "published_at(4i)"=>"18", "published_at(5i)"=>"05", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"2"}
|
645
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 2]]
|
646
|
+
[1m[35m (0.1ms)[0m begin transaction
|
647
|
+
[1m[36mSQL (0.7ms)[0m [1mUPDATE "books" SET "title" = ?, "updated_at" = ? WHERE "books"."id" = 2[0m [["title", "Everything I Never Told You"], ["updated_at", "2014-12-29 18:12:11.985782"]]
|
648
|
+
[1m[35m (1.5ms)[0m commit transaction
|
649
|
+
Redirected to http://localhost:3000/books/2
|
650
|
+
Completed 302 Found in 10ms (ActiveRecord: 2.5ms)
|
651
|
+
|
652
|
+
|
653
|
+
Started GET "/books/2" for ::1 at 2014-12-29 18:12:11 +0000
|
654
|
+
Processing by BooksController#show as HTML
|
655
|
+
Parameters: {"id"=>"2"}
|
656
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 2]]
|
657
|
+
Rendered books/show.html.erb within layouts/application (1.1ms)
|
658
|
+
Completed 200 OK in 76ms (Views: 74.6ms | ActiveRecord: 0.2ms)
|
659
|
+
|
660
|
+
|
661
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:12 +0000
|
662
|
+
|
663
|
+
|
664
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:12 +0000
|
665
|
+
|
666
|
+
|
667
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:12 +0000
|
668
|
+
|
669
|
+
|
670
|
+
Started GET "/books" for ::1 at 2014-12-29 18:12:13 +0000
|
671
|
+
Processing by BooksController#index as HTML
|
672
|
+
[1m[35mBook Load (0.3ms)[0m SELECT "books".* FROM "books"
|
673
|
+
Rendered books/index.html.erb within layouts/application (8.5ms)
|
674
|
+
Completed 200 OK in 113ms (Views: 111.6ms | ActiveRecord: 0.3ms)
|
675
|
+
|
676
|
+
|
677
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:13 +0000
|
678
|
+
|
679
|
+
|
680
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:14 +0000
|
681
|
+
|
682
|
+
|
683
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:14 +0000
|
684
|
+
|
685
|
+
|
686
|
+
Started GET "/books/3/edit" for ::1 at 2014-12-29 18:12:16 +0000
|
687
|
+
Processing by BooksController#edit as HTML
|
688
|
+
Parameters: {"id"=>"3"}
|
689
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1[0m [["id", 3]]
|
690
|
+
Rendered books/_form.html.erb (8.6ms)
|
691
|
+
Rendered books/edit.html.erb within layouts/application (9.7ms)
|
692
|
+
Completed 200 OK in 40ms (Views: 38.9ms | ActiveRecord: 0.2ms)
|
693
|
+
|
694
|
+
|
695
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:16 +0000
|
696
|
+
|
697
|
+
|
698
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:16 +0000
|
699
|
+
|
700
|
+
|
701
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:16 +0000
|
702
|
+
|
703
|
+
|
704
|
+
Started PATCH "/books/3" for ::1 at 2014-12-29 18:12:22 +0000
|
705
|
+
Processing by BooksController#update as HTML
|
706
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"BBZlYOEcctTzO4RqqINGkhkiGQsSW3EKJaz34EPhlfkzsJUEuZyeoJwAeoVtpUqGnOSwOiVroO9NS9betKQTzA==", "book"=>{"title"=>"All the Light We Cannot See", "author"=>"Anthony Doerr", "description"=>"The New York Times bestseller about a blind French girl and a German boy whose paths collide in occupied France as both try to survive the devastation of World War II", "price"=>"17.16", "published_at(1i)"=>"2014", "published_at(2i)"=>"5", "published_at(3i)"=>"6", "published_at(4i)"=>"18", "published_at(5i)"=>"06", "discounted"=>"0"}, "commit"=>"Update Book", "id"=>"3"}
|
707
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 3]]
|
708
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
709
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "books" SET "title" = ?, "updated_at" = ? WHERE "books"."id" = 3 [["title", "All the Light We Cannot See"], ["updated_at", "2014-12-29 18:12:22.831298"]]
|
710
|
+
[1m[36m (5.1ms)[0m [1mcommit transaction[0m
|
711
|
+
Redirected to http://localhost:3000/books/3
|
712
|
+
Completed 302 Found in 17ms (ActiveRecord: 5.9ms)
|
713
|
+
|
714
|
+
|
715
|
+
Started GET "/books/3" for ::1 at 2014-12-29 18:12:22 +0000
|
716
|
+
Processing by BooksController#show as HTML
|
717
|
+
Parameters: {"id"=>"3"}
|
718
|
+
[1m[35mBook Load (0.2ms)[0m SELECT "books".* FROM "books" WHERE "books"."id" = ? LIMIT 1 [["id", 3]]
|
719
|
+
Rendered books/show.html.erb within layouts/application (1.2ms)
|
720
|
+
Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.2ms)
|
721
|
+
|
722
|
+
|
723
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:22 +0000
|
724
|
+
|
725
|
+
|
726
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:22 +0000
|
727
|
+
|
728
|
+
|
729
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:22 +0000
|
730
|
+
|
731
|
+
|
732
|
+
Started GET "/books" for ::1 at 2014-12-29 18:12:24 +0000
|
733
|
+
Processing by BooksController#index as HTML
|
734
|
+
[1m[36mBook Load (0.2ms)[0m [1mSELECT "books".* FROM "books"[0m
|
735
|
+
Rendered books/index.html.erb within layouts/application (58.2ms)
|
736
|
+
Completed 200 OK in 90ms (Views: 89.0ms | ActiveRecord: 0.2ms)
|
737
|
+
|
738
|
+
|
739
|
+
Started GET "/assets/jquery-dfb1e594c3e61a04cc388702c3feec1f.js?body=1" for ::1 at 2014-12-29 18:12:24 +0000
|
740
|
+
|
741
|
+
|
742
|
+
Started GET "/assets/application-3aa32ede1cce34585557b82c2cb28327.js?body=1" for ::1 at 2014-12-29 18:12:24 +0000
|
743
|
+
|
744
|
+
|
745
|
+
Started GET "/assets/jquery_ujs-ae280aaa31faeb1eb0139b5cd60e3356.js?body=1" for ::1 at 2014-12-29 18:12:24 +0000
|