NOTICE: This package has been removed from pkgsrc

./databases/ruby-sequel-core, Core components for Sequel

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 1.5.1, Package name: ruby18-sequel-core-1.5.1, Maintainer: pkgsrc-users

Sequel is a database access toolkit for Ruby. Sequel provides thread
safety, connection pooling, and a concise DSL for constructing queries
and table schemas.

Sequel makes it easy to deal with multiple records without having to
break your teeth on SQL.

This package contains the core components that connect to the underlying
database through database adapters, as well as classes for directly
querying those databases.


Required to run:
[misc/rubygems] [lang/ruby18-base] [devel/ruby-metaid]

Required to build:
[misc/rubygems] [devel/rake] [devel/ruby-rspec]

Master sites:

SHA1: b42f2b95fabf72e549662a13dc4ed35ca2ec537c
RMD160: 7b41a656033b60c0039479a8ccd1f79bd723f6e3
Filesize: 110 KB

Version history: (Expand)


CVS history: (Expand)


   2010-09-10 06:49:22 by Takahiro Kambe | Files touched by this commit (4) | Package removed
Log message:
databases/ruby-sequel-core has merged (or renamed) to databases/ruby-sequel.
   2009-06-14 19:43:27 by Joerg Sonnenberger | Files touched by this commit (120)
Log message:
Remove @dirrm entries from PLISTs
   2008-05-01 19:51:14 by Johnny C. Lam | Files touched by this commit (2)
Log message:
Add a build dependency on ruby-rspec since the Rakefiles in the
distribution include spec/rake/spectask.
   2008-05-01 19:30:32 by Johnny C. Lam | Files touched by this commit (2)
Log message:
Update databases/ruby-sequel-core to 1.5.1.  Changes from version 1.5.0
include:

* Have Dataset#graph give a nil value instead of a hash with all nil
  values if no matching rows exist in the graphed table.  This changes
  how graph handles missing records in associated tables (which occur
  because graph defaults to LEFT OUTER joins by design).
   2008-04-29 20:39:06 by Johnny C. Lam | Files touched by this commit (3)
Log message:
Update databases/ruby-sequel-core to 1.5.0.  Changes from version 1.4.0
include:

* SECURITY: Fix backslash escaping of strings

* No longer depend on ParseTree, RubyInline, or ruby2ruby, but you still
  need them if you want to use the block filters

* Paginating an already paginated/limited dataset now raises an error
* Added support for arbitrary index types (including spatial indexes)
* Allow joining of multiple datasets, by making the table alias different
  for each dataset joined
* Add ability to create a graph of objects from a query, with the result
  split into corresponding tables

* Set a timeout in the Sqlite adapter, default to 5 seconds
* Quote column names in SQL generated for SQLite

* Add support for PostgreSQL partial indexes
* Support storing microseconds in postgres timestamp fields

* Fix table joining in MySQL
* Fix MySQL default values insert
* Fix renaming columns on MySQL with type :varchar

* Fix ODBC adapter improperly escaping date and timestamp values
* Fix connecting to an MSSQL server via ODBC using domain user credentials
   2008-04-13 08:56:27 by Johnny C. Lam | Files touched by this commit (4)
Log message:
Update databases/ruby-sequel-core to 1.4.0.  Changes from version 1.3
include fixes to the MySQL and PostgreSQL adapters.