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

Changeset 1023

Show
Ignore:
Timestamp:
03/27/05 14:10:42 (4 years ago)
Author:
david
Message:

Made ready for the release of 0.11.1

Files:

Legend:

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

    r997 r1023  
    1 *SVN* 
     1*0.8.1* (27th March, 2005) 
    22 
    33* Fixed that if charset was found that the end of a mime part declaration TMail would throw an error #919 [lon@speedymac.com] 
  • trunk/actionmailer/Rakefile

    r1021 r1023  
    99PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1010PKG_NAME      = 'actionmailer' 
    11 PKG_VERSION   = '0.8.0' + PKG_BUILD 
     11PKG_VERSION   = '0.8.1' + PKG_BUILD 
    1212PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1313 
     
    3333  rdoc.title    = "Action Mailer -- Easy email delivery and testing" 
    3434  rdoc.options << '--line-numbers --inline-source --main README' 
     35  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    3536  rdoc.rdoc_files.include('README', 'CHANGELOG') 
    3637  rdoc.rdoc_files.include('lib/action_mailer.rb') 
     
    5253  s.homepage = "http://www.rubyonrails.org" 
    5354 
    54   s.add_dependency('actionpack', '= 1.6.0' + PKG_BUILD) 
     55  s.add_dependency('actionpack', '= 1.7.0' + PKG_BUILD) 
    5556 
    5657  s.has_rdoc = true 
  • trunk/actionpack/CHANGELOG

    r1019 r1023  
    1 *SVN* 
     1*1.7.0* (27th March, 2005) 
    22 
    33* Added ActionController::Base.page_cache_extension for setting the page cache file extension (the default is .html) #903 [Andreas] 
  • trunk/actionpack/Rakefile

    r1021 r1023  
    99PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1010PKG_NAME      = 'actionpack' 
    11 PKG_VERSION   = '1.6.0' + PKG_BUILD 
     11PKG_VERSION   = '1.7.0' + PKG_BUILD 
    1212PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1313 
     
    3838  rdoc.title    = "Action Pack -- On rails from request to response" 
    3939  rdoc.options << '--line-numbers --inline-source --main README' 
     40  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    4041  rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') 
    4142  rdoc.rdoc_files.include('lib/**/*.rb') 
     
    6162  s.requirements << 'none' 
    6263 
    63   s.add_dependency('activesupport', '= 1.0.2' + PKG_BUILD) 
     64  s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD) 
    6465 
    6566  s.require_path = 'lib' 
  • trunk/actionwebservice/CHANGELOG

    r992 r1023  
    1 *0.7.0* (Unreleased
     1*0.6.2* (27th March, 2005
    22 
    33* Allow method declarations for direct dispatching to declare parameters as well. We treat an arity of < 0 or > 0 as an indication that we should send through parameters. Closes #939. 
    4    
     4 
     5 
    56*0.6.1* (22th March, 2005) 
    67 
  • trunk/actionwebservice/Rakefile

    r1021 r1023  
    1010PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1111PKG_NAME      = 'actionwebservice' 
    12 PKG_VERSION   = '0.6.1' + PKG_BUILD 
     12PKG_VERSION   = '0.6.2' + PKG_BUILD 
    1313PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}" 
    1414PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 
     
    3636  rdoc.title    = "Action Web Service -- Web services for Action Pack" 
    3737  rdoc.options << '--line-numbers --inline-source --main README --accessor class_inheritable_option=RW' 
     38  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    3839  rdoc.rdoc_files.include('README') 
    3940  rdoc.rdoc_files.include('CHANGELOG') 
     
    6263  s.homepage = "http://www.rubyonrails.org" 
    6364 
    64   s.add_dependency('actionpack', '= 1.6.0' + PKG_BUILD) 
    65   s.add_dependency('activerecord', '= 1.9.0' + PKG_BUILD) 
    66   s.add_dependency('activesupport', '= 1.0.2' + PKG_BUILD) 
     65  s.add_dependency('actionpack', '= 1.7.0' + PKG_BUILD) 
     66  s.add_dependency('activerecord', '= 1.9.1' + PKG_BUILD) 
     67  s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD) 
    6768 
    6869  s.has_rdoc = true 
  • trunk/activerecord/CHANGELOG

    r990 r1023  
    1 *SVN* 
     1*1.9.1* (27th March, 2005) 
     2 
     3* Fixed that Active Record objects with float attribute could not be cloned #808 
    24 
    35* Fixed that MissingSourceFile's wasn't properly detected in production mode #925 [Nicholas Seckar] 
  • trunk/activerecord/Rakefile

    r1021 r1023  
    99PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1010PKG_NAME      = 'activerecord' 
    11 PKG_VERSION   = '1.9.0' + PKG_BUILD 
     11PKG_VERSION   = '1.9.1' + PKG_BUILD 
    1212PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1313 
     
    3939} 
    4040 
    41 Rake::TestTask.new("test_postgresql") { |t| 
    42   t.libs << "test" << "test/connections/native_postgresql" 
    43   t.pattern = 'test/*_test.rb' 
    44   t.verbose = true 
    45 
    46  
    47 Rake::TestTask.new("test_sqlite") { |t| 
    48   t.libs << "test" << "test/connections/native_sqlite" 
    49   t.pattern = 'test/*_test.rb' 
    50   t.verbose = true 
    51 
    52  
    53 Rake::TestTask.new("test_sqlite3") { |t| 
    54   t.libs << "test" << "test/connections/native_sqlite3" 
    55   t.pattern = 'test/*_test.rb' 
    56   t.verbose = true 
    57 
    58  
    59 Rake::TestTask.new("test_sqlserver") { |t| 
    60   t.libs << "test" << "test/connections/native_sqlserver" 
    61   t.pattern = 'test/*_test.rb' 
    62   t.verbose = true 
    63 
    64  
    65 Rake::TestTask.new("test_db2") { |t| 
    66   t.libs << "test" << "test/connections/native_db2" 
    67   t.pattern = 'test/*_test.rb' 
    68   t.verbose = true 
    69 
    70  
    71 Rake::TestTask.new("test_oracle") { |t| 
    72   t.libs << "test" << "test/connections/native_oracle" 
    73   t.pattern = 'test/*_test.rb' 
    74   t.verbose = true 
    75 
    76  
    77 Rake::TestTask.new("test_oci") { |t| 
    78   t.libs << "test" << "test/connections/native_oci" 
    79   t.pattern = 'test/*_test.rb' 
    80   t.verbose = true 
    81 
     41for adapter in %( postgresql sqlite sqlite3 sqlserver db2 oci ) 
     42  Rake::TestTask.new("test_#{adapter}") { |t| 
     43    t.libs << "test" << "test/connections/native_#{adapter}" 
     44    t.pattern = 'test/*_test.rb' 
     45    t.verbose = true 
     46  } 
     47end 
     48 
    8249 
    8350# Generate the RDoc documentation 
     
    8754  rdoc.title    = "Active Record -- Object-relation mapping put on rails" 
    8855  rdoc.options << '--line-numbers --inline-source --accessor cattr_accessor=object' 
     56  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    8957  rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') 
    9058  rdoc.rdoc_files.include('lib/**/*.rb') 
     
    10977  end 
    11078   
    111   s.add_dependency('activesupport', '= 1.0.2' + PKG_BUILD) 
     79  s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD) 
    11280 
    11381  s.files.delete "test/fixtures/fixture_database.sqlite" 
  • trunk/activesupport/CHANGELOG

    r998 r1023  
    1 *SVN* 
     1*1.0.3* (27th March, 2005) 
    22 
    33* Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat] 
     
    1212 
    1313 
    14 *1.0.2* 
     14*1.0.2* (22th March, 2005) 
    1515 
    1616* Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman. 
  • trunk/activesupport/Rakefile

    r1021 r1023  
    66PKG_BUILD     = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    77PKG_NAME      = 'activesupport' 
    8 PKG_VERSION   = '1.0.2' + PKG_BUILD 
     8PKG_VERSION   = '1.0.3' + PKG_BUILD 
    99PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 
    1010 
     
    2828  rdoc.title    = "Active Support -- Utility classes and standard library extensions from Rails" 
    2929  rdoc.options << '--line-numbers --inline-source --main README' 
     30  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    3031  rdoc.rdoc_files.include('README', 'CHANGELOG') 
    3132  rdoc.rdoc_files.include('lib/active_support.rb') 
  • trunk/railties/CHANGELOG

    r981 r1023  
    1 *SVN* 
     1*0.11.1* (27th March, 2005) 
    22 
    33* Fixed the dispatch.fcgi use of a logger 
     4 
     5* Upgraded to Active Record 1.9.1, Action Pack 1.7.0, Action Mailer 0.8.1, Action Web Service 0.6.2, Active Support 1.0.3 
    46 
    57 
  • trunk/railties/fresh_rakefile

    r1021 r1023  
    7272Rake::RDocTask.new("apidoc") { |rdoc| 
    7373  rdoc.rdoc_dir = 'doc/api' 
    74   rdoc.template = 'jamis.rb' if ENV['template'] == 'jamis' 
     74  rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 
    7575  rdoc.title    = "Rails Framework Documentation" 
    7676  rdoc.options << '--line-numbers --inline-source' 
  • trunk/railties/Rakefile

    r1021 r1023  
    1010PKG_BUILD       = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 
    1111PKG_NAME        = 'rails' 
    12 PKG_VERSION     = '0.11.0' + PKG_BUILD 
     12PKG_VERSION     = '0.11.1' + PKG_BUILD 
    1313PKG_FILE_NAME   = "#{PKG_NAME}-#{PKG_VERSION}" 
    1414PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" 
     
    240240 
    241241  s.add_dependency('rake', '>= 0.5.0') 
    242   s.add_dependency('activesupport',    '= 1.0.2' + PKG_BUILD) 
    243   s.add_dependency('activerecord',     '= 1.9.0' + PKG_BUILD) 
    244   s.add_dependency('actionpack',       '= 1.6.0' + PKG_BUILD) 
    245   s.add_dependency('actionmailer',     '= 0.8.0' + PKG_BUILD) 
    246   s.add_dependency('actionwebservice', '= 0.6.1' + PKG_BUILD) 
     242  s.add_dependency('activesupport',    '= 1.0.3' + PKG_BUILD) 
     243  s.add_dependency('activerecord',     '= 1.9.1' + PKG_BUILD) 
     244  s.add_dependency('actionpack',       '= 1.7.0' + PKG_BUILD) 
     245  s.add_dependency('actionmailer',     '= 0.8.1' + PKG_BUILD) 
     246  s.add_dependency('actionwebservice', '= 0.6.2' + PKG_BUILD) 
    247247 
    248248  s.rdoc_options << '--exclude' << '.'