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

Commit

Permalink
Updated dependency to be 0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Kubb committed Dec 8, 2008
1 parent c88c686 commit 695a7d4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
4 changes: 4 additions & 0 deletions History.txt
@@ -1 +1,5 @@
=== 0.9.8 / 2008-12-07

* 1 minor enhancement:

* Updated gem dependencies to 0.9.8
26 changes: 13 additions & 13 deletions Rakefile
Expand Up @@ -5,18 +5,18 @@ 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)

AUTHOR = "Sam Smoot"
EMAIL = "ssmoot@gmail.com"
GEM_NAME = "data_mapper"
GEM_VERSION = "0.9.7"
GEM_DEPENDENCIES = [["dm-core", GEM_VERSION], *gems.collect { |g| [g, GEM_VERSION] }]
GEM_CLEAN = ['**/*.{gem,DS_Store}', '*.db', "doc/rdoc", ".config", "**/coverage", "cache", "lib/merb-more.rb"]
AUTHOR = 'Sam Smoot'
EMAIL = 'ssmoot@gmail.com'
GEM_NAME = 'data_mapper'
GEM_VERSION = '0.9.8'
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 }

PROJECT_NAME = "datamapper"
PROJECT_URL = "http://datamapper.org"
PROJECT_DESCRIPTION = "Faster, Better, Simpler."
PROJECT_SUMMARY = "An Object/Relational Mapper for Ruby"
PROJECT_NAME = 'datamapper'
PROJECT_URL = 'http://datamapper.org'
PROJECT_DESCRIPTION = 'Faster, Better, Simpler.'
PROJECT_SUMMARY = 'An Object/Relational Mapper for Ruby'


WINDOWS = (RUBY_PLATFORM =~ /win32|mingw|bccwin|cygwin/) rescue nil
Expand All @@ -31,9 +31,9 @@ end

require 'hoe'

@config_file = "~/.rubyforge/user-config.yml"
@config_file = '~/.rubyforge/user-config.yml'
@config = nil
RUBYFORGE_USERNAME = "unknown"
RUBYFORGE_USERNAME = 'unknown'
def rubyforge_username
unless @config
begin
Expand All @@ -47,7 +47,7 @@ Run 'rubyforge setup' to prepare your env for access to Rubyforge
exit
end
end
RUBYFORGE_USERNAME.replace @config["username"]
RUBYFORGE_USERNAME.replace @config['username']
end

hoe = Hoe.new(GEM_NAME, GEM_VERSION) do |p|
Expand Down
2 changes: 1 addition & 1 deletion lib/data_mapper.rb
Expand Up @@ -3,6 +3,6 @@
DEPENDENCIES = %w(dm-core dm-aggregates dm-migrations dm-serializer dm-timestamps dm-validations dm-cli dm-is-tree dm-observer dm-types)

DEPENDENCIES.each do |lib|
gem lib, '0.9.7'
gem lib, '0.9.8'
require lib
end

0 comments on commit 695a7d4

Please sign in to comment.