Changeset 1102
- Timestamp:
- 04/07/05 06:20:54 (4 years ago)
- Files:
-
- trunk/actionmailer/Rakefile (modified) (1 diff)
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/Rakefile (modified) (1 diff)
- trunk/actionwebservice/Rakefile (modified) (2 diffs)
- trunk/activerecord/test/fixtures/db_definitions/mysql.drop.sql (modified) (1 diff)
- trunk/activerecord/test/fixtures/db_definitions/mysql.sql (modified) (1 diff)
- trunk/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionmailer/Rakefile
r1023 r1102 74 74 desc "Publish the API documentation" 75 75 task :pgem => [:package] do 76 Rake::SshFilePublisher.new("davidhh@ comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload76 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "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@ comox.textdrive.com", "public_html/am", "doc").upload81 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/am", "doc").upload 82 82 end 83 83 trunk/actionpack/CHANGELOG
r1081 r1102 1 1 *SVN* 2 3 * Fixed autolinking to work better in more cases #1013 [Jamis Buck] 4 5 * Added the possible of using symbols in form helpers that relate to instance variables like text_field :account, :name in addition to text_field "account", "name"' 2 6 3 7 * Fixed javascript_include_tag to output type instead of language and conform to XHTML #1018 [Rick Olson] trunk/actionpack/Rakefile
r1023 r1102 86 86 desc "Publish the API documentation" 87 87 task :pgem => [:package] do 88 Rake::SshFilePublisher.new("davidhh@ comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload89 `ssh davidhh@ comox.textdrive.com './gemupdate.sh'`88 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 89 `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'` 90 90 end 91 91 92 92 desc "Publish the API documentation" 93 93 task :pdoc => [:rdoc] do 94 Rake::SshDirPublisher.new("davidhh@ comox.textdrive.com", "public_html/ap", "doc").upload94 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/ap", "doc").upload 95 95 end 96 96 trunk/actionwebservice/Rakefile
r1090 r1102 87 87 desc "Publish the API documentation" 88 88 task :pgem => [:package] do 89 Rake::SshFilePublisher.new("davidhh@ comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload90 `ssh davidhh@ comox.textdrive.com './gemupdate.sh'`89 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 90 `ssh davidhh@wrath.rubyonrails.com './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@ comox.textdrive.com", "public_html/aws", "doc").upload96 Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/aws", "doc").upload 97 97 end 98 98 trunk/activerecord/test/fixtures/db_definitions/mysql.drop.sql
r719 r1102 16 16 DROP TABLE binaries; 17 17 DROP TABLE computers; 18 DROP TABLE posts; 19 DROP TABLE comments; 20 DROP TABLE authors; 18 21 trunk/activerecord/test/fixtures/db_definitions/mysql.sql
r1054 r1102 130 130 ) TYPE=InnoDB; 131 131 132 CREATE TABLE `posts` ( 133 `id` INTEGER NOT NULL PRIMARY KEY, 134 `author_id` INTEGER NOT NULL, 135 `title` VARCHAR(255) NOT NULL, 136 `body` TEXT NOT NULL 137 ) TYPE=InnoDB; 138 139 CREATE TABLE `comments` ( 140 `id` INTEGER NOT NULL PRIMARY KEY, 141 `post_id` INTEGER NOT NULL, 142 `body` TEXT NOT NULL 143 ) TYPE=InnoDB; 144 145 CREATE TABLE `authors` ( 146 `id` INTEGER NOT NULL PRIMARY KEY, 147 `name` VARCHAR(255) NOT NULL 148 ) TYPE=InnoDB; 149 trunk/railties/Rakefile
r1024 r1102 269 269 desc "Publish the API documentation" 270 270 task :pgem => [:gem] do 271 Rake::SshFilePublisher.new("davidhh@ comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload272 `ssh davidhh@ comox.textdrive.com './gemupdate.sh'`271 Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 272 `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'` 273 273 end 274 274