Initial import of ruby-activerecord 1.14.2

Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties
database tables and classes together for business objects, like Customer
or Subscription, that can find, save, and destroy themselves without
resorting to manual SQL.

from msf
This commit is contained in:
sturm 2006-06-12 19:45:48 +00:00
parent ca6257ce12
commit 7134988b3a
4 changed files with 1050 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# $OpenBSD: Makefile,v 1.1.1.1 2006/06/12 19:45:48 sturm Exp $
COMMENT= "object relation model implementation for ruby"
DISTNAME= activerecord-1.14.2
PKGNAME= ruby-${DISTNAME}
CATEGORIES= databases
MAINTAINER= Mathieu Sauve-Frankel <msf@openbsd.org>
# MIT License
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= http://rubyforge.org/frs/download.php/9680/
MODULES= lang/ruby
BUILD_DEPENDS= ${RUN_DEPENDS}
RUN_DEPENDS= ::devel/ruby-activesupport
CONFIGURE_STYLE=ruby gem
.include <bsd.port.mk>

View File

@ -0,0 +1,4 @@
MD5 (activerecord-1.14.2.gem) = 708c952b87d3a73c1cf2d14df781a472
RMD160 (activerecord-1.14.2.gem) = 389d32bff378048e07138791123c45def8fed985
SHA1 (activerecord-1.14.2.gem) = 546eaab12e881c4ea516ac9d773b5e4fcd5e45da
SIZE (activerecord-1.14.2.gem) = 348672

View File

@ -0,0 +1,4 @@
Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties
database tables and classes together for business objects, like Customer
or Subscription, that can find, save, and destroy themselves without
resorting to manual SQL.

File diff suppressed because it is too large Load Diff