diff options
author | Scott Barron <scott@elitists.net> | 2006-04-07 14:08:03 +0000 |
---|---|---|
committer | Scott Barron <scott@elitists.net> | 2006-04-07 14:08:03 +0000 |
commit | 34a7f668259e54a9027f88321dff808f21556c41 (patch) | |
tree | 73163a33fbb100755f731057b4397ce707eee5ab /actionmailer | |
parent | 9466211d42ce7ecd921ef6804e77d199e1677d89 (diff) | |
download | rails-34a7f668259e54a9027f88321dff808f21556c41.tar.gz rails-34a7f668259e54a9027f88321dff808f21556c41.tar.bz2 rails-34a7f668259e54a9027f88321dff808f21556c41.zip |
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
Diffstat (limited to 'actionmailer')
-rwxr-xr-x | actionmailer/Rakefile | 2 |
1 files changed, 1 insertions, 1 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 |