Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 1094

Show
Ignore:
Timestamp:
04/05/05 16:54:17 (3 years ago)
Author:
david
Message:

Added Fixnum#even? and Fixnum#odd?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activesupport/CHANGELOG

    r1057 r1094  
    11*SVN* 
     2 
     3* Added Fixnum#even? and Fixnum#odd? 
    24 
    35* 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  
    5959desc "Publish the beta gem" 
    6060task :pgem => [:package] do 
    61   Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
    62   `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'` 
    6363end 
    6464 
    6565desc "Publish the API documentation" 
    6666task :pdoc => [:rdoc] do  
    67   Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/as", "doc").upload 
     67  Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/as", "doc").upload 
    6868end 
    6969