Skip to content
This repository has been archived by the owner on Apr 17, 2018. It is now read-only.

Commit

Permalink
Updated gems deps
Browse files Browse the repository at this point in the history
  • Loading branch information
dkubb committed Sep 8, 2009
1 parent 9bd3a09 commit 51e69fc
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
7 changes: 7 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
=== 0.10.0 / 2009-10-08

* 2 major enhancements:

* Updated gem dependencies to 0.10.0
* Updated gems to include in meta-gem

=== 0.9.11 / 2009-03-29

* 1 minor enhancement:
Expand Down
4 changes: 3 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ commonly used gems from dm-core, dm-more, and others.
Included gems are:
* dm-core
* dm-aggregates
* dm-constraints
* dm-migrations
* dm-serializers
* dm-serializer
* dm-timestamps
* dm-validations
* dm-types
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ require 'pathname'
require 'rubygems'
require 'rake'

gems = %w(dm-core dm-aggregates dm-migrations dm-serializer dm-timestamps dm-validations dm-cli dm-is-tree dm-observer dm-types)
gems = %w[ dm-core dm-aggregates dm-constraints dm-migrations dm-serializer dm-timestamps dm-validations dm-types ]

AUTHOR = 'Dan Kubb'
EMAIL = 'dan.kubb@gmail.com'
GEM_NAME = 'data_mapper'
GEM_VERSION = '0.9.11'
GEM_VERSION = '0.10.0'
GEM_DEPENDENCIES = [['dm-core', GEM_VERSION], *gems.collect { |g| [g, GEM_VERSION] }]
GEM_CLEAN = %w[ **/*.{gem,DS_Store} *.db doc/rdoc .config **/coverage cache ]
GEM_EXTRAS = { :has_rdoc => false }
Expand Down
4 changes: 2 additions & 2 deletions lib/data_mapper.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
require 'rubygems'

DEPENDENCIES = %w(dm-core dm-aggregates dm-migrations dm-serializer dm-timestamps dm-validations dm-cli dm-is-tree dm-observer dm-types)
DEPENDENCIES = %w[ dm-core dm-aggregates dm-constraints dm-migrations dm-serializer dm-timestamps dm-validations dm-types ]

DEPENDENCIES.each do |lib|
gem lib, '0.9.11'
gem lib, '0.10.0'
require lib
end

0 comments on commit 51e69fc

Please sign in to comment.