aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2010-03-01 21:55:43 -0500
committerJeremy Kemper <jeremy@bitsweat.net>2010-03-01 19:00:19 -0800
commit11db694e0b825e3077e7545b08c1bf975997021f (patch)
tree4240c3072361a540ad49f53e47b517dc088d7d9b /activerecord
parent8bb162f008bb8e3a66b4a0d98b9f56cad45a4ab3 (diff)
downloadrails-11db694e0b825e3077e7545b08c1bf975997021f.tar.gz
rails-11db694e0b825e3077e7545b08c1bf975997021f.tar.bz2
rails-11db694e0b825e3077e7545b08c1bf975997021f.zip
Remove cruft in the gem packaging and release code
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/Rakefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/activerecord/Rakefile b/activerecord/Rakefile
index 8a414a751b..c53215e75e 100644
--- a/activerecord/Rakefile
+++ b/activerecord/Rakefile
@@ -8,22 +8,8 @@ require 'rake/gempackagetask'
require File.join(File.dirname(__FILE__), 'lib', 'active_record', 'version')
require File.expand_path(File.dirname(__FILE__)) + "/test/config"
-PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
-PKG_NAME = 'activerecord'
-PKG_VERSION = ActiveRecord::VERSION::STRING + PKG_BUILD
-PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
-
-RELEASE_NAME = "REL #{PKG_VERSION}"
-
-RUBY_FORGE_PROJECT = "activerecord"
-RUBY_FORGE_USER = "webster132"
-
MYSQL_DB_USER = 'rails'
-PKG_FILES = FileList[
- "lib/**/*", "test/**/*", "examples/**/*", "doc/**/*", "[A-Z]*", "install.rb", "Rakefile"
-].exclude(/\bCVS\b|~$/)
-
def run_without_aborting(*tasks)
errors = []