diff options
author | jlam <jlam@pkgsrc.org> | 2008-04-13 06:56:30 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2008-04-13 06:56:30 +0000 |
commit | 35011c9c6bf11018dd6e1ab04d81abab4f2c522f (patch) | |
tree | e266546c52bcb5cb3b661474ded30b7a1e7e728f /databases/ruby-sequel/PLIST | |
parent | 5902cd9c5062644d08a947ba56bde2816b2ff94f (diff) | |
download | pkgsrc-35011c9c6bf11018dd6e1ab04d81abab4f2c522f.tar.gz |
Update databases/ruby-sequel to 1.4.0. Changes from version 1.3 include:
+ Add patch-aa and patch-ab which are changes pulled from upstream to
allow the creation of new records that don't have a primary key when
the cache is on.
* Merge ``sequel_model'' into ``sequel''.
* Eager loading for all types of associations.
* One-to-many associations now populate the corresponding many-to-one
instance variable (even when eagerly loaded).
* ActiveRecord style has_many :through associations are now supported
via many_to_many. many_to_many will no longer select the entire result
set, just the columns of the associated table (and not the join table),
so it works for both has_and_belongs_to_many (simple join table) and
has_many :through (join table model) scenarios.
Diffstat (limited to 'databases/ruby-sequel/PLIST')
-rw-r--r-- | databases/ruby-sequel/PLIST | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/databases/ruby-sequel/PLIST b/databases/ruby-sequel/PLIST index 670b35b3250..00b5ee3fdc5 100644 --- a/databases/ruby-sequel/PLIST +++ b/databases/ruby-sequel/PLIST @@ -1,10 +1,37 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2008/04/04 15:16:06 jlam Exp $ +@comment $NetBSD: PLIST,v 1.2 2008/04/13 06:56:30 jlam Exp $ ${GEM_HOME}/cache/sequel-${PKGVERSION}.gem +${GEM_LIBDIR}/CHANGELOG ${GEM_LIBDIR}/COPYING ${GEM_LIBDIR}/README ${GEM_LIBDIR}/Rakefile ${GEM_LIBDIR}/lib/sequel.rb +${GEM_LIBDIR}/lib/sequel_model.rb +${GEM_LIBDIR}/lib/sequel_model/associations.rb +${GEM_LIBDIR}/lib/sequel_model/base.rb +${GEM_LIBDIR}/lib/sequel_model/caching.rb +${GEM_LIBDIR}/lib/sequel_model/eager_loading.rb +${GEM_LIBDIR}/lib/sequel_model/hooks.rb +${GEM_LIBDIR}/lib/sequel_model/plugins.rb +${GEM_LIBDIR}/lib/sequel_model/pretty_table.rb +${GEM_LIBDIR}/lib/sequel_model/record.rb +${GEM_LIBDIR}/lib/sequel_model/schema.rb +${GEM_LIBDIR}/lib/sequel_model/validations.rb +${GEM_LIBDIR}/spec/associations_spec.rb +${GEM_LIBDIR}/spec/base_spec.rb +${GEM_LIBDIR}/spec/caching_spec.rb +${GEM_LIBDIR}/spec/deprecated_relations_spec.rb +${GEM_LIBDIR}/spec/eager_loading_spec.rb +${GEM_LIBDIR}/spec/hooks_spec.rb +${GEM_LIBDIR}/spec/model_spec.rb +${GEM_LIBDIR}/spec/plugins_spec.rb +${GEM_LIBDIR}/spec/rcov.opts +${GEM_LIBDIR}/spec/record_spec.rb +${GEM_LIBDIR}/spec/schema_spec.rb +${GEM_LIBDIR}/spec/spec.opts +${GEM_LIBDIR}/spec/spec_helper.rb +${GEM_LIBDIR}/spec/validations_spec.rb ${GEM_HOME}/specifications/sequel-${PKGVERSION}.gemspec +@dirrm ${GEM_LIBDIR}/spec +@dirrm ${GEM_LIBDIR}/lib/sequel_model @dirrm ${GEM_LIBDIR}/lib @dirrm ${GEM_LIBDIR} -@exec ${MKDIR} %D/${GEM_DOCDIR}/rdoc/classes |