Changeset 1094
- Timestamp:
- 04/05/05 16:54:17 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activesupport/CHANGELOG
r1057 r1094 1 1 *SVN* 2 3 * Added Fixnum#even? and Fixnum#odd? 2 4 3 5 * Fixed problem with classes being required twice. Object#const_missing now uses require_dependency to load files. It used to use require_or_load which would cause models to be loaded twice, which was not good for validations and other class methods #971 [Nicholas Seckar] trunk/activesupport/Rakefile
r1023 r1094 59 59 desc "Publish the beta gem" 60 60 task :pgem => [:package] do 61 Rake::SshFilePublisher.new("davidhh@ comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload62 `ssh davidhh@ comox.textdrive.com './gemupdate.sh'`61 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 62 `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'` 63 63 end 64 64 65 65 desc "Publish the API documentation" 66 66 task :pdoc => [:rdoc] do 67 Rake::SshDirPublisher.new("davidhh@ comox.textdrive.com", "public_html/as", "doc").upload67 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/as", "doc").upload 68 68 end 69 69