Vendoring Rails 2.3.5

This commit is contained in:
Eric Allen 2009-12-07 12:42:42 -05:00
parent 3e83d19299
commit f8779795ce
943 changed files with 56503 additions and 61351 deletions

View file

@ -54,15 +54,8 @@ namespace :doc do
desc "Generate Rails guides"
task :guides do
source = File.join(RAILTIES_PATH, "doc/guides")
destination = File.join(RAILS_ROOT, "doc/guides")
FileUtils.rm_r(destination) if File.directory?(destination)
FileUtils.mkdir(destination)
FileUtils.cp_r File.join(source, 'html/.'), File.join(destination)
# Copy images and css files to html directory. These dirs are in .gitigore and shouldn't be source controlled.
FileUtils.cp_r File.join(source, 'source/images'), File.join(destination)
FileUtils.cp_r File.join(source, 'source/stylesheets'), File.join(destination, 'stylesheets')
require File.join(RAILTIES_PATH, "guides/rails_guides")
RailsGuides::Generator.new(File.join(RAILS_ROOT, "doc/guides")).generate
end
namespace :plugins do