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

Gem::Specification.new do |s|
  s.name = "sqlpostgres"
  s.version = "1.2.5"

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Wayne Conrad"]
  s.date = "2013-02-18"
  s.description = "A mini-language for building and executing SQL statements against a postgresql database.  This is a very old library, pre-dating active record and lacking many of its refinments.  New projects will probably not want to use it."
  s.email = "wconrad@yagni.com"
  s.extra_rdoc_files = [
    "LICENSE.md",
    "README.rdoc"
  ]
  s.files = [
    "Gemfile",
    "Gemfile.lock",
    "LICENSE.md",
    "README.rdoc",
    "Rakefile",
    "VERSION",
    "doc/BUGS",
    "doc/examples/README",
    "doc/examples/connection.rb",
    "doc/examples/connection_auto.rb",
    "doc/examples/connection_ctor.rb",
    "doc/examples/connection_default.rb",
    "doc/examples/connection_exec.rb",
    "doc/examples/connection_manual.rb",
    "doc/examples/connection_wrapped_new.rb",
    "doc/examples/connection_wrapped_open.rb",
    "doc/examples/cursor.rb",
    "doc/examples/include_module.rb",
    "doc/examples/include_module2.rb",
    "doc/examples/insert.rb",
    "doc/examples/insert2.rb",
    "doc/examples/insert_bytea.rb",
    "doc/examples/insert_bytea_array.rb",
    "doc/examples/insert_default_values.rb",
    "doc/examples/insert_insert.rb",
    "doc/examples/insert_insert_default.rb",
    "doc/examples/insert_insert_select.rb",
    "doc/examples/insert_select.rb",
    "doc/examples/interval.rb",
    "doc/examples/savepoint.rb",
    "doc/examples/select.rb",
    "doc/examples/select2.rb",
    "doc/examples/select_cross_join.rb",
    "doc/examples/select_distinct.rb",
    "doc/examples/select_distinct_on",
    "doc/examples/select_for_update.rb",
    "doc/examples/select_from.rb",
    "doc/examples/select_from_subselect.rb",
    "doc/examples/select_group_by.rb",
    "doc/examples/select_having.rb",
    "doc/examples/select_join_on.rb",
    "doc/examples/select_join_using.rb",
    "doc/examples/select_limit.rb",
    "doc/examples/select_natural_join.rb",
    "doc/examples/select_offset.rb",
    "doc/examples/select_order_by.rb",
    "doc/examples/select_select.rb",
    "doc/examples/select_select_alias.rb",
    "doc/examples/select_select_expression.rb",
    "doc/examples/select_select_literal.rb",
    "doc/examples/select_union.rb",
    "doc/examples/select_where_array.rb",
    "doc/examples/select_where_in.rb",
    "doc/examples/select_where_string.rb",
    "doc/examples/simple.rb",
    "doc/examples/transaction.rb",
    "doc/examples/transaction_abort.rb",
    "doc/examples/transaction_commit.rb",
    "doc/examples/translate_substitute_values.rb",
    "doc/examples/update.rb",
    "doc/examples/update2.rb",
    "doc/examples/update_only.rb",
    "doc/examples/update_set.rb",
    "doc/examples/update_set_array.rb",
    "doc/examples/update_set_bytea.rb",
    "doc/examples/update_set_expression.rb",
    "doc/examples/update_set_subselect.rb",
    "doc/examples/update_where.rb",
    "doc/examples/use_prefix.rb",
    "doc/examples/use_prefix2.rb",
    "doc/index.html",
    "doc/insertexamples.rb",
    "doc/makemanual",
    "doc/makerdoc",
    "doc/manual.dbk",
    "lib/sqlpostgres.rb",
    "lib/sqlpostgres/Connection.rb",
    "lib/sqlpostgres/Cursor.rb",
    "lib/sqlpostgres/Delete.rb",
    "lib/sqlpostgres/Exceptions.rb",
    "lib/sqlpostgres/Insert.rb",
    "lib/sqlpostgres/NullConnection.rb",
    "lib/sqlpostgres/PgBit.rb",
    "lib/sqlpostgres/PgBox.rb",
    "lib/sqlpostgres/PgCidr.rb",
    "lib/sqlpostgres/PgCircle.rb",
    "lib/sqlpostgres/PgInet.rb",
    "lib/sqlpostgres/PgInterval.rb",
    "lib/sqlpostgres/PgLineSegment.rb",
    "lib/sqlpostgres/PgMacAddr.rb",
    "lib/sqlpostgres/PgPath.rb",
    "lib/sqlpostgres/PgPoint.rb",
    "lib/sqlpostgres/PgPolygon.rb",
    "lib/sqlpostgres/PgTime.rb",
    "lib/sqlpostgres/PgTimeWithTimeZone.rb",
    "lib/sqlpostgres/PgTimestamp.rb",
    "lib/sqlpostgres/PgTwoPoints.rb",
    "lib/sqlpostgres/PgType.rb",
    "lib/sqlpostgres/PgWrapper.rb",
    "lib/sqlpostgres/Savepoint.rb",
    "lib/sqlpostgres/Select.rb",
    "lib/sqlpostgres/Transaction.rb",
    "lib/sqlpostgres/Translate.rb",
    "lib/sqlpostgres/Update.rb",
    "sqlpostgres.gemspec",
    "test/Assert.rb",
    "test/Connection.test.rb",
    "test/Cursor.test.rb",
    "test/Delete.test.rb",
    "test/Insert.test.rb",
    "test/MockPGconn.rb",
    "test/NullConnection.test.rb",
    "test/PgBit.test.rb",
    "test/PgBox.test.rb",
    "test/PgCidr.test.rb",
    "test/PgCircle.test.rb",
    "test/PgInet.test.rb",
    "test/PgInterval.test.rb",
    "test/PgLineSegment.test.rb",
    "test/PgMacAddr.test.rb",
    "test/PgPath.test.rb",
    "test/PgPoint.test.rb",
    "test/PgPolygon.test.rb",
    "test/PgTime.test.rb",
    "test/PgTimeWithTimeZone.test.rb",
    "test/PgTimestamp.test.rb",
    "test/RandomThings.rb",
    "test/Savepoint.test.rb",
    "test/Select.test.rb",
    "test/Test.rb",
    "test/TestConfig.rb",
    "test/TestSetup.rb",
    "test/TestUtil.rb",
    "test/Transaction.test.rb",
    "test/Translate.test.rb",
    "test/Update.test.rb",
    "test/roundtrip.test.rb",
    "test/test",
    "tools/exampleinserter/ExampleInserter.rb",
    "tools/rdoc/ChangeLog",
    "tools/rdoc/EXAMPLE.rb",
    "tools/rdoc/MANIFEST",
    "tools/rdoc/Makefile",
    "tools/rdoc/NEW_FEATURES",
    "tools/rdoc/README",
    "tools/rdoc/ToDo",
    "tools/rdoc/contrib/Index",
    "tools/rdoc/contrib/xslfo/ChangeLog",
    "tools/rdoc/contrib/xslfo/README",
    "tools/rdoc/contrib/xslfo/TODO",
    "tools/rdoc/contrib/xslfo/convert.xsl",
    "tools/rdoc/contrib/xslfo/demo/README",
    "tools/rdoc/contrib/xslfo/demo/rdocfo",
    "tools/rdoc/contrib/xslfo/fcm.xsl",
    "tools/rdoc/contrib/xslfo/files.xsl",
    "tools/rdoc/contrib/xslfo/labeled-lists.xsl",
    "tools/rdoc/contrib/xslfo/lists.xsl",
    "tools/rdoc/contrib/xslfo/modules.xsl",
    "tools/rdoc/contrib/xslfo/rdoc.xsl",
    "tools/rdoc/contrib/xslfo/source.xsl",
    "tools/rdoc/contrib/xslfo/styles.xsl",
    "tools/rdoc/contrib/xslfo/tables.xsl",
    "tools/rdoc/contrib/xslfo/utils.xsl",
    "tools/rdoc/debian/changelog",
    "tools/rdoc/debian/compat",
    "tools/rdoc/debian/control",
    "tools/rdoc/debian/copyright",
    "tools/rdoc/debian/dirs",
    "tools/rdoc/debian/docs",
    "tools/rdoc/debian/rdoc.1",
    "tools/rdoc/debian/rdoc.manpages",
    "tools/rdoc/debian/rdoc.pod",
    "tools/rdoc/debian/rules",
    "tools/rdoc/dot/dot.rb",
    "tools/rdoc/etc/rdoc.dtd",
    "tools/rdoc/install.rb",
    "tools/rdoc/markup/install.rb",
    "tools/rdoc/markup/sample/sample.rb",
    "tools/rdoc/markup/simple_markup.rb",
    "tools/rdoc/markup/simple_markup/fragments.rb",
    "tools/rdoc/markup/simple_markup/inline.rb",
    "tools/rdoc/markup/simple_markup/lines.rb",
    "tools/rdoc/markup/simple_markup/preprocess.rb",
    "tools/rdoc/markup/simple_markup/to_html.rb",
    "tools/rdoc/markup/test/AllTests.rb",
    "tools/rdoc/markup/test/TestInline.rb",
    "tools/rdoc/markup/test/TestParse.rb",
    "tools/rdoc/rdoc.rb",
    "tools/rdoc/rdoc/code_objects.rb",
    "tools/rdoc/rdoc/diagram.rb",
    "tools/rdoc/rdoc/generators/chm_generator.rb",
    "tools/rdoc/rdoc/generators/html_generator.rb",
    "tools/rdoc/rdoc/generators/template/chm/chm.rb",
    "tools/rdoc/rdoc/generators/template/html/html.rb",
    "tools/rdoc/rdoc/generators/template/html/kilmer.rb",
    "tools/rdoc/rdoc/generators/template/xml/rdf.rb",
    "tools/rdoc/rdoc/generators/template/xml/xml.rb",
    "tools/rdoc/rdoc/generators/xml_generator.rb",
    "tools/rdoc/rdoc/options.rb",
    "tools/rdoc/rdoc/parsers/parse_c.rb",
    "tools/rdoc/rdoc/parsers/parse_f95.rb",
    "tools/rdoc/rdoc/parsers/parse_rb.rb",
    "tools/rdoc/rdoc/parsers/parse_simple.rb",
    "tools/rdoc/rdoc/parsers/parserfactory.rb",
    "tools/rdoc/rdoc/rdoc.rb",
    "tools/rdoc/rdoc/template.rb",
    "tools/rdoc/rdoc/tokenstream.rb"
  ]
  s.homepage = "http://github.com/wconrad/sqlpostgres"
  s.licenses = ["MIT"]
  s.require_paths = ["lib"]
  s.rubygems_version = "1.8.17"
  s.summary = "library for postgresql queries"

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

    if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<pg>, ["~> 0.13.2"])
      s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
      s.add_development_dependency(%q<rake>, ["~> 10.0.3"])
    else
      s.add_dependency(%q<pg>, ["~> 0.13.2"])
      s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
      s.add_dependency(%q<rake>, ["~> 10.0.3"])
    end
  else
    s.add_dependency(%q<pg>, ["~> 0.13.2"])
    s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
    s.add_dependency(%q<rake>, ["~> 10.0.3"])
  end
end