aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/Rakefile
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-10-07 01:05:42 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-10-07 01:05:42 +0000
commit1f5c4365a7429d7f5de0f515b89761434a159d99 (patch)
tree9862da02a946e3fde47803216a23fbe18a4c4a77 /activesupport/Rakefile
parent52ca5dad1ecf64ff508a4f16202171693921890f (diff)
downloadrails-1f5c4365a7429d7f5de0f515b89761434a159d99.tar.gz
rails-1f5c4365a7429d7f5de0f515b89761434a159d99.tar.bz2
rails-1f5c4365a7429d7f5de0f515b89761434a159d99.zip
Unbundle Builder in favor of a gem dependency.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7761 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/Rakefile')
-rw-r--r--activesupport/Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 65e928e811..a27f8dead4 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -47,6 +47,8 @@ spec = Gem::Specification.new do |s|
s.require_path = 'lib'
s.has_rdoc = true
+ s.add_dependency('builder', '~> 2.1.2')
+
s.author = "David Heinemeier Hansson"
s.email = "david@loudthinking.com"
s.homepage = "http://www.rubyonrails.org"
@@ -79,4 +81,4 @@ task :release => [ :package ] do
rubyforge = RubyForge.new
rubyforge.login
rubyforge.add_release(PKG_NAME, PKG_NAME, "REL #{PKG_VERSION}", *packages)
-end \ No newline at end of file
+end