Sha256: 4dab399f9a4eb6dca6601ef047547485547008e03914fb341c63ba155c30fad4

Contents?: true

Size: 1.97 KB

Versions: 1

Compression:

Stored size: 1.97 KB

Contents

# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
  s.name = %q{postgresql_cursor}
  s.version = "0.2.0"

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Allen Fair"]
  s.date = %q{2010-05-17}
  s.description = %q{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 = %q{allen.fair@gmail.com}
  s.extra_rdoc_files = [
    "LICENSE",
     "README.rdoc"
  ]
  s.files = [
    ".document",
     ".gitignore",
     "LICENSE",
     "README.rdoc",
     "Rakefile",
     "VERSION",
     "lib/postgresql_cursor.rb",
     "postgresql_cursor.gemspec",
     "test/helper.rb",
     "test/test_postgresql_cursor.rb"
  ]
  s.homepage = %q{http://github.com/afair/postgresql_cursor}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.6}
  s.summary = %q{ActiveRecord PostgreSQL Adapter extension for using a cursor to return a large result set}
  s.test_files = [
    "test/helper.rb",
     "test/test_postgresql_cursor.rb"
  ]

  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 3

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
postgresql_cursor-0.2.0 postgresql_cursor.gemspec