install.rb in actionpack-1.13.6 vs install.rb in actionpack-2.0.0

- old
+ new

@@ -2,11 +2,11 @@ require 'find' require 'ftools' include Config -# this was adapted from rdoc's install.rb by ways of Log4r +# this was adapted from rdoc's install.rb by way of Log4r $sitedir = CONFIG["sitelibdir"] unless $sitedir version = CONFIG["MAJOR"] + "." + CONFIG["MINOR"] $libdir = File.join(CONFIG["libdir"], "ruby", version) @@ -16,10 +16,10 @@ elsif $sitedir !~ Regexp.quote(version) $sitedir = File.join($sitedir, version) end end -# the acual gruntwork +# the actual gruntwork Dir.chdir("lib") Find.find("action_controller", "action_controller.rb", "action_view", "action_view.rb") { |f| if f[-3..-1] == ".rb" File::install(f, File.join($sitedir, *f.split(/\//)), 0644, true) \ No newline at end of file