public
Description: The open source social networking platform in Ruby on Rails from the author of RailsSpace
Homepage: http://insoshi.com
Clone URL: git://github.com/insoshi/insoshi.git
Search Repo:
Michael Hartl (author)
Wed May 14 13:04:29 -0700 2008
commit  b28d1d612b53e861a0e2d0d7c473041d29f2e350
tree    d843d06c25a5ec0248792c6a5e9176909a0ae8ac
parent  7053655da8b45f44c0afd3cbeffd4a4638d0ae45
insoshi / config / initializers / default_overrides.rb
100644 7 lines (7 sloc) 0.188 kb
1
2
3
4
5
6
7
# This overrides the :per_page attribute for will_paginate.
# The default for will_paginate is 30, which seems a little high.
class ActiveRecord::Base
  def self.per_page
    10
  end
end