public
Fork of rails/rails
Description: Ruby on Rails
Homepage: http://rubyonrails.org
Clone URL: git://github.com/JackDanger/rails.git
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
rubyist (author)
Fri Apr 07 07:08:03 -0700 2006
commit  34a7f668259e54a9027f88321dff808f21556c41
tree    73163a33fbb100755f731057b4397ce707eee5ab
parent  9466211d42ce7ecd921ef6804e77d199e1677d89
...
61
62
63
64
 
65
66
67
...
61
62
63
 
64
65
66
67
0
@@ -61,7 +61,7 @@ spec = Gem::Specification.new do |s|
0
   s.require_path = 'lib'
0
   s.autorequire = 'action_mailer'
0
 
0
- s.files = [ "rakefile", "install.rb", "README", "CHANGELOG", "MIT-LICENSE" ]
0
+ s.files = [ "Rakefile", "install.rb", "README", "CHANGELOG", "MIT-LICENSE" ]
0
   s.files = s.files + Dir.glob( "lib/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
   s.files = s.files + Dir.glob( "test/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
 end
...
73
74
75
76
 
77
78
79
...
73
74
75
 
76
77
78
79
0
@@ -73,7 +73,7 @@ spec = Gem::Specification.new do |s|
0
   s.require_path = 'lib'
0
   s.autorequire = 'action_controller'
0
 
0
- s.files = [ "rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG", "MIT-LICENSE", "examples/.htaccess" ]
0
+ s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG", "MIT-LICENSE", "examples/.htaccess" ]
0
   dist_dirs.each do |dir|
0
     s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
   end
...
18
19
20
21
 
22
23
24
...
101
102
103
104
 
105
106
107
...
18
19
20
 
21
22
23
24
...
101
102
103
 
104
105
106
107
0
@@ -18,7 +18,7 @@ RUBY_FORGE_PROJECT = "activerecord"
0
 RUBY_FORGE_USER = "webster132"
0
 
0
 PKG_FILES = FileList[
0
- "lib/**/*", "test/**/*", "examples/**/*", "doc/**/*", "[A-Z]*", "install.rb", "rakefile"
0
+ "lib/**/*", "test/**/*", "examples/**/*", "doc/**/*", "[A-Z]*", "install.rb", "Rakefile"
0
 ].exclude(/\bCVS\b|~$/)
0
 
0
 
0
@@ -101,7 +101,7 @@ spec = Gem::Specification.new do |s|
0
   s.summary = "Implements the ActiveRecord pattern for ORM."
0
   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.}
0
 
0
- s.files = [ "rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG" ]
0
+ s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG" ]
0
   dist_dirs.each do |dir|
0
     s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) }
0
   end

Comments

    No one has commented yet.