From 84eb255c500fcf3f70aa7554e8b7869616e18d6e Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Mon, 10 Oct 2005 14:35:59 +0000 Subject: [PATCH] move lib/version.rb to lib/active_support/version.rb git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2517 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activesupport/Rakefile | 2 +- activesupport/lib/{ => active_support}/version.rb | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename activesupport/lib/{ => active_support}/version.rb (100%) diff --git a/activesupport/Rakefile b/activesupport/Rakefile index 25a2124325..af9ddee98c 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -2,7 +2,7 @@ require 'rake/testtask' require 'rake/rdoctask' require 'rake/gempackagetask' require 'rake/contrib/rubyforgepublisher' -require File.join(File.dirname(__FILE__), 'lib', 'version') +require File.join(File.dirname(__FILE__), 'lib', 'active_support', 'version') PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' PKG_NAME = 'activesupport' diff --git a/activesupport/lib/version.rb b/activesupport/lib/active_support/version.rb similarity index 100% rename from activesupport/lib/version.rb rename to activesupport/lib/active_support/version.rb -- GitLab