Skip to content
This repository has been archived by the owner on Jan 10, 2018. It is now read-only.

Commit

Permalink
release 2.3.12; cleanup gemspec, catch up with changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Dec 1, 2009
1 parent f617a14 commit e114c44
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 15 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.rdoc
@@ -1,3 +1,32 @@
= 2.3.12, released 2009-12-01

* make view helpers "HTML safe" for Rails 2.3.5 with rails_xss plugin

= 2.3.11, released 2009-06-02

* fix `enable_actionpack`

= 2.3.10, released 2009-05-21

* count_by_sql: don't use table alias with any adapters starting with "oracle"
* Add back "AS count_table" alias to `paginate_by_sql` counter SQL

= 2.3.9, released 2009-05-29

* remove "AS count_table" alias from `paginate_by_sql` counter SQL
* Rails 2.3.2 compat: monkeypatch Rails issue #2189 (count breaks has_many :through)
* fix generation of page URLs that contain the "@" character
* check for method existance in a ruby 1.8- and 1.9-compatible way
* load will_paginate view helpers even if ActiveRecord is not loaded

== 2.3.8, released 2009-03-09

* Rails 2.3 compat: query parameter parsing with Rack

== 2.3.7, released 2009-02-09

* Removed all unnecessary &block variables since they cause serious memory damage and lots of subsequent gc runs.

== 2.3.6, released 2008-10-26

* Rails 2.2 fix: stop using `extract_attribute_names_from_match` inernal AR method, it no longer exists
Expand Down
29 changes: 14 additions & 15 deletions will_paginate.gemspec
@@ -1,20 +1,19 @@
Gem::Specification.new do |s|
s.name = 'will_paginate'
s.version = '2.3.11'
s.date = '2009-06-02'
Gem::Specification.new do |gem|
gem.name = 'will_paginate'
gem.version = '2.3.12'
gem.date = Date.today.to_s

s.summary = "Most awesome pagination solution for Rails"
s.description = "The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates."
gem.summary = "Pagination for Rails"
gem.description = "The will_paginate library provides a simple, yet powerful and extensible API for ActiveRecord pagination and rendering of pagination links in ActionView templates."

s.authors = ['Mislav Marohnić', 'PJ Hyett']
s.email = 'mislav.marohnic@gmail.com'
s.homepage = 'http://github.com/mislav/will_paginate/wikis'
gem.authors = ['Mislav Marohnić', 'PJ Hyett']
gem.email = 'mislav.marohnic@gmail.com'
gem.homepage = 'http://github.com/mislav/will_paginate/wikis'

s.has_rdoc = true
s.rdoc_options = ['--main', 'README.rdoc']
s.rdoc_options << '--inline-source' << '--charset=UTF-8'
s.extra_rdoc_files = ['README.rdoc', 'LICENSE', 'CHANGELOG.rdoc']
gem.rubyforge_project = nil
gem.has_rdoc = true
gem.rdoc_options = ['--main', 'README.rdoc', '--charset=UTF-8']
gem.extra_rdoc_files = ['README.rdoc', 'LICENSE', 'CHANGELOG.rdoc']

s.files = %w(CHANGELOG.rdoc LICENSE README.rdoc Rakefile examples/apple-circle.gif examples/index.haml examples/index.html examples/pagination.css examples/pagination.sass init.rb lib/will_paginate.rb lib/will_paginate/array.rb lib/will_paginate/collection.rb lib/will_paginate/core_ext.rb lib/will_paginate/finder.rb lib/will_paginate/named_scope.rb lib/will_paginate/named_scope_patch.rb lib/will_paginate/version.rb lib/will_paginate/view_helpers.rb test/boot.rb test/collection_test.rb test/console test/database.yml test/finder_test.rb test/fixtures/admin.rb test/fixtures/developer.rb test/fixtures/developers_projects.yml test/fixtures/project.rb test/fixtures/projects.yml test/fixtures/replies.yml test/fixtures/reply.rb test/fixtures/schema.rb test/fixtures/topic.rb test/fixtures/topics.yml test/fixtures/user.rb test/fixtures/users.yml test/helper.rb test/lib/activerecord_test_case.rb test/lib/activerecord_test_connector.rb test/lib/load_fixtures.rb test/lib/view_test_process.rb test/tasks.rake test/view_test.rb)
s.test_files = %w(test/boot.rb test/collection_test.rb test/console test/database.yml test/finder_test.rb test/fixtures/admin.rb test/fixtures/developer.rb test/fixtures/developers_projects.yml test/fixtures/project.rb test/fixtures/projects.yml test/fixtures/replies.yml test/fixtures/reply.rb test/fixtures/schema.rb test/fixtures/topic.rb test/fixtures/topics.yml test/fixtures/user.rb test/fixtures/users.yml test/helper.rb test/lib/activerecord_test_case.rb test/lib/activerecord_test_connector.rb test/lib/load_fixtures.rb test/lib/view_test_process.rb test/tasks.rake test/view_test.rb)
gem.files = Dir['Rakefile', '{bin,lib,rails,test,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files -z`.split("\0")
end

0 comments on commit e114c44

Please sign in to comment.