pagers 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +34 -0
- data/Rakefile +34 -0
- data/app/views/pagers/_main.html.erb +35 -0
- data/app/views/pagers/main.html.erb +35 -0
- data/config/locales/en.yml +6 -0
- data/config/locales/es.yml +6 -0
- data/lib/pagers/action_view/base.rb +40 -0
- data/lib/pagers/active_record/base.rb +35 -0
- data/lib/pagers/active_record/relation.rb +41 -0
- data/lib/pagers/engine.rb +7 -0
- data/lib/pagers/railtie.rb +16 -0
- data/lib/pagers/version.rb +5 -0
- data/lib/pagers.rb +9 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/pages_controller.rb +7 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/models/model.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/app/views/pages/index.html.erb +1 -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/config/application.rb +22 -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 +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -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 +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -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 +5 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130820024335_create_models.rb +9 -0
- data/test/dummy/db/schema.rb +22 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +1236 -0
- data/test/dummy/log/test.log +94483 -0
- data/test/dummy/public/404.html +58 -0
- data/test/dummy/public/422.html +58 -0
- data/test/dummy/public/500.html +57 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +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/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/empty_test.rb +39 -0
- data/test/first_test.rb +43 -0
- data/test/last_test.rb +43 -0
- data/test/middle_test.rb +43 -0
- data/test/padding_test.rb +53 -0
- data/test/test_helper.rb +21 -0
- metadata +190 -0
|
@@ -0,0 +1,1236 @@
|
|
|
1
|
+
[1m[36m (2.6ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
2
|
+
[1m[35m (3.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
|
3
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
4
|
+
Migrating to CreateModels (20130820024335)
|
|
5
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
6
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
|
7
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130820024335"]]
|
|
8
|
+
[1m[36m (3.9ms)[0m [1mcommit transaction[0m
|
|
9
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
10
|
+
[1m[36m (49.9ms)[0m [1mCREATE TABLE "models" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
|
11
|
+
[1m[35m (3.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
|
12
|
+
[1m[36m (4.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
13
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
|
14
|
+
[1m[36m (3.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20130820024335')[0m
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
Started GET "/" for 127.0.0.1 at 2013-08-19 23:58:14 -0300
|
|
18
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
19
|
+
Processing by PagesController#index as HTML
|
|
20
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
21
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.9ms)
|
|
22
|
+
Rendered pages/index.html.erb within layouts/application (8.0ms)
|
|
23
|
+
Completed 200 OK in 61ms (Views: 59.0ms | ActiveRecord: 0.4ms)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:58:14 -0300
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:58:14 -0300
|
|
30
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
31
|
+
[1m[35mSQL (2.3ms)[0m INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 0], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
32
|
+
[1m[36m (57.9ms)[0m [1mcommit transaction[0m
|
|
33
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
34
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 1], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
35
|
+
[1m[35m (2.4ms)[0m commit transaction
|
|
36
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
37
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 2], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
38
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
|
39
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
40
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 3], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
41
|
+
[1m[35m (2.5ms)[0m commit transaction
|
|
42
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
43
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 4], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
44
|
+
[1m[36m (2.9ms)[0m [1mcommit transaction[0m
|
|
45
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
46
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 5], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
47
|
+
[1m[35m (3.5ms)[0m commit transaction
|
|
48
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
|
49
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 6], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
50
|
+
[1m[36m (2.8ms)[0m [1mcommit transaction[0m
|
|
51
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
52
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 7], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
53
|
+
[1m[35m (2.8ms)[0m commit transaction
|
|
54
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
55
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 8], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
56
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
|
57
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
58
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "models" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["created_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00], ["name", 9], ["updated_at", Tue, 20 Aug 2013 02:58:51 UTC +00:00]]
|
|
59
|
+
[1m[35m (3.4ms)[0m commit transaction
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
Started GET "/" for 127.0.0.1 at 2013-08-19 23:59:03 -0300
|
|
63
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
64
|
+
Processing by PagesController#index as HTML
|
|
65
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
66
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (72.9ms)
|
|
67
|
+
Rendered pages/index.html.erb within layouts/application (78.0ms)
|
|
68
|
+
Completed 200 OK in 112ms (Views: 109.6ms | ActiveRecord: 0.4ms)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:03 -0300
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:03 -0300
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
Started GET "/?p=2" for 127.0.0.1 at 2013-08-19 23:59:11 -0300
|
|
78
|
+
Processing by PagesController#index as HTML
|
|
79
|
+
Parameters: {"p"=>"2"}
|
|
80
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
81
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.8ms)
|
|
82
|
+
Rendered pages/index.html.erb within layouts/application (2.5ms)
|
|
83
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:11 -0300
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:11 -0300
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
Started GET "/?p=3" for 127.0.0.1 at 2013-08-19 23:59:16 -0300
|
|
93
|
+
Processing by PagesController#index as HTML
|
|
94
|
+
Parameters: {"p"=>"3"}
|
|
95
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
96
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.8ms)
|
|
97
|
+
Rendered pages/index.html.erb within layouts/application (2.4ms)
|
|
98
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:16 -0300
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:16 -0300
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
Started GET "/?p=4" for 127.0.0.1 at 2013-08-19 23:59:17 -0300
|
|
108
|
+
Processing by PagesController#index as HTML
|
|
109
|
+
Parameters: {"p"=>"4"}
|
|
110
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
111
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.9ms)
|
|
112
|
+
Rendered pages/index.html.erb within layouts/application (2.9ms)
|
|
113
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:17 -0300
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:17 -0300
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
Started GET "/?p=3" for 127.0.0.1 at 2013-08-19 23:59:20 -0300
|
|
123
|
+
Processing by PagesController#index as HTML
|
|
124
|
+
Parameters: {"p"=>"3"}
|
|
125
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
126
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.7ms)
|
|
127
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
128
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:20 -0300
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:20 -0300
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
Started GET "/?p=4" for 127.0.0.1 at 2013-08-19 23:59:23 -0300
|
|
138
|
+
Processing by PagesController#index as HTML
|
|
139
|
+
Parameters: {"p"=>"4"}
|
|
140
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
141
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.8ms)
|
|
142
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
143
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:23 -0300
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:23 -0300
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
Started GET "/?p=5" for 127.0.0.1 at 2013-08-19 23:59:25 -0300
|
|
153
|
+
Processing by PagesController#index as HTML
|
|
154
|
+
Parameters: {"p"=>"5"}
|
|
155
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
|
156
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.9ms)
|
|
157
|
+
Rendered pages/index.html.erb within layouts/application (2.9ms)
|
|
158
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.2ms)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:25 -0300
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:25 -0300
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
Started GET "/?p=6" for 127.0.0.1 at 2013-08-19 23:59:26 -0300
|
|
168
|
+
Processing by PagesController#index as HTML
|
|
169
|
+
Parameters: {"p"=>"6"}
|
|
170
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
171
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.8ms)
|
|
172
|
+
Rendered pages/index.html.erb within layouts/application (2.6ms)
|
|
173
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.2ms)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:26 -0300
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:26 -0300
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
Started GET "/?p=7" for 127.0.0.1 at 2013-08-19 23:59:27 -0300
|
|
183
|
+
Processing by PagesController#index as HTML
|
|
184
|
+
Parameters: {"p"=>"7"}
|
|
185
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
|
186
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.9ms)
|
|
187
|
+
Rendered pages/index.html.erb within layouts/application (2.8ms)
|
|
188
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.2ms)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:27 -0300
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:27 -0300
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
Started GET "/?p=8" for 127.0.0.1 at 2013-08-19 23:59:29 -0300
|
|
198
|
+
Processing by PagesController#index as HTML
|
|
199
|
+
Parameters: {"p"=>"8"}
|
|
200
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
201
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.8ms)
|
|
202
|
+
Rendered pages/index.html.erb within layouts/application (2.6ms)
|
|
203
|
+
Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:29 -0300
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:29 -0300
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
Started GET "/?p=9" for 127.0.0.1 at 2013-08-19 23:59:32 -0300
|
|
213
|
+
Processing by PagesController#index as HTML
|
|
214
|
+
Parameters: {"p"=>"9"}
|
|
215
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
|
216
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.8ms)
|
|
217
|
+
Rendered pages/index.html.erb within layouts/application (2.4ms)
|
|
218
|
+
Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:32 -0300
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:32 -0300
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
Started GET "/?p=10" for 127.0.0.1 at 2013-08-19 23:59:32 -0300
|
|
228
|
+
Processing by PagesController#index as HTML
|
|
229
|
+
Parameters: {"p"=>"10"}
|
|
230
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
231
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.7ms)
|
|
232
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
233
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:32 -0300
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:32 -0300
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
Started GET "/?p=10" for 127.0.0.1 at 2013-08-19 23:59:33 -0300
|
|
243
|
+
Processing by PagesController#index as HTML
|
|
244
|
+
Parameters: {"p"=>"10"}
|
|
245
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
246
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.7ms)
|
|
247
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
248
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:33 -0300
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:33 -0300
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
Started GET "/?p=1" for 127.0.0.1 at 2013-08-19 23:59:35 -0300
|
|
258
|
+
Processing by PagesController#index as HTML
|
|
259
|
+
Parameters: {"p"=>"1"}
|
|
260
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
261
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.7ms)
|
|
262
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
263
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:35 -0300
|
|
267
|
+
|
|
268
|
+
|
|
269
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:35 -0300
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
Started GET "/?p=10" for 127.0.0.1 at 2013-08-19 23:59:36 -0300
|
|
273
|
+
Processing by PagesController#index as HTML
|
|
274
|
+
Parameters: {"p"=>"10"}
|
|
275
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
276
|
+
Rendered /Users/Matt/Documents/Mattways/Emprendimientos/Rails/pageable/app/views/pageable/_pager.html.erb (0.7ms)
|
|
277
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
278
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-08-19 23:59:36 -0300
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-08-19 23:59:36 -0300
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 15:06:27 -0300
|
|
288
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
289
|
+
Processing by PagesController#index as HTML
|
|
290
|
+
[1m[35mModel Load (0.3ms)[0m SELECT "models".* FROM "models" LIMIT 4 OFFSET 0
|
|
291
|
+
Completed 500 Internal Server Error in 7ms
|
|
292
|
+
|
|
293
|
+
NoMethodError (undefined method `per' for #<Model::ActiveRecord_Relation:0x007fb7d595ab98>):
|
|
294
|
+
app/controllers/pages_controller.rb:4:in `index'
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.1ms)
|
|
298
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
|
299
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.2ms)
|
|
300
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.2ms)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 15:07:11 -0300
|
|
304
|
+
Processing by PagesController#index as HTML
|
|
305
|
+
[1m[36mModel Load (0.5ms)[0m [1mSELECT "models".* FROM "models" LIMIT 1 OFFSET 0[0m
|
|
306
|
+
Rendered pages/index.html.erb within layouts/application (11.5ms)
|
|
307
|
+
Completed 500 Internal Server Error in 18ms
|
|
308
|
+
|
|
309
|
+
ActionView::Template::Error (undefined method `paginate' for #<#<Class:0x007fb7d3580538>:0x007fb7d357b588>):
|
|
310
|
+
1: <%= paginate @collection %>
|
|
311
|
+
app/views/pages/index.html.erb:1:in `_app_views_pages_index_html_erb__2421822080621793093_70213750736140'
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
|
315
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
316
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (10.0ms)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 15:07:36 -0300
|
|
320
|
+
Processing by PagesController#index as HTML
|
|
321
|
+
[1m[35mModel Load (0.2ms)[0m SELECT "models".* FROM "models" LIMIT 1 OFFSET 0
|
|
322
|
+
Rendered pages/index.html.erb within layouts/application (9.9ms)
|
|
323
|
+
Completed 500 Internal Server Error in 13ms
|
|
324
|
+
|
|
325
|
+
ActionView::Template::Error (undefined method `paginate' for #<#<Class:0x007fb7d3580538>:0x007fb7d5f89a78>):
|
|
326
|
+
1: <%= paginate @collection %>
|
|
327
|
+
app/views/pages/index.html.erb:1:in `_app_views_pages_index_html_erb__2421822080621793093_70213750736140'
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
|
331
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
332
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.0ms)
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 15:07:37 -0300
|
|
336
|
+
Processing by PagesController#index as HTML
|
|
337
|
+
[1m[36mModel Load (0.2ms)[0m [1mSELECT "models".* FROM "models" LIMIT 1 OFFSET 0[0m
|
|
338
|
+
Rendered pages/index.html.erb within layouts/application (6.9ms)
|
|
339
|
+
Completed 500 Internal Server Error in 9ms
|
|
340
|
+
|
|
341
|
+
ActionView::Template::Error (undefined method `paginate' for #<#<Class:0x007fb7d3580538>:0x007fb7d900ca88>):
|
|
342
|
+
1: <%= paginate @collection %>
|
|
343
|
+
app/views/pages/index.html.erb:1:in `_app_views_pages_index_html_erb__2421822080621793093_70213750736140'
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
|
347
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
|
348
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (8.7ms)
|
|
349
|
+
|
|
350
|
+
|
|
351
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 15:07:45 -0300
|
|
352
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
353
|
+
Processing by PagesController#index as HTML
|
|
354
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
355
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (8.2ms)
|
|
356
|
+
Rendered pages/index.html.erb within layouts/application (16.7ms)
|
|
357
|
+
Completed 200 OK in 44ms (Views: 42.2ms | ActiveRecord: 0.4ms)
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:07:45 -0300
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:07:45 -0300
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:07:49 -0300
|
|
367
|
+
Processing by PagesController#index as HTML
|
|
368
|
+
Parameters: {"p"=>"1"}
|
|
369
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
370
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
371
|
+
Rendered pages/index.html.erb within layouts/application (2.4ms)
|
|
372
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:07:51 -0300
|
|
376
|
+
Processing by PagesController#index as HTML
|
|
377
|
+
Parameters: {"p"=>"2"}
|
|
378
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
379
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
380
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
381
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
Started GET "/?p=3" for 127.0.0.1 at 2014-05-23 15:07:54 -0300
|
|
385
|
+
Processing by PagesController#index as HTML
|
|
386
|
+
Parameters: {"p"=>"3"}
|
|
387
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
388
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
389
|
+
Rendered pages/index.html.erb within layouts/application (2.5ms)
|
|
390
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
Started GET "/?p=4" for 127.0.0.1 at 2014-05-23 15:07:55 -0300
|
|
394
|
+
Processing by PagesController#index as HTML
|
|
395
|
+
Parameters: {"p"=>"4"}
|
|
396
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
397
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.1ms)
|
|
398
|
+
Rendered pages/index.html.erb within layouts/application (3.4ms)
|
|
399
|
+
Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.1ms)
|
|
400
|
+
|
|
401
|
+
|
|
402
|
+
Started GET "/?p=6" for 127.0.0.1 at 2014-05-23 15:07:56 -0300
|
|
403
|
+
Processing by PagesController#index as HTML
|
|
404
|
+
Parameters: {"p"=>"6"}
|
|
405
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
406
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
407
|
+
Rendered pages/index.html.erb within layouts/application (3.1ms)
|
|
408
|
+
Completed 200 OK in 8ms (Views: 7.0ms | ActiveRecord: 0.1ms)
|
|
409
|
+
|
|
410
|
+
|
|
411
|
+
Started GET "/?p=8" for 127.0.0.1 at 2014-05-23 15:07:58 -0300
|
|
412
|
+
Processing by PagesController#index as HTML
|
|
413
|
+
Parameters: {"p"=>"8"}
|
|
414
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
415
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
416
|
+
Rendered pages/index.html.erb within layouts/application (2.8ms)
|
|
417
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:07:59 -0300
|
|
421
|
+
Processing by PagesController#index as HTML
|
|
422
|
+
Parameters: {"p"=>"10"}
|
|
423
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
424
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
425
|
+
Rendered pages/index.html.erb within layouts/application (2.6ms)
|
|
426
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 15:39:56 -0300
|
|
430
|
+
Processing by PagesController#index as HTML
|
|
431
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
432
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.4ms)
|
|
433
|
+
Rendered pages/index.html.erb within layouts/application (2.8ms)
|
|
434
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
|
435
|
+
|
|
436
|
+
|
|
437
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:39:56 -0300
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:39:56 -0300
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 15:39:57 -0300
|
|
444
|
+
Processing by PagesController#index as HTML
|
|
445
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
446
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
447
|
+
Rendered pages/index.html.erb within layouts/application (1.9ms)
|
|
448
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:39:57 -0300
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:39:57 -0300
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:40:02 -0300
|
|
458
|
+
Processing by PagesController#index as HTML
|
|
459
|
+
Parameters: {"p"=>"2"}
|
|
460
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
461
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
462
|
+
Rendered pages/index.html.erb within layouts/application (2.0ms)
|
|
463
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.1ms)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
Started GET "/?p=3" for 127.0.0.1 at 2014-05-23 15:40:04 -0300
|
|
467
|
+
Processing by PagesController#index as HTML
|
|
468
|
+
Parameters: {"p"=>"3"}
|
|
469
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
470
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
471
|
+
Rendered pages/index.html.erb within layouts/application (2.7ms)
|
|
472
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:40:07 -0300
|
|
476
|
+
Processing by PagesController#index as HTML
|
|
477
|
+
Parameters: {"p"=>"1"}
|
|
478
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
479
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
480
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
481
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
|
482
|
+
|
|
483
|
+
|
|
484
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:40:09 -0300
|
|
485
|
+
Processing by PagesController#index as HTML
|
|
486
|
+
Parameters: {"p"=>"10"}
|
|
487
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
488
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.9ms)
|
|
489
|
+
Rendered pages/index.html.erb within layouts/application (3.0ms)
|
|
490
|
+
Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.2ms)
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
Started GET "/?p=9" for 127.0.0.1 at 2014-05-23 15:40:11 -0300
|
|
494
|
+
Processing by PagesController#index as HTML
|
|
495
|
+
Parameters: {"p"=>"9"}
|
|
496
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
497
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
498
|
+
Rendered pages/index.html.erb within layouts/application (2.9ms)
|
|
499
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:40:14 -0300
|
|
503
|
+
Processing by PagesController#index as HTML
|
|
504
|
+
Parameters: {"p"=>"10"}
|
|
505
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
506
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
507
|
+
Rendered pages/index.html.erb within layouts/application (2.1ms)
|
|
508
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.1ms)
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:40:17 -0300
|
|
512
|
+
Processing by PagesController#index as HTML
|
|
513
|
+
Parameters: {"p"=>"1"}
|
|
514
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
|
515
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
516
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
517
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:40:19 -0300
|
|
521
|
+
Processing by PagesController#index as HTML
|
|
522
|
+
Parameters: {"p"=>"2"}
|
|
523
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
524
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.1ms)
|
|
525
|
+
Rendered pages/index.html.erb within layouts/application (3.6ms)
|
|
526
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.2ms)
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:43:06 -0300
|
|
530
|
+
Processing by PagesController#index as HTML
|
|
531
|
+
Parameters: {"p"=>"2"}
|
|
532
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
533
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.6ms)
|
|
534
|
+
Rendered pages/index.html.erb within layouts/application (3.1ms)
|
|
535
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:43:07 -0300
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:43:07 -0300
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:43:14 -0300
|
|
545
|
+
Processing by PagesController#index as HTML
|
|
546
|
+
Parameters: {"p"=>"1"}
|
|
547
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
548
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
549
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
550
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:43:14 -0300
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:43:14 -0300
|
|
557
|
+
|
|
558
|
+
|
|
559
|
+
Started GET "/?p=3" for 127.0.0.1 at 2014-05-23 15:43:15 -0300
|
|
560
|
+
Processing by PagesController#index as HTML
|
|
561
|
+
Parameters: {"p"=>"3"}
|
|
562
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
|
563
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.1ms)
|
|
564
|
+
Rendered pages/index.html.erb within layouts/application (2.9ms)
|
|
565
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:43:15 -0300
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:43:15 -0300
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:43:16 -0300
|
|
575
|
+
Processing by PagesController#index as HTML
|
|
576
|
+
Parameters: {"p"=>"2"}
|
|
577
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
578
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.9ms)
|
|
579
|
+
Rendered pages/index.html.erb within layouts/application (2.7ms)
|
|
580
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.1ms)
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:43:16 -0300
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:43:16 -0300
|
|
587
|
+
|
|
588
|
+
|
|
589
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:43:25 -0300
|
|
590
|
+
Processing by PagesController#index as HTML
|
|
591
|
+
Parameters: {"p"=>"10"}
|
|
592
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
593
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
594
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
595
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:43:25 -0300
|
|
599
|
+
|
|
600
|
+
|
|
601
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:43:25 -0300
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:43:26 -0300
|
|
605
|
+
Processing by PagesController#index as HTML
|
|
606
|
+
Parameters: {"p"=>"10"}
|
|
607
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
608
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
609
|
+
Rendered pages/index.html.erb within layouts/application (3.5ms)
|
|
610
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:43:26 -0300
|
|
614
|
+
|
|
615
|
+
|
|
616
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:43:26 -0300
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
Started GET "/?p=9" for 127.0.0.1 at 2014-05-23 15:43:27 -0300
|
|
620
|
+
Processing by PagesController#index as HTML
|
|
621
|
+
Parameters: {"p"=>"9"}
|
|
622
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
623
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
624
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
625
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:43:27 -0300
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:43:27 -0300
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
Started GET "/?p=9" for 127.0.0.1 at 2014-05-23 15:44:31 -0300
|
|
635
|
+
Processing by PagesController#index as HTML
|
|
636
|
+
Parameters: {"p"=>"9"}
|
|
637
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
638
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.6ms)
|
|
639
|
+
Rendered pages/index.html.erb within layouts/application (3.1ms)
|
|
640
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:44:31 -0300
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:44:31 -0300
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:44:32 -0300
|
|
650
|
+
Processing by PagesController#index as HTML
|
|
651
|
+
Parameters: {"p"=>"1"}
|
|
652
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
653
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
654
|
+
Rendered pages/index.html.erb within layouts/application (2.5ms)
|
|
655
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
|
656
|
+
|
|
657
|
+
|
|
658
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:44:32 -0300
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:44:32 -0300
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:44:40 -0300
|
|
665
|
+
Processing by PagesController#index as HTML
|
|
666
|
+
Parameters: {"p"=>"2"}
|
|
667
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
668
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (2.1ms)
|
|
669
|
+
Rendered pages/index.html.erb within layouts/application (4.2ms)
|
|
670
|
+
Completed 200 OK in 9ms (Views: 8.0ms | ActiveRecord: 0.1ms)
|
|
671
|
+
|
|
672
|
+
|
|
673
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:44:40 -0300
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:44:40 -0300
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:44:43 -0300
|
|
680
|
+
Processing by PagesController#index as HTML
|
|
681
|
+
Parameters: {"p"=>"1"}
|
|
682
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
683
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
684
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
685
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:44:43 -0300
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:44:43 -0300
|
|
692
|
+
|
|
693
|
+
|
|
694
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:45:08 -0300
|
|
695
|
+
Processing by PagesController#index as HTML
|
|
696
|
+
Parameters: {"p"=>"1"}
|
|
697
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
698
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.5ms)
|
|
699
|
+
Rendered pages/index.html.erb within layouts/application (3.0ms)
|
|
700
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.1ms)
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:08 -0300
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:09 -0300
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:45:11 -0300
|
|
710
|
+
Processing by PagesController#index as HTML
|
|
711
|
+
Parameters: {"p"=>"2"}
|
|
712
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
713
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
714
|
+
Rendered pages/index.html.erb within layouts/application (2.5ms)
|
|
715
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.1ms)
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:11 -0300
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:11 -0300
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:45:13 -0300
|
|
725
|
+
Processing by PagesController#index as HTML
|
|
726
|
+
Parameters: {"p"=>"1"}
|
|
727
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
728
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
729
|
+
Rendered pages/index.html.erb within layouts/application (2.6ms)
|
|
730
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:13 -0300
|
|
734
|
+
|
|
735
|
+
|
|
736
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:13 -0300
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:45:14 -0300
|
|
740
|
+
Processing by PagesController#index as HTML
|
|
741
|
+
Parameters: {"p"=>"2"}
|
|
742
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
743
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.9ms)
|
|
744
|
+
Rendered pages/index.html.erb within layouts/application (2.7ms)
|
|
745
|
+
Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.1ms)
|
|
746
|
+
|
|
747
|
+
|
|
748
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:14 -0300
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:14 -0300
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
Started GET "/?p=3" for 127.0.0.1 at 2014-05-23 15:45:15 -0300
|
|
755
|
+
Processing by PagesController#index as HTML
|
|
756
|
+
Parameters: {"p"=>"3"}
|
|
757
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
758
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
759
|
+
Rendered pages/index.html.erb within layouts/application (2.9ms)
|
|
760
|
+
Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.1ms)
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:15 -0300
|
|
764
|
+
|
|
765
|
+
|
|
766
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:15 -0300
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
Started GET "/?p=4" for 127.0.0.1 at 2014-05-23 15:45:18 -0300
|
|
770
|
+
Processing by PagesController#index as HTML
|
|
771
|
+
Parameters: {"p"=>"4"}
|
|
772
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "models"
|
|
773
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
774
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
775
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.2ms)
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:18 -0300
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:18 -0300
|
|
782
|
+
|
|
783
|
+
|
|
784
|
+
Started GET "/?p=5" for 127.0.0.1 at 2014-05-23 15:45:19 -0300
|
|
785
|
+
Processing by PagesController#index as HTML
|
|
786
|
+
Parameters: {"p"=>"5"}
|
|
787
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
788
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.1ms)
|
|
789
|
+
Rendered pages/index.html.erb within layouts/application (3.1ms)
|
|
790
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:19 -0300
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:19 -0300
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
Started GET "/?p=6" for 127.0.0.1 at 2014-05-23 15:45:20 -0300
|
|
800
|
+
Processing by PagesController#index as HTML
|
|
801
|
+
Parameters: {"p"=>"6"}
|
|
802
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
803
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
804
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
805
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:20 -0300
|
|
809
|
+
|
|
810
|
+
|
|
811
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:20 -0300
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
Started GET "/?p=7" for 127.0.0.1 at 2014-05-23 15:45:21 -0300
|
|
815
|
+
Processing by PagesController#index as HTML
|
|
816
|
+
Parameters: {"p"=>"7"}
|
|
817
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
818
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.1ms)
|
|
819
|
+
Rendered pages/index.html.erb within layouts/application (3.1ms)
|
|
820
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.1ms)
|
|
821
|
+
|
|
822
|
+
|
|
823
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:21 -0300
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:21 -0300
|
|
827
|
+
|
|
828
|
+
|
|
829
|
+
Started GET "/?p=8" for 127.0.0.1 at 2014-05-23 15:45:22 -0300
|
|
830
|
+
Processing by PagesController#index as HTML
|
|
831
|
+
Parameters: {"p"=>"8"}
|
|
832
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
833
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.9ms)
|
|
834
|
+
Rendered pages/index.html.erb within layouts/application (2.5ms)
|
|
835
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
|
836
|
+
|
|
837
|
+
|
|
838
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:22 -0300
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:22 -0300
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
Started GET "/?p=9" for 127.0.0.1 at 2014-05-23 15:45:24 -0300
|
|
845
|
+
Processing by PagesController#index as HTML
|
|
846
|
+
Parameters: {"p"=>"9"}
|
|
847
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
848
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
849
|
+
Rendered pages/index.html.erb within layouts/application (2.8ms)
|
|
850
|
+
Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.2ms)
|
|
851
|
+
|
|
852
|
+
|
|
853
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:24 -0300
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:24 -0300
|
|
857
|
+
|
|
858
|
+
|
|
859
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:45:26 -0300
|
|
860
|
+
Processing by PagesController#index as HTML
|
|
861
|
+
Parameters: {"p"=>"10"}
|
|
862
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
863
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.5ms)
|
|
864
|
+
Rendered pages/index.html.erb within layouts/application (3.6ms)
|
|
865
|
+
Completed 200 OK in 15ms (Views: 14.1ms | ActiveRecord: 0.1ms)
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:26 -0300
|
|
869
|
+
|
|
870
|
+
|
|
871
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:26 -0300
|
|
872
|
+
|
|
873
|
+
|
|
874
|
+
Started GET "/?p=9" for 127.0.0.1 at 2014-05-23 15:45:32 -0300
|
|
875
|
+
Processing by PagesController#index as HTML
|
|
876
|
+
Parameters: {"p"=>"9"}
|
|
877
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
878
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
879
|
+
Rendered pages/index.html.erb within layouts/application (2.7ms)
|
|
880
|
+
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.1ms)
|
|
881
|
+
|
|
882
|
+
|
|
883
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:32 -0300
|
|
884
|
+
|
|
885
|
+
|
|
886
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:32 -0300
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
Started GET "/?p=8" for 127.0.0.1 at 2014-05-23 15:45:33 -0300
|
|
890
|
+
Processing by PagesController#index as HTML
|
|
891
|
+
Parameters: {"p"=>"8"}
|
|
892
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
893
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.1ms)
|
|
894
|
+
Rendered pages/index.html.erb within layouts/application (3.3ms)
|
|
895
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.1ms)
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:33 -0300
|
|
899
|
+
|
|
900
|
+
|
|
901
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:33 -0300
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
Started GET "/?p=7" for 127.0.0.1 at 2014-05-23 15:45:34 -0300
|
|
905
|
+
Processing by PagesController#index as HTML
|
|
906
|
+
Parameters: {"p"=>"7"}
|
|
907
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
908
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
909
|
+
Rendered pages/index.html.erb within layouts/application (2.4ms)
|
|
910
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
|
911
|
+
|
|
912
|
+
|
|
913
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:34 -0300
|
|
914
|
+
|
|
915
|
+
|
|
916
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:34 -0300
|
|
917
|
+
|
|
918
|
+
|
|
919
|
+
Started GET "/?p=5" for 127.0.0.1 at 2014-05-23 15:45:34 -0300
|
|
920
|
+
Processing by PagesController#index as HTML
|
|
921
|
+
Parameters: {"p"=>"5"}
|
|
922
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
923
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
924
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
925
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
|
926
|
+
|
|
927
|
+
|
|
928
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:34 -0300
|
|
929
|
+
|
|
930
|
+
|
|
931
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:34 -0300
|
|
932
|
+
|
|
933
|
+
|
|
934
|
+
Started GET "/?p=7" for 127.0.0.1 at 2014-05-23 15:45:35 -0300
|
|
935
|
+
Processing by PagesController#index as HTML
|
|
936
|
+
Parameters: {"p"=>"7"}
|
|
937
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
938
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
939
|
+
Rendered pages/index.html.erb within layouts/application (2.4ms)
|
|
940
|
+
Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.1ms)
|
|
941
|
+
|
|
942
|
+
|
|
943
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:35 -0300
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:35 -0300
|
|
947
|
+
|
|
948
|
+
|
|
949
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:45:36 -0300
|
|
950
|
+
Processing by PagesController#index as HTML
|
|
951
|
+
Parameters: {"p"=>"10"}
|
|
952
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
953
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
954
|
+
Rendered pages/index.html.erb within layouts/application (2.3ms)
|
|
955
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:36 -0300
|
|
959
|
+
|
|
960
|
+
|
|
961
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:36 -0300
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
Started GET "/?p=9" for 127.0.0.1 at 2014-05-23 15:45:38 -0300
|
|
965
|
+
Processing by PagesController#index as HTML
|
|
966
|
+
Parameters: {"p"=>"9"}
|
|
967
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
968
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.9ms)
|
|
969
|
+
Rendered pages/index.html.erb within layouts/application (2.6ms)
|
|
970
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
|
971
|
+
|
|
972
|
+
|
|
973
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:45:38 -0300
|
|
974
|
+
|
|
975
|
+
|
|
976
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:45:38 -0300
|
|
977
|
+
|
|
978
|
+
|
|
979
|
+
Started GET "/?p=9" for 127.0.0.1 at 2014-05-23 15:46:13 -0300
|
|
980
|
+
Processing by PagesController#index as HTML
|
|
981
|
+
Parameters: {"p"=>"9"}
|
|
982
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
983
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (2.0ms)
|
|
984
|
+
Rendered pages/index.html.erb within layouts/application (3.6ms)
|
|
985
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.1ms)
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:46:13 -0300
|
|
989
|
+
|
|
990
|
+
|
|
991
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:46:13 -0300
|
|
992
|
+
|
|
993
|
+
|
|
994
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 15:46:14 -0300
|
|
995
|
+
Processing by PagesController#index as HTML
|
|
996
|
+
Parameters: {"p"=>"10"}
|
|
997
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
998
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
999
|
+
Rendered pages/index.html.erb within layouts/application (2.8ms)
|
|
1000
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.1ms)
|
|
1001
|
+
|
|
1002
|
+
|
|
1003
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:46:14 -0300
|
|
1004
|
+
|
|
1005
|
+
|
|
1006
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:46:14 -0300
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:46:17 -0300
|
|
1010
|
+
Processing by PagesController#index as HTML
|
|
1011
|
+
Parameters: {"p"=>"1"}
|
|
1012
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1013
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
1014
|
+
Rendered pages/index.html.erb within layouts/application (2.6ms)
|
|
1015
|
+
Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.1ms)
|
|
1016
|
+
|
|
1017
|
+
|
|
1018
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:46:17 -0300
|
|
1019
|
+
|
|
1020
|
+
|
|
1021
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:46:17 -0300
|
|
1022
|
+
|
|
1023
|
+
|
|
1024
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:46:19 -0300
|
|
1025
|
+
Processing by PagesController#index as HTML
|
|
1026
|
+
Parameters: {"p"=>"2"}
|
|
1027
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
1028
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
1029
|
+
Rendered pages/index.html.erb within layouts/application (3.0ms)
|
|
1030
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.1ms)
|
|
1031
|
+
|
|
1032
|
+
|
|
1033
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:46:19 -0300
|
|
1034
|
+
|
|
1035
|
+
|
|
1036
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:46:19 -0300
|
|
1037
|
+
|
|
1038
|
+
|
|
1039
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:46:20 -0300
|
|
1040
|
+
Processing by PagesController#index as HTML
|
|
1041
|
+
Parameters: {"p"=>"1"}
|
|
1042
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1043
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.7ms)
|
|
1044
|
+
Rendered pages/index.html.erb within layouts/application (2.5ms)
|
|
1045
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
|
|
1046
|
+
|
|
1047
|
+
|
|
1048
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:46:20 -0300
|
|
1049
|
+
|
|
1050
|
+
|
|
1051
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:46:20 -0300
|
|
1052
|
+
|
|
1053
|
+
|
|
1054
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 15:46:21 -0300
|
|
1055
|
+
Processing by PagesController#index as HTML
|
|
1056
|
+
Parameters: {"p"=>"2"}
|
|
1057
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
1058
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.2ms)
|
|
1059
|
+
Rendered pages/index.html.erb within layouts/application (3.5ms)
|
|
1060
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.2ms)
|
|
1061
|
+
|
|
1062
|
+
|
|
1063
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:46:21 -0300
|
|
1064
|
+
|
|
1065
|
+
|
|
1066
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:46:21 -0300
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 15:46:22 -0300
|
|
1070
|
+
Processing by PagesController#index as HTML
|
|
1071
|
+
Parameters: {"p"=>"1"}
|
|
1072
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1073
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
1074
|
+
Rendered pages/index.html.erb within layouts/application (2.0ms)
|
|
1075
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
|
1076
|
+
|
|
1077
|
+
|
|
1078
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 15:46:22 -0300
|
|
1079
|
+
|
|
1080
|
+
|
|
1081
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 15:46:22 -0300
|
|
1082
|
+
|
|
1083
|
+
|
|
1084
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 18:23:26 -0300
|
|
1085
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1086
|
+
Processing by PagesController#index as HTML
|
|
1087
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1088
|
+
Rendered pages/index.html.erb within layouts/application (7.4ms)
|
|
1089
|
+
Completed 500 Internal Server Error in 14ms
|
|
1090
|
+
|
|
1091
|
+
ActionView::Template::Error (Missing partial pages/_pagers, application/_pagers with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
|
1092
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/test/dummy/app/views"
|
|
1093
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views"
|
|
1094
|
+
):
|
|
1095
|
+
1: <%= paginate @collection %>
|
|
1096
|
+
app/views/pages/index.html.erb:1:in `_app_views_pages_index_html_erb__3306618245114368090_70177508660360'
|
|
1097
|
+
|
|
1098
|
+
|
|
1099
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
|
1100
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.1ms)
|
|
1101
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.6ms)
|
|
1102
|
+
|
|
1103
|
+
|
|
1104
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 18:23:50 -0300
|
|
1105
|
+
Processing by PagesController#index as HTML
|
|
1106
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
1107
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
1108
|
+
Completed 500 Internal Server Error in 4ms
|
|
1109
|
+
|
|
1110
|
+
ActionView::Template::Error (Missing partial pages/_pagers, application/_pagers with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
|
1111
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/test/dummy/app/views"
|
|
1112
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views"
|
|
1113
|
+
):
|
|
1114
|
+
1: <%= paginate @collection %>
|
|
1115
|
+
app/views/pages/index.html.erb:1:in `_app_views_pages_index_html_erb__3306618245114368090_70177508660360'
|
|
1116
|
+
|
|
1117
|
+
|
|
1118
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
|
1119
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
|
|
1120
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.8ms)
|
|
1121
|
+
|
|
1122
|
+
|
|
1123
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 18:23:51 -0300
|
|
1124
|
+
Processing by PagesController#index as HTML
|
|
1125
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1126
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
1127
|
+
Completed 500 Internal Server Error in 4ms
|
|
1128
|
+
|
|
1129
|
+
ActionView::Template::Error (Missing partial pages/_pagers, application/_pagers with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
|
1130
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/test/dummy/app/views"
|
|
1131
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views"
|
|
1132
|
+
):
|
|
1133
|
+
1: <%= paginate @collection %>
|
|
1134
|
+
app/views/pages/index.html.erb:1:in `_app_views_pages_index_html_erb__3306618245114368090_70177508660360'
|
|
1135
|
+
|
|
1136
|
+
|
|
1137
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
|
|
1138
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
|
1139
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.1ms)
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 18:23:59 -0300
|
|
1143
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1144
|
+
Processing by PagesController#index as HTML
|
|
1145
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1146
|
+
Rendered pages/index.html.erb within layouts/application (7.0ms)
|
|
1147
|
+
Completed 500 Internal Server Error in 13ms
|
|
1148
|
+
|
|
1149
|
+
ActionView::Template::Error (Missing partial pagers/_main with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
|
|
1150
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/test/dummy/app/views"
|
|
1151
|
+
* "/Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views"
|
|
1152
|
+
):
|
|
1153
|
+
1: <%= paginate @collection %>
|
|
1154
|
+
app/views/pages/index.html.erb:1:in `_app_views_pages_index_html_erb___1706154116445507869_70207912063360'
|
|
1155
|
+
|
|
1156
|
+
|
|
1157
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
|
1158
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.5ms)
|
|
1159
|
+
Rendered /Users/Matt/.rbenv/versions/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.8ms)
|
|
1160
|
+
|
|
1161
|
+
|
|
1162
|
+
Started GET "/" for 127.0.0.1 at 2014-05-23 18:24:12 -0300
|
|
1163
|
+
Processing by PagesController#index as HTML
|
|
1164
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
1165
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (7.2ms)
|
|
1166
|
+
Rendered pages/index.html.erb within layouts/application (9.1ms)
|
|
1167
|
+
Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.1ms)
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-23 18:24:13 -0300
|
|
1171
|
+
|
|
1172
|
+
|
|
1173
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-23 18:24:13 -0300
|
|
1174
|
+
|
|
1175
|
+
|
|
1176
|
+
Started GET "/?p=2" for 127.0.0.1 at 2014-05-23 18:24:14 -0300
|
|
1177
|
+
Processing by PagesController#index as HTML
|
|
1178
|
+
Parameters: {"p"=>"2"}
|
|
1179
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1180
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (1.0ms)
|
|
1181
|
+
Rendered pages/index.html.erb within layouts/application (3.0ms)
|
|
1182
|
+
Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.1ms)
|
|
1183
|
+
|
|
1184
|
+
|
|
1185
|
+
Started GET "/?p=3" for 127.0.0.1 at 2014-05-23 18:24:15 -0300
|
|
1186
|
+
Processing by PagesController#index as HTML
|
|
1187
|
+
Parameters: {"p"=>"3"}
|
|
1188
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
1189
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
1190
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
1191
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
Started GET "/?p=4" for 127.0.0.1 at 2014-05-23 18:24:16 -0300
|
|
1195
|
+
Processing by PagesController#index as HTML
|
|
1196
|
+
Parameters: {"p"=>"4"}
|
|
1197
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1198
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
1199
|
+
Rendered pages/index.html.erb within layouts/application (2.2ms)
|
|
1200
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.1ms)
|
|
1201
|
+
|
|
1202
|
+
|
|
1203
|
+
Started GET "/?p=6" for 127.0.0.1 at 2014-05-23 18:24:17 -0300
|
|
1204
|
+
Processing by PagesController#index as HTML
|
|
1205
|
+
Parameters: {"p"=>"6"}
|
|
1206
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
1207
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
1208
|
+
Rendered pages/index.html.erb within layouts/application (2.4ms)
|
|
1209
|
+
Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.1ms)
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
Started GET "/?p=7" for 127.0.0.1 at 2014-05-23 18:24:18 -0300
|
|
1213
|
+
Processing by PagesController#index as HTML
|
|
1214
|
+
Parameters: {"p"=>"7"}
|
|
1215
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1216
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
1217
|
+
Rendered pages/index.html.erb within layouts/application (2.4ms)
|
|
1218
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.1ms)
|
|
1219
|
+
|
|
1220
|
+
|
|
1221
|
+
Started GET "/?p=10" for 127.0.0.1 at 2014-05-23 18:24:18 -0300
|
|
1222
|
+
Processing by PagesController#index as HTML
|
|
1223
|
+
Parameters: {"p"=>"10"}
|
|
1224
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "models"[0m
|
|
1225
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.8ms)
|
|
1226
|
+
Rendered pages/index.html.erb within layouts/application (2.5ms)
|
|
1227
|
+
Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
|
|
1228
|
+
|
|
1229
|
+
|
|
1230
|
+
Started GET "/?p=1" for 127.0.0.1 at 2014-05-23 18:24:20 -0300
|
|
1231
|
+
Processing by PagesController#index as HTML
|
|
1232
|
+
Parameters: {"p"=>"1"}
|
|
1233
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "models"
|
|
1234
|
+
Rendered /Users/Matt/Documents/Museways/Herramientas/Rails/pagers/app/views/pagers/_main.html.erb (0.6ms)
|
|
1235
|
+
Rendered pages/index.html.erb within layouts/application (2.1ms)
|
|
1236
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.1ms)
|