Changeset 1310
- Timestamp:
- 05/19/05 16:42:47 (3 years ago)
- Files:
-
- trunk/actionmailer/Rakefile (modified) (1 diff)
- trunk/actionpack/Rakefile (modified) (1 diff)
- trunk/actionwebservice/Rakefile (modified) (2 diffs)
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/Rakefile (modified) (1 diff)
- trunk/activesupport/CHANGELOG (modified) (1 diff)
- trunk/activesupport/Rakefile (modified) (1 diff)
- trunk/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionmailer/Rakefile
r1230 r1310 74 74 desc "Publish the API documentation" 75 75 task :pgem => [:package] do 76 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails. com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload76 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 77 77 end 78 78 79 79 desc "Publish the API documentation" 80 80 task :pdoc => [:rdoc] do 81 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails. com", "public_html/am", "doc").upload81 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/am", "doc").upload 82 82 end 83 83 trunk/actionpack/Rakefile
r1230 r1310 110 110 desc "Publish the API documentation" 111 111 task :pgem => [:package] do 112 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails. com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload113 `ssh davidhh@wrath.rubyonrails. com'./gemupdate.sh'`112 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 113 `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` 114 114 end 115 115 116 116 desc "Publish the API documentation" 117 117 task :pdoc => [:rdoc] do 118 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails. com", "public_html/ap", "doc").upload118 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/ap", "doc").upload 119 119 end 120 120 trunk/actionwebservice/Rakefile
r1230 r1310 87 87 desc "Publish the API documentation" 88 88 task :pgem => [:package] do 89 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails. com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload90 `ssh davidhh@wrath.rubyonrails. com'./gemupdate.sh'`89 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 90 `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` 91 91 end 92 92 … … 94 94 desc "Publish the API documentation" 95 95 task :pdoc => [:rdoc] do 96 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails. com", "public_html/aws", "doc").upload96 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/aws", "doc").upload 97 97 end 98 98 trunk/activerecord/CHANGELOG
r1274 r1310 1 1 *SVN* 2 3 * Fixed that clone would break when an aggregate had the same name as one of its attributes #1307 [bitsweat] 2 4 3 5 * Changed that destroying an object will only freeze the attributes hash, which keeps the object from having attributes changed (as that wouldn't make sense), but allows for the querying of associations after it has been destroyed. trunk/activerecord/Rakefile
r1264 r1310 137 137 desc "Publish the beta gem" 138 138 task :pgem => [:package] do 139 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails. com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload140 `ssh davidhh@wrath.rubyonrails. com'./gemupdate.sh'`139 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 140 `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` 141 141 end 142 142 143 143 desc "Publish the API documentation" 144 144 task :pdoc => [:rdoc] do 145 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails. com", "public_html/ar", "doc").upload145 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/ar", "doc").upload 146 146 end 147 147 trunk/activesupport/CHANGELOG
r1271 r1310 1 1 *SVN* 2 3 * Fixed that Time.local(2005,12).months_since(1) would raise "ArgumentError: argument out of range" #1311 [jhahn@niveon.com] 2 4 3 5 * Added silencing to the default Logger class trunk/activesupport/Rakefile
r1217 r1310 59 59 desc "Publish the beta gem" 60 60 task :pgem => [:package] do 61 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails. com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload62 `ssh davidhh@wrath.rubyonrails. com'./gemupdate.sh'`61 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 62 `ssh davidhh@wrath.rubyonrails.org './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@wrath.rubyonrails. com", "public_html/as", "doc").upload67 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.org", "public_html/as", "doc").upload 68 68 end 69 69 trunk/railties/Rakefile
r1261 r1310 269 269 desc "Publish the API documentation" 270 270 task :pgem => [:gem] do 271 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails. com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload272 `ssh davidhh@wrath.rubyonrails. com'./gemupdate.sh'`271 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 272 `ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'` 273 273 end 274 274