Skip to content

Commit

Permalink
Regenerate gemspec for version 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
afair committed Jun 6, 2014
1 parent 1b799d5 commit aa6d5e2
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions postgresql_cursor.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
# stub: postgresql_cursor 0.4.3 ruby lib

Gem::Specification.new do |s|
s.name = "postgresql_cursor"
s.version = "0.4.1"
s.version = "0.4.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib"]
s.authors = ["Allen Fair"]
s.date = "2013-02-20"
s.date = "2014-06-06"
s.description = "PostgreSQL Cursor is an extension to the ActiveRecord PostgreSQLAdapter for very large result sets. It provides a cursor open/fetch/close interface to access data without loading all rows into memory, and instead loads the result rows in \"chunks\" (default of 10_000 rows), buffers them, and returns the rows one at a time."
s.email = "allen.fair@gmail.com"
s.extra_rdoc_files = [
Expand All @@ -28,23 +30,19 @@ Gem::Specification.new do |s|
"test/test_postgresql_cursor.rb"
]
s.homepage = "http://github.com/afair/postgresql_cursor"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.rubygems_version = "2.2.1"
s.summary = "ActiveRecord PostgreSQL Adapter extension for using a cursor to return a large result set"

if s.respond_to? :specification_version then
s.specification_version = 3
s.specification_version = 4

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activerecord>, [">= 0"])
s.add_runtime_dependency(%q<pg>, [">= 0"])
else
s.add_dependency(%q<activerecord>, [">= 0"])
s.add_dependency(%q<pg>, [">= 0"])
end
else
s.add_dependency(%q<activerecord>, [">= 0"])
s.add_dependency(%q<pg>, [">= 0"])
end
end

0 comments on commit aa6d5e2

Please sign in to comment.