From 34a7f668259e54a9027f88321dff808f21556c41 Mon Sep 17 00:00:00 2001 From: Scott Barron Date: Fri, 7 Apr 2006 14:08:03 +0000 Subject: Not all file systems are case sensitive. Things like 'rake gem' were failing on such file systems because the Rakefile listed 'rakefile'. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4194 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionmailer/Rakefile | 2 +- actionpack/Rakefile | 2 +- activerecord/Rakefile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index 3cf143b1e1..92ca2befa0 100755 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -61,7 +61,7 @@ spec = Gem::Specification.new do |s| s.require_path = 'lib' s.autorequire = 'action_mailer' - s.files = [ "rakefile", "install.rb", "README", "CHANGELOG", "MIT-LICENSE" ] + s.files = [ "Rakefile", "install.rb", "README", "CHANGELOG", "MIT-LICENSE" ] s.files = s.files + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) } s.files = s.files + Dir.glob( "test/**/*" ).delete_if { |item| item.include?( "\.svn" ) } end diff --git a/actionpack/Rakefile b/actionpack/Rakefile index 2abdb816f7..d20299526c 100755 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -73,7 +73,7 @@ spec = Gem::Specification.new do |s| s.require_path = 'lib' s.autorequire = 'action_controller' - s.files = [ "rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG", "MIT-LICENSE", "examples/.htaccess" ] + s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG", "MIT-LICENSE", "examples/.htaccess" ] dist_dirs.each do |dir| s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) } end diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 4d842bff60..8c91e2a778 100755 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -18,7 +18,7 @@ RUBY_FORGE_PROJECT = "activerecord" RUBY_FORGE_USER = "webster132" PKG_FILES = FileList[ - "lib/**/*", "test/**/*", "examples/**/*", "doc/**/*", "[A-Z]*", "install.rb", "rakefile" + "lib/**/*", "test/**/*", "examples/**/*", "doc/**/*", "[A-Z]*", "install.rb", "Rakefile" ].exclude(/\bCVS\b|~$/) @@ -101,7 +101,7 @@ spec = Gem::Specification.new do |s| s.summary = "Implements the ActiveRecord pattern for ORM." s.description = %q{Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM. It ties database tables and classes together for business objects, like Customer or Subscription, that can find, save, and destroy themselves without resorting to manual SQL.} - s.files = [ "rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG" ] + s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG" ] dist_dirs.each do |dir| s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) } end -- cgit v1.2.3