Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7424

Show
Ignore:
Timestamp:
09/09/07 17:55:26 (1 year ago)
Author:
david
Message:

The examples are outdated and misleading

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/Rakefile

    r6881 r7424  
    6060 
    6161# Create compressed packages 
    62 dist_dirs = [ "lib", "test", "examples"
     62dist_dirs = [ "lib", "test"
    6363 
    6464spec = Gem::Specification.new do |s| 
     
    8282  s.autorequire = 'action_controller' 
    8383 
    84   s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG", "MIT-LICENSE", "examples/.htaccess"
     84  s.files = [ "Rakefile", "install.rb", "README", "RUNNING_UNIT_TESTS", "CHANGELOG", "MIT-LICENSE"
    8585  dist_dirs.each do |dir| 
    8686    s.files = s.files + Dir.glob( "#{dir}/**/*" ).delete_if { |item| item.include?( "\.svn" ) } 
    8787  end 
    88   s.files.delete "examples/benchmark.rb" 
    89   s.files.delete "examples/benchmark_with_ar.fcgi" 
    9088end 
    9189