bootstrap_pager 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +18 -0
  3. data/.idea/encodings.xml +5 -0
  4. data/.idea/misc.xml +5 -0
  5. data/.idea/modules.xml +9 -0
  6. data/.idea/pager.iml +50 -0
  7. data/.idea/scopes/scope_settings.xml +5 -0
  8. data/.idea/vcs.xml +7 -0
  9. data/Gemfile +4 -0
  10. data/LICENSE +20 -0
  11. data/MIT-LICENSE +20 -0
  12. data/README.rdoc +307 -0
  13. data/Rakefile +42 -0
  14. data/app/assets/javascripts/infinitescroll.js +8 -0
  15. data/app/helpers/pager_helper.rb +5 -0
  16. data/app/views/pager/_first_page.html.erb +11 -0
  17. data/app/views/pager/_first_page.html.haml +9 -0
  18. data/app/views/pager/_first_page.html.slim +10 -0
  19. data/app/views/pager/_gap.html.erb +8 -0
  20. data/app/views/pager/_gap.html.haml +8 -0
  21. data/app/views/pager/_gap.html.slim +10 -0
  22. data/app/views/pager/_last_page.html.erb +11 -0
  23. data/app/views/pager/_last_page.html.haml +9 -0
  24. data/app/views/pager/_last_page.html.slim +10 -0
  25. data/app/views/pager/_next_page.html.erb +11 -0
  26. data/app/views/pager/_next_page.html.haml +9 -0
  27. data/app/views/pager/_next_page.html.slim +10 -0
  28. data/app/views/pager/_page.html.erb +14 -0
  29. data/app/views/pager/_page.html.haml +11 -0
  30. data/app/views/pager/_page.html.slim +13 -0
  31. data/app/views/pager/_paginator.html.erb +25 -0
  32. data/app/views/pager/_paginator.html.haml +19 -0
  33. data/app/views/pager/_paginator.html.slim +20 -0
  34. data/app/views/pager/_prev_page.html.erb +11 -0
  35. data/app/views/pager/_prev_page.html.haml +9 -0
  36. data/app/views/pager/_prev_page.html.slim +10 -0
  37. data/bootstrap_pager.gemspec +36 -0
  38. data/config/locales/pager.yml +19 -0
  39. data/gemfiles/active_record_30.gemfile +9 -0
  40. data/gemfiles/active_record_31.gemfile +7 -0
  41. data/gemfiles/active_record_32.gemfile +10 -0
  42. data/gemfiles/active_record_40.gemfile +8 -0
  43. data/gemfiles/active_record_edge.gemfile +11 -0
  44. data/gemfiles/data_mapper_12.gemfile +15 -0
  45. data/gemfiles/mongo_mapper.gemfile +10 -0
  46. data/gemfiles/mongoid_24.gemfile +7 -0
  47. data/gemfiles/mongoid_30.gemfile +12 -0
  48. data/gemfiles/sinatra_13.gemfile +13 -0
  49. data/gemfiles/sinatra_14.gemfile +13 -0
  50. data/lib/bootstrap_pager/config.rb +51 -0
  51. data/lib/bootstrap_pager/grape.rb +4 -0
  52. data/lib/bootstrap_pager/helpers/action_view_extension.rb +152 -0
  53. data/lib/bootstrap_pager/helpers/paginator.rb +186 -0
  54. data/lib/bootstrap_pager/helpers/sinatra_helpers.rb +144 -0
  55. data/lib/bootstrap_pager/helpers/tags.rb +96 -0
  56. data/lib/bootstrap_pager/hooks.rb +41 -0
  57. data/lib/bootstrap_pager/models/active_record_extension.rb +22 -0
  58. data/lib/bootstrap_pager/models/active_record_model_extension.rb +20 -0
  59. data/lib/bootstrap_pager/models/active_record_relation_methods.rb +29 -0
  60. data/lib/bootstrap_pager/models/array_extension.rb +58 -0
  61. data/lib/bootstrap_pager/models/configuration_methods.rb +48 -0
  62. data/lib/bootstrap_pager/models/data_mapper_collection_methods.rb +15 -0
  63. data/lib/bootstrap_pager/models/data_mapper_extension.rb +48 -0
  64. data/lib/bootstrap_pager/models/mongo_mapper_extension.rb +18 -0
  65. data/lib/bootstrap_pager/models/mongoid_criteria_methods.rb +23 -0
  66. data/lib/bootstrap_pager/models/mongoid_extension.rb +33 -0
  67. data/lib/bootstrap_pager/models/page_scope_methods.rb +70 -0
  68. data/lib/bootstrap_pager/models/plucky_criteria_methods.rb +18 -0
  69. data/lib/bootstrap_pager/railtie.rb +7 -0
  70. data/lib/bootstrap_pager/sinatra.rb +5 -0
  71. data/lib/bootstrap_pager/version.rb +3 -0
  72. data/lib/bootstrap_pager.rb +38 -0
  73. data/lib/generators/pager/config_generator.rb +16 -0
  74. data/lib/generators/pager/templates/pager_config.rb +10 -0
  75. data/lib/generators/pager/views_generator.rb +118 -0
  76. data/spec/config/config_spec.rb +91 -0
  77. data/spec/fake_app/active_record/config.rb +3 -0
  78. data/spec/fake_app/active_record/models.rb +57 -0
  79. data/spec/fake_app/data_mapper/config.rb +7 -0
  80. data/spec/fake_app/data_mapper/models.rb +27 -0
  81. data/spec/fake_app/log/development.log +832 -0
  82. data/spec/fake_app/mongo_mapper/config.rb +2 -0
  83. data/spec/fake_app/mongo_mapper/models.rb +9 -0
  84. data/spec/fake_app/mongoid/config.rb +16 -0
  85. data/spec/fake_app/mongoid/models.rb +22 -0
  86. data/spec/fake_app/rails_app.rb +67 -0
  87. data/spec/fake_app/sinatra_app.rb +22 -0
  88. data/spec/fake_gem.rb +4 -0
  89. data/spec/helpers/action_view_extension_spec.rb +292 -0
  90. data/spec/helpers/helpers_spec.rb +135 -0
  91. data/spec/helpers/sinatra_helpers_spec.rb +170 -0
  92. data/spec/helpers/tags_spec.rb +140 -0
  93. data/spec/models/active_record/active_record_relation_methods_spec.rb +47 -0
  94. data/spec/models/active_record/default_per_page_spec.rb +32 -0
  95. data/spec/models/active_record/max_pages_spec.rb +23 -0
  96. data/spec/models/active_record/max_per_page_spec.rb +32 -0
  97. data/spec/models/active_record/scopes_spec.rb +242 -0
  98. data/spec/models/array_spec.rb +150 -0
  99. data/spec/models/data_mapper/data_mapper_spec.rb +207 -0
  100. data/spec/models/mongo_mapper/mongo_mapper_spec.rb +84 -0
  101. data/spec/models/mongoid/mongoid_spec.rb +126 -0
  102. data/spec/requests/users_spec.rb +53 -0
  103. data/spec/spec_helper.rb +33 -0
  104. data/spec/spec_helper_for_sinatra.rb +34 -0
  105. data/spec/support/database_cleaner.rb +16 -0
  106. data/spec/support/matchers.rb +52 -0
  107. data/vendor/assets/javascripts/jquery.infinitescroll.js +814 -0
  108. data/vendor/assets/javascripts/jquery.infinitescroll.min.js +1 -0
  109. metadata +311 -0
@@ -0,0 +1,832 @@
1
+ DEPRECATION WARNING: Using #scope without passing a callable object is deprecated. For example `scope :red, where(color: 'red')` should be changed to `scope :red, -> { where(color: 'red') }`. There are numerous gotchas in the former usage and it makes the implementation more complicated and buggy. (If you prefer, you can just define a class method named `self.red`.). (called from <class:User> at /home/work/Sites/bootstrap_pager/spec/fake_app/active_record/models.rb:13)
2
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from env_config at /home/work/.rvm/gems/ruby-1.9.3-p448/gems/railties-4.0.0/lib/rails/application.rb:141)
3
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
4
+
5
+ Post.includes(:comments).where("comments.title = 'foo'")
6
+
7
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
8
+
9
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
10
+
11
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:17)
12
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
13
+
14
+ Post.includes(:comments).where("comments.title = 'foo'")
15
+
16
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
17
+
18
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
19
+
20
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
21
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
22
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from block (4 levels) in <top (required)> at /home/work/Sites/bootstrap_pager/spec/models/active_record/active_record_relation_methods_spec.rb:35)
23
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
24
+
25
+
26
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 20:46:23 -0600
27
+ Processing by UsersController#index as HTML
28
+ Completed 200 OK in 38ms (Views: 37.0ms)
29
+ DEPRECATION WARNING: Using #scope without passing a callable object is deprecated. For example `scope :red, where(color: 'red')` should be changed to `scope :red, -> { where(color: 'red') }`. There are numerous gotchas in the former usage and it makes the implementation more complicated and buggy. (If you prefer, you can just define a class method named `self.red`.). (called from <class:User> at /home/work/Sites/bootstrap_pager/spec/fake_app/active_record/models.rb:13)
30
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from env_config at /home/work/.rvm/gems/ruby-1.9.3-p448/gems/railties-4.0.0/lib/rails/application.rb:141)
31
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
32
+
33
+ Post.includes(:comments).where("comments.title = 'foo'")
34
+
35
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
36
+
37
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
38
+
39
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:17)
40
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
41
+
42
+ Post.includes(:comments).where("comments.title = 'foo'")
43
+
44
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
45
+
46
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
47
+
48
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
49
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
50
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from block (4 levels) in <top (required)> at /home/work/Sites/bootstrap_pager/spec/models/active_record/active_record_relation_methods_spec.rb:35)
51
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
52
+
53
+
54
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 20:52:14 -0600
55
+ Processing by UsersController#index as HTML
56
+ Completed 200 OK in 39ms (Views: 38.0ms)
57
+ DEPRECATION WARNING: Using #scope without passing a callable object is deprecated. For example `scope :red, where(color: 'red')` should be changed to `scope :red, -> { where(color: 'red') }`. There are numerous gotchas in the former usage and it makes the implementation more complicated and buggy. (If you prefer, you can just define a class method named `self.red`.). (called from <class:User> at /home/work/Sites/bootstrap_pager/spec/fake_app/active_record/models.rb:13)
58
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from env_config at /home/work/.rvm/gems/ruby-1.9.3-p448/gems/railties-4.0.0/lib/rails/application.rb:141)
59
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
60
+
61
+ Post.includes(:comments).where("comments.title = 'foo'")
62
+
63
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
64
+
65
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
66
+
67
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:17)
68
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
69
+
70
+ Post.includes(:comments).where("comments.title = 'foo'")
71
+
72
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
73
+
74
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
75
+
76
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
77
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
78
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from block (4 levels) in <top (required)> at /home/work/Sites/bootstrap_pager/spec/models/active_record/active_record_relation_methods_spec.rb:35)
79
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
80
+
81
+
82
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:00:59 -0600
83
+ Processing by UsersController#index as HTML
84
+ Completed 200 OK in 66ms (Views: 64.2ms)
85
+
86
+
87
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-23 21:00:59 -0600
88
+ Processing by UsersController#index as HTML
89
+ Parameters: {"page"=>"2"}
90
+ Completed 200 OK in 332ms (Views: 331.2ms)
91
+
92
+
93
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-23 21:00:59 -0600
94
+ Processing by UsersController#index as HTML
95
+ Parameters: {"page"=>"4"}
96
+ Completed 200 OK in 64ms (Views: 40.4ms)
97
+
98
+
99
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-23 21:00:59 -0600
100
+ Processing by UsersController#index as HTML
101
+ Parameters: {"page"=>"3"}
102
+ Completed 200 OK in 48ms (Views: 47.7ms)
103
+
104
+
105
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:00:59 -0600
106
+ Processing by UsersController#index as HTML
107
+ Completed 200 OK in 86ms (Views: 84.5ms)
108
+ DEPRECATION WARNING: Using #scope without passing a callable object is deprecated. For example `scope :red, where(color: 'red')` should be changed to `scope :red, -> { where(color: 'red') }`. There are numerous gotchas in the former usage and it makes the implementation more complicated and buggy. (If you prefer, you can just define a class method named `self.red`.). (called from <class:User> at /home/work/Sites/bootstrap_pager/spec/fake_app/active_record/models.rb:13)
109
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from env_config at /home/work/.rvm/gems/ruby-1.9.3-p448/gems/railties-4.0.0/lib/rails/application.rb:141)
110
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
111
+
112
+ Post.includes(:comments).where("comments.title = 'foo'")
113
+
114
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
115
+
116
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
117
+
118
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:17)
119
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
120
+
121
+ Post.includes(:comments).where("comments.title = 'foo'")
122
+
123
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
124
+
125
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
126
+
127
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
128
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
129
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from block (4 levels) in <top (required)> at /home/work/Sites/bootstrap_pager/spec/models/active_record/active_record_relation_methods_spec.rb:35)
130
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
131
+
132
+
133
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:05:27 -0600
134
+ Processing by UsersController#index as HTML
135
+ Completed 200 OK in 53ms (Views: 50.7ms)
136
+
137
+
138
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-23 21:05:27 -0600
139
+ Processing by UsersController#index as HTML
140
+ Parameters: {"page"=>"2"}
141
+ Completed 200 OK in 185ms (Views: 184.4ms)
142
+
143
+
144
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-23 21:05:27 -0600
145
+ Processing by UsersController#index as HTML
146
+ Parameters: {"page"=>"4"}
147
+ Completed 200 OK in 34ms (Views: 33.8ms)
148
+
149
+
150
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-23 21:05:27 -0600
151
+ Processing by UsersController#index as HTML
152
+ Parameters: {"page"=>"3"}
153
+ Completed 200 OK in 33ms (Views: 31.9ms)
154
+
155
+
156
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:05:27 -0600
157
+ Processing by UsersController#index as HTML
158
+ Completed 200 OK in 38ms (Views: 32.4ms)
159
+
160
+
161
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:07:39 -0600
162
+ Processing by UsersController#index as HTML
163
+ Completed 200 OK in 27ms (Views: 26.5ms)
164
+
165
+
166
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-23 21:07:40 -0600
167
+ Processing by UsersController#index as HTML
168
+ Parameters: {"page"=>"2"}
169
+ Completed 200 OK in 24ms (Views: 23.8ms)
170
+
171
+
172
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-23 21:07:40 -0600
173
+ Processing by UsersController#index as HTML
174
+ Parameters: {"page"=>"4"}
175
+ Completed 200 OK in 17ms (Views: 16.0ms)
176
+
177
+
178
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-23 21:07:40 -0600
179
+ Processing by UsersController#index as HTML
180
+ Parameters: {"page"=>"3"}
181
+ Completed 200 OK in 18ms (Views: 16.2ms)
182
+
183
+
184
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:07:40 -0600
185
+ Processing by UsersController#index as HTML
186
+ Completed 200 OK in 33ms (Views: 31.3ms)
187
+
188
+
189
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:09:48 -0600
190
+ Processing by UsersController#index as HTML
191
+ Completed 200 OK in 35ms (Views: 34.0ms)
192
+
193
+
194
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-23 21:09:48 -0600
195
+ Processing by UsersController#index as HTML
196
+ Parameters: {"page"=>"2"}
197
+ Completed 200 OK in 72ms (Views: 71.1ms)
198
+
199
+
200
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-23 21:09:48 -0600
201
+ Processing by UsersController#index as HTML
202
+ Parameters: {"page"=>"4"}
203
+ Completed 200 OK in 14ms (Views: 12.3ms)
204
+
205
+
206
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-23 21:09:48 -0600
207
+ Processing by UsersController#index as HTML
208
+ Parameters: {"page"=>"3"}
209
+ Completed 200 OK in 18ms (Views: 17.2ms)
210
+
211
+
212
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:09:48 -0600
213
+ Processing by UsersController#index as HTML
214
+ Completed 200 OK in 12ms (Views: 11.8ms)
215
+ DEPRECATION WARNING: Using #scope without passing a callable object is deprecated. For example `scope :red, where(color: 'red')` should be changed to `scope :red, -> { where(color: 'red') }`. There are numerous gotchas in the former usage and it makes the implementation more complicated and buggy. (If you prefer, you can just define a class method named `self.red`.). (called from <class:User> at /home/work/Sites/bootstrap_pager/spec/fake_app/active_record/models.rb:13)
216
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from env_config at /home/work/.rvm/gems/ruby-1.9.3-p448/gems/railties-4.0.0/lib/rails/application.rb:141)
217
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
218
+
219
+ Post.includes(:comments).where("comments.title = 'foo'")
220
+
221
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
222
+
223
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
224
+
225
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:17)
226
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
227
+
228
+ Post.includes(:comments).where("comments.title = 'foo'")
229
+
230
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
231
+
232
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
233
+
234
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
235
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
236
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from block (4 levels) in <top (required)> at /home/work/Sites/bootstrap_pager/spec/models/active_record/active_record_relation_methods_spec.rb:35)
237
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:20)
238
+
239
+
240
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:14:41 -0600
241
+ Processing by UsersController#index as HTML
242
+ Completed 200 OK in 37ms (Views: 35.5ms)
243
+
244
+
245
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-23 21:14:41 -0600
246
+ Processing by UsersController#index as HTML
247
+ Parameters: {"page"=>"2"}
248
+ Completed 200 OK in 56ms (Views: 55.0ms)
249
+
250
+
251
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-23 21:14:42 -0600
252
+ Processing by UsersController#index as HTML
253
+ Parameters: {"page"=>"4"}
254
+ Completed 200 OK in 48ms (Views: 45.0ms)
255
+
256
+
257
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-23 21:14:42 -0600
258
+ Processing by UsersController#index as HTML
259
+ Parameters: {"page"=>"3"}
260
+ Completed 200 OK in 36ms (Views: 35.4ms)
261
+
262
+
263
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:14:42 -0600
264
+ Processing by UsersController#index as HTML
265
+ Completed 200 OK in 51ms (Views: 50.1ms)
266
+
267
+
268
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:16:21 -0600
269
+ Processing by UsersController#index as HTML
270
+ Completed 200 OK in 35ms (Views: 32.3ms)
271
+
272
+
273
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-23 21:16:21 -0600
274
+ Processing by UsersController#index as HTML
275
+ Parameters: {"page"=>"2"}
276
+ Completed 200 OK in 24ms (Views: 22.3ms)
277
+
278
+
279
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-23 21:16:21 -0600
280
+ Processing by UsersController#index as HTML
281
+ Parameters: {"page"=>"4"}
282
+ Completed 200 OK in 25ms (Views: 24.2ms)
283
+
284
+
285
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-23 21:16:21 -0600
286
+ Processing by UsersController#index as HTML
287
+ Parameters: {"page"=>"3"}
288
+ Completed 200 OK in 29ms (Views: 28.1ms)
289
+
290
+
291
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:16:21 -0600
292
+ Processing by UsersController#index as HTML
293
+ Completed 200 OK in 19ms (Views: 18.1ms)
294
+
295
+
296
+ Started GET "/users" for 127.0.0.1 at 2013-08-23 21:21:00 -0600
297
+ Processing by UsersController#index as HTML
298
+ Completed 200 OK in 65ms (Views: 63.3ms)
299
+
300
+
301
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-23 21:21:00 -0600
302
+ Processing by UsersController#index as HTML
303
+ Parameters: {"page"=>"2"}
304
+ Completed 200 OK in 26ms (Views: 25.6ms)
305
+
306
+
307
+ Started GET "/users?page=20" for 127.0.0.1 at 2013-08-23 21:21:00 -0600
308
+ Processing by UsersController#index as HTML
309
+ Parameters: {"page"=>"20"}
310
+ Completed 200 OK in 15ms (Views: 13.4ms)
311
+
312
+
313
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 13:32:19 -0600
314
+ Processing by UsersController#index as HTML
315
+ Completed 200 OK in 48ms (Views: 47.1ms)
316
+
317
+
318
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 13:32:20 -0600
319
+ Processing by UsersController#index as HTML
320
+ Parameters: {"page"=>"2"}
321
+ Completed 200 OK in 90ms (Views: 89.5ms)
322
+
323
+
324
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 13:32:20 -0600
325
+ Processing by UsersController#index as HTML
326
+ Parameters: {"page"=>"4"}
327
+ Completed 200 OK in 39ms (Views: 35.5ms)
328
+
329
+
330
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 13:32:20 -0600
331
+ Processing by UsersController#index as HTML
332
+ Parameters: {"page"=>"3"}
333
+ Completed 200 OK in 53ms (Views: 52.3ms)
334
+
335
+
336
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 13:32:20 -0600
337
+ Processing by UsersController#index as HTML
338
+ Completed 200 OK in 63ms (Views: 61.1ms)
339
+
340
+
341
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 13:38:38 -0600
342
+ Processing by UsersController#index as HTML
343
+ Completed 200 OK in 80ms (Views: 78.8ms)
344
+
345
+
346
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 13:38:38 -0600
347
+ Processing by UsersController#index as HTML
348
+ Parameters: {"page"=>"2"}
349
+ Completed 200 OK in 82ms (Views: 80.4ms)
350
+
351
+
352
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 13:38:38 -0600
353
+ Processing by UsersController#index as HTML
354
+ Parameters: {"page"=>"4"}
355
+ Completed 200 OK in 34ms (Views: 29.3ms)
356
+
357
+
358
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 13:38:38 -0600
359
+ Processing by UsersController#index as HTML
360
+ Parameters: {"page"=>"3"}
361
+ Completed 200 OK in 58ms (Views: 55.3ms)
362
+
363
+
364
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 13:38:39 -0600
365
+ Processing by UsersController#index as HTML
366
+ Completed 200 OK in 32ms (Views: 31.7ms)
367
+
368
+
369
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 13:49:17 -0600
370
+ Processing by UsersController#index as HTML
371
+ Completed 500 Internal Server Error in 192ms
372
+
373
+ ActionView::Template::Error (undefined method `match' for nil:NilClass):
374
+ 1: <%= @users.map(&:name).join("
375
+ 2: ") %>
376
+ 3: <%= paginate @users %>
377
+ /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:23:in `total_count'
378
+ /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/page_scope_methods.rb:22:in `total_pages'
379
+ /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/helpers/action_view_extension.rb:19:in `paginate'
380
+ inline template:3:in `_inline_template___168882423335613430_39203360'
381
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/template.rb:143:in `block in render'
382
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications.rb:159:in `block in instrument'
383
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
384
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications.rb:159:in `instrument'
385
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/template.rb:337:in `instrument'
386
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/template.rb:141:in `render'
387
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/template_renderer.rb:49:in `block (2 levels) in render_template'
388
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
389
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications.rb:159:in `block in instrument'
390
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
391
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications.rb:159:in `instrument'
392
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
393
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/template_renderer.rb:48:in `block in render_template'
394
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/template_renderer.rb:56:in `render_with_layout'
395
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/template_renderer.rb:47:in `render_template'
396
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/template_renderer.rb:17:in `render'
397
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/renderer.rb:42:in `render_template'
398
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionview/lib/action_view/renderer/renderer.rb:23:in `render'
399
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/rendering.rb:127:in `_render_template'
400
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/streaming.rb:219:in `_render_template'
401
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/rendering.rb:120:in `render_to_body'
402
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/rendering.rb:33:in `render_to_body'
403
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/renderers.rb:33:in `render_to_body'
404
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/rendering.rb:97:in `render'
405
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/rendering.rb:16:in `render'
406
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
407
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
408
+ /home/work/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
409
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/core_ext/benchmark.rb:12:in `ms'
410
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/instrumentation.rb:41:in `block in render'
411
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
412
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/instrumentation.rb:40:in `render'
413
+ rails_app.rb:50:in `index'
414
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
415
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/base.rb:189:in `process_action'
416
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/rendering.rb:10:in `process_action'
417
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/callbacks.rb:20:in `block in process_action'
418
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/callbacks.rb:82:in `run_callbacks'
419
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/callbacks.rb:19:in `process_action'
420
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/rescue.rb:29:in `process_action'
421
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
422
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications.rb:159:in `block in instrument'
423
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
424
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/notifications.rb:159:in `instrument'
425
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/instrumentation.rb:30:in `process_action'
426
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
427
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/base.rb:136:in `process'
428
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/abstract_controller/rendering.rb:44:in `process'
429
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal.rb:195:in `dispatch'
430
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
431
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_controller/metal.rb:231:in `block in action'
432
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/routing/route_set.rb:80:in `call'
433
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
434
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/routing/route_set.rb:48:in `call'
435
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/journey/router.rb:71:in `block in call'
436
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/journey/router.rb:59:in `each'
437
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/journey/router.rb:59:in `call'
438
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/routing/route_set.rb:680:in `call'
439
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/static.rb:64:in `call'
440
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
441
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
442
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
443
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/params_parser.rb:27:in `call'
444
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/flash.rb:241:in `call'
445
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
446
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
447
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/cookies.rb:486:in `call'
448
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
449
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/callbacks.rb:82:in `run_callbacks'
450
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
451
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/reloader.rb:64:in `call'
452
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
453
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
454
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
455
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/railties/lib/rails/rack/logger.rb:38:in `call_app'
456
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/railties/lib/rails/rack/logger.rb:21:in `block in call'
457
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/tagged_logging.rb:67:in `block in tagged'
458
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/tagged_logging.rb:25:in `tagged'
459
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/tagged_logging.rb:67:in `tagged'
460
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/railties/lib/rails/rack/logger.rb:21:in `call'
461
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/request_id.rb:21:in `call'
462
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
463
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
464
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/activesupport/lib/active_support/cache/strategy/local_cache.rb:83:in `call'
465
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
466
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/actionpack/lib/action_dispatch/middleware/static.rb:64:in `call'
467
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
468
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/railties/lib/rails/engine.rb:511:in `call'
469
+ /home/work/.rvm/gems/ruby-1.9.3-p448/bundler/gems/rails-8f7b3e166a3e/railties/lib/rails/application.rb:139:in `call'
470
+ rack (1.5.2) lib/rack/builder.rb:138:in `call'
471
+ rack (1.5.2) lib/rack/urlmap.rb:65:in `block in call'
472
+ rack (1.5.2) lib/rack/urlmap.rb:50:in `each'
473
+ rack (1.5.2) lib/rack/urlmap.rb:50:in `call'
474
+ rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
475
+ rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
476
+ rack-test (0.6.2) lib/rack/test.rb:57:in `get'
477
+ /home/work/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/forwardable.rb:201:in `get'
478
+ capybara (2.1.0) lib/capybara/rack_test/browser.rb:59:in `process'
479
+ capybara (2.1.0) lib/capybara/rack_test/browser.rb:35:in `process_and_follow_redirects'
480
+ capybara (2.1.0) lib/capybara/rack_test/browser.rb:21:in `visit'
481
+ capybara (2.1.0) lib/capybara/rack_test/driver.rb:42:in `visit'
482
+ capybara (2.1.0) lib/capybara/session.rb:193:in `visit'
483
+ capybara (2.1.0) lib/capybara/dsl.rb:51:in `block (2 levels) in <module:DSL>'
484
+ /home/work/Sites/bootstrap_pager/spec/requests/users_spec.rb:9:in `block (2 levels) in <top (required)>'
485
+ rspec-core (2.14.5) lib/rspec/core/example.rb:114:in `instance_eval'
486
+ rspec-core (2.14.5) lib/rspec/core/example.rb:114:in `block in run'
487
+ rspec-core (2.14.5) lib/rspec/core/example.rb:179:in `call'
488
+ rspec-core (2.14.5) lib/rspec/core/example.rb:179:in `run'
489
+ rspec-rails (2.14.0) lib/rspec/rails/adapters.rb:51:in `block (2 levels) in <module:MiniTestLifecycleAdapter>'
490
+ rspec-core (2.14.5) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_exec'
491
+ rspec-core (2.14.5) lib/rspec/core/extensions/instance_eval_with_args.rb:16:in `instance_eval_with_args'
492
+ rspec-core (2.14.5) lib/rspec/core/example.rb:247:in `instance_eval_with_args'
493
+ rspec-core (2.14.5) lib/rspec/core/hooks.rb:106:in `block (2 levels) in run'
494
+ rspec-core (2.14.5) lib/rspec/core/hooks.rb:104:in `call'
495
+ rspec-core (2.14.5) lib/rspec/core/hooks.rb:104:in `run'
496
+ rspec-core (2.14.5) lib/rspec/core/hooks.rb:446:in `run_hook'
497
+ rspec-core (2.14.5) lib/rspec/core/example_group.rb:340:in `run_around_each_hooks'
498
+ rspec-core (2.14.5) lib/rspec/core/example.rb:256:in `with_around_each_hooks'
499
+ rspec-core (2.14.5) lib/rspec/core/example.rb:111:in `run'
500
+ rspec-core (2.14.5) lib/rspec/core/example_group.rb:390:in `block in run_examples'
501
+ rspec-core (2.14.5) lib/rspec/core/example_group.rb:386:in `map'
502
+ rspec-core (2.14.5) lib/rspec/core/example_group.rb:386:in `run_examples'
503
+ rspec-core (2.14.5) lib/rspec/core/example_group.rb:371:in `run'
504
+ rspec-core (2.14.5) lib/rspec/core/command_line.rb:28:in `block (2 levels) in run'
505
+ rspec-core (2.14.5) lib/rspec/core/command_line.rb:28:in `map'
506
+ rspec-core (2.14.5) lib/rspec/core/command_line.rb:28:in `block in run'
507
+ rspec-core (2.14.5) lib/rspec/core/reporter.rb:58:in `report'
508
+ rspec-core (2.14.5) lib/rspec/core/command_line.rb:25:in `run'
509
+ rspec-core (2.14.5) lib/rspec/core/runner.rb:80:in `run'
510
+ rspec-core (2.14.5) lib/rspec/core/runner.rb:17:in `block in autorun'
511
+
512
+
513
+
514
+
515
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:00:34 -0600
516
+ Processing by UsersController#index as HTML
517
+ Completed 200 OK in 336ms (Views: 332.2ms)
518
+
519
+
520
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 14:00:35 -0600
521
+ Processing by UsersController#index as HTML
522
+ Parameters: {"page"=>"2"}
523
+ Completed 200 OK in 83ms (Views: 81.0ms)
524
+
525
+
526
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 14:00:35 -0600
527
+ Processing by UsersController#index as HTML
528
+ Parameters: {"page"=>"4"}
529
+ Completed 200 OK in 68ms (Views: 64.3ms)
530
+
531
+
532
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 14:00:35 -0600
533
+ Processing by UsersController#index as HTML
534
+ Parameters: {"page"=>"3"}
535
+ Completed 200 OK in 54ms (Views: 53.4ms)
536
+
537
+
538
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:00:35 -0600
539
+ Processing by UsersController#index as HTML
540
+ Completed 200 OK in 91ms (Views: 90.1ms)
541
+
542
+
543
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:10:47 -0600
544
+ Processing by UsersController#index as HTML
545
+ Completed 200 OK in 120ms (Views: 119.3ms)
546
+
547
+
548
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 14:10:48 -0600
549
+ Processing by UsersController#index as HTML
550
+ Parameters: {"page"=>"2"}
551
+ Completed 200 OK in 58ms (Views: 57.3ms)
552
+
553
+
554
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 14:10:48 -0600
555
+ Processing by UsersController#index as HTML
556
+ Parameters: {"page"=>"4"}
557
+ Completed 200 OK in 86ms (Views: 83.2ms)
558
+
559
+
560
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 14:10:48 -0600
561
+ Processing by UsersController#index as HTML
562
+ Parameters: {"page"=>"3"}
563
+ Completed 200 OK in 329ms (Views: 324.9ms)
564
+
565
+
566
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:10:48 -0600
567
+ Processing by UsersController#index as HTML
568
+ Completed 200 OK in 76ms (Views: 75.2ms)
569
+
570
+
571
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:27:29 -0600
572
+ Processing by UsersController#index as HTML
573
+ Completed 200 OK in 38ms (Views: 36.1ms)
574
+
575
+
576
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 14:27:29 -0600
577
+ Processing by UsersController#index as HTML
578
+ Parameters: {"page"=>"2"}
579
+ Completed 200 OK in 52ms (Views: 51.3ms)
580
+
581
+
582
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 14:27:30 -0600
583
+ Processing by UsersController#index as HTML
584
+ Parameters: {"page"=>"4"}
585
+ Completed 200 OK in 60ms (Views: 59.7ms)
586
+
587
+
588
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 14:27:30 -0600
589
+ Processing by UsersController#index as HTML
590
+ Parameters: {"page"=>"3"}
591
+ Completed 200 OK in 27ms (Views: 26.7ms)
592
+
593
+
594
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:27:30 -0600
595
+ Processing by UsersController#index as HTML
596
+ Completed 200 OK in 126ms (Views: 124.9ms)
597
+
598
+
599
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:34:43 -0600
600
+ Processing by UsersController#index as HTML
601
+ Completed 200 OK in 36ms (Views: 34.4ms)
602
+
603
+
604
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 14:34:44 -0600
605
+ Processing by UsersController#index as HTML
606
+ Parameters: {"page"=>"2"}
607
+ Completed 200 OK in 52ms (Views: 51.0ms)
608
+
609
+
610
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 14:34:44 -0600
611
+ Processing by UsersController#index as HTML
612
+ Parameters: {"page"=>"4"}
613
+ Completed 200 OK in 38ms (Views: 36.1ms)
614
+
615
+
616
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 14:34:44 -0600
617
+ Processing by UsersController#index as HTML
618
+ Parameters: {"page"=>"3"}
619
+ Completed 200 OK in 66ms (Views: 65.2ms)
620
+
621
+
622
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:34:44 -0600
623
+ Processing by UsersController#index as HTML
624
+ Completed 200 OK in 170ms (Views: 169.7ms)
625
+
626
+
627
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:39:16 -0600
628
+ Processing by UsersController#index as HTML
629
+ Completed 200 OK in 22ms (Views: 21.3ms)
630
+
631
+
632
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 14:39:16 -0600
633
+ Processing by UsersController#index as HTML
634
+ Parameters: {"page"=>"2"}
635
+ Completed 200 OK in 34ms (Views: 33.6ms)
636
+
637
+
638
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 14:39:16 -0600
639
+ Processing by UsersController#index as HTML
640
+ Parameters: {"page"=>"4"}
641
+ Completed 200 OK in 22ms (Views: 21.5ms)
642
+
643
+
644
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 14:39:16 -0600
645
+ Processing by UsersController#index as HTML
646
+ Parameters: {"page"=>"3"}
647
+ Completed 200 OK in 21ms (Views: 20.7ms)
648
+
649
+
650
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:39:16 -0600
651
+ Processing by UsersController#index as HTML
652
+ Completed 200 OK in 93ms (Views: 92.1ms)
653
+
654
+
655
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:48:45 -0600
656
+ Processing by UsersController#index as HTML
657
+ Completed 200 OK in 32ms (Views: 31.9ms)
658
+
659
+
660
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 14:48:45 -0600
661
+ Processing by UsersController#index as HTML
662
+ Parameters: {"page"=>"2"}
663
+ Completed 200 OK in 18ms (Views: 17.5ms)
664
+
665
+
666
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 14:48:45 -0600
667
+ Processing by UsersController#index as HTML
668
+ Parameters: {"page"=>"4"}
669
+ Completed 200 OK in 16ms (Views: 15.4ms)
670
+
671
+
672
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 14:48:45 -0600
673
+ Processing by UsersController#index as HTML
674
+ Parameters: {"page"=>"3"}
675
+ Completed 200 OK in 16ms (Views: 16.2ms)
676
+
677
+
678
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 14:48:45 -0600
679
+ Processing by UsersController#index as HTML
680
+ Completed 200 OK in 14ms (Views: 13.8ms)
681
+
682
+
683
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 16:59:03 -0600
684
+ Processing by UsersController#index as HTML
685
+ Completed 200 OK in 41ms (Views: 40.5ms)
686
+
687
+
688
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 16:59:03 -0600
689
+ Processing by UsersController#index as HTML
690
+ Parameters: {"page"=>"2"}
691
+ Completed 200 OK in 37ms (Views: 36.6ms)
692
+
693
+
694
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 16:59:03 -0600
695
+ Processing by UsersController#index as HTML
696
+ Parameters: {"page"=>"4"}
697
+ Completed 200 OK in 26ms (Views: 24.8ms)
698
+
699
+
700
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 16:59:04 -0600
701
+ Processing by UsersController#index as HTML
702
+ Parameters: {"page"=>"3"}
703
+ Completed 200 OK in 38ms (Views: 36.6ms)
704
+
705
+
706
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 16:59:04 -0600
707
+ Processing by UsersController#index as HTML
708
+ Completed 200 OK in 25ms (Views: 23.5ms)
709
+ DEPRECATION WARNING: Using #scope without passing a callable object is deprecated. For example `scope :red, where(color: 'red')` should be changed to `scope :red, -> { where(color: 'red') }`. There are numerous gotchas in the former usage and it makes the implementation more complicated and buggy. (If you prefer, you can just define a class method named `self.red`.). (called from <class:User> at /home/work/Sites/bootstrap_pager/spec/fake_app/active_record/models.rb:13)
710
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from env_config at /home/work/.rvm/gems/ruby-1.9.3-p448/gems/railties-4.0.0/lib/rails/application.rb:141)
711
+ DEPRECATION WARNING: It looks like you are eager loading table(s) (one of: users, books) that are referenced in a string SQL snippet. For example:
712
+
713
+ Post.includes(:comments).where("comments.title = 'foo'")
714
+
715
+ Currently, Active Record recognizes the table in the string, and knows to JOIN the comments table to the query, rather than loading comments in a separate query. However, doing this without writing a full-blown SQL parser is inherently flawed. Since we don't want to write an SQL parser, we are removing this functionality. From now on, you must explicitly tell Active Record when you are referencing a table from a string:
716
+
717
+ Post.includes(:comments).where("comments.title = 'foo'").references(:comments)
718
+
719
+ If you don't rely on implicit join references you can disable the feature entirely by setting `config.active_record.disable_implicit_join_references = true`. (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:22)
720
+ DEPRECATION WARNING: The :distinct option for `Relation#count` is deprecated. Please use `Relation#distinct` instead. (eg. `relation.distinct.count`). (called from total_count at /home/work/Sites/bootstrap_pager/lib/bootstrap_pager/models/active_record_relation_methods.rb:22)
721
+
722
+
723
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:00:50 -0600
724
+ Processing by UsersController#index as HTML
725
+ Completed 200 OK in 98ms (Views: 97.1ms)
726
+
727
+
728
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 17:00:50 -0600
729
+ Processing by UsersController#index as HTML
730
+ Parameters: {"page"=>"2"}
731
+ Completed 200 OK in 29ms (Views: 28.8ms)
732
+
733
+
734
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 17:00:50 -0600
735
+ Processing by UsersController#index as HTML
736
+ Parameters: {"page"=>"4"}
737
+ Completed 200 OK in 30ms (Views: 29.5ms)
738
+
739
+
740
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 17:00:50 -0600
741
+ Processing by UsersController#index as HTML
742
+ Parameters: {"page"=>"3"}
743
+ Completed 200 OK in 163ms (Views: 161.9ms)
744
+
745
+
746
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:00:51 -0600
747
+ Processing by UsersController#index as HTML
748
+ Completed 200 OK in 32ms (Views: 30.4ms)
749
+
750
+
751
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:03:57 -0600
752
+ Processing by UsersController#index as HTML
753
+ Completed 200 OK in 77ms (Views: 76.3ms)
754
+
755
+
756
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 17:03:57 -0600
757
+ Processing by UsersController#index as HTML
758
+ Parameters: {"page"=>"2"}
759
+ Completed 200 OK in 34ms (Views: 33.5ms)
760
+
761
+
762
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 17:03:57 -0600
763
+ Processing by UsersController#index as HTML
764
+ Parameters: {"page"=>"4"}
765
+ Completed 200 OK in 28ms (Views: 27.9ms)
766
+
767
+
768
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 17:03:57 -0600
769
+ Processing by UsersController#index as HTML
770
+ Parameters: {"page"=>"3"}
771
+ Completed 200 OK in 24ms (Views: 23.0ms)
772
+
773
+
774
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:03:57 -0600
775
+ Processing by UsersController#index as HTML
776
+ Completed 200 OK in 18ms (Views: 17.6ms)
777
+
778
+
779
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:05:50 -0600
780
+ Processing by UsersController#index as HTML
781
+ Completed 200 OK in 34ms (Views: 33.3ms)
782
+
783
+
784
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 17:05:50 -0600
785
+ Processing by UsersController#index as HTML
786
+ Parameters: {"page"=>"2"}
787
+ Completed 200 OK in 61ms (Views: 58.1ms)
788
+
789
+
790
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 17:05:50 -0600
791
+ Processing by UsersController#index as HTML
792
+ Parameters: {"page"=>"4"}
793
+ Completed 200 OK in 28ms (Views: 27.2ms)
794
+
795
+
796
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 17:05:50 -0600
797
+ Processing by UsersController#index as HTML
798
+ Parameters: {"page"=>"3"}
799
+ Completed 200 OK in 29ms (Views: 28.7ms)
800
+
801
+
802
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:05:50 -0600
803
+ Processing by UsersController#index as HTML
804
+ Completed 200 OK in 25ms (Views: 24.4ms)
805
+
806
+
807
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:08:00 -0600
808
+ Processing by UsersController#index as HTML
809
+ Completed 200 OK in 51ms (Views: 51.0ms)
810
+
811
+
812
+ Started GET "/users?page=2" for 127.0.0.1 at 2013-08-24 17:08:00 -0600
813
+ Processing by UsersController#index as HTML
814
+ Parameters: {"page"=>"2"}
815
+ Completed 200 OK in 28ms (Views: 27.1ms)
816
+
817
+
818
+ Started GET "/users?page=4" for 127.0.0.1 at 2013-08-24 17:08:00 -0600
819
+ Processing by UsersController#index as HTML
820
+ Parameters: {"page"=>"4"}
821
+ Completed 200 OK in 22ms (Views: 21.3ms)
822
+
823
+
824
+ Started GET "/users?page=3" for 127.0.0.1 at 2013-08-24 17:08:00 -0600
825
+ Processing by UsersController#index as HTML
826
+ Parameters: {"page"=>"3"}
827
+ Completed 200 OK in 22ms (Views: 21.5ms)
828
+
829
+
830
+ Started GET "/users" for 127.0.0.1 at 2013-08-24 17:08:00 -0600
831
+ Processing by UsersController#index as HTML
832
+ Completed 200 OK in 64ms (Views: 63.5ms)