Changeset 1023
- Timestamp:
- 03/27/05 14:10:42 (4 years ago)
- Files:
-
- trunk/actionmailer/CHANGELOG (modified) (1 diff)
- trunk/actionmailer/Rakefile (modified) (3 diffs)
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/Rakefile (modified) (3 diffs)
- trunk/actionwebservice/CHANGELOG (modified) (1 diff)
- trunk/actionwebservice/Rakefile (modified) (3 diffs)
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/Rakefile (modified) (4 diffs)
- trunk/activesupport/CHANGELOG (modified) (2 diffs)
- trunk/activesupport/Rakefile (modified) (2 diffs)
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/fresh_rakefile (modified) (1 diff)
- trunk/railties/Rakefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionmailer/CHANGELOG
r997 r1023 1 * SVN*1 *0.8.1* (27th March, 2005) 2 2 3 3 * 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 9 9 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 10 10 PKG_NAME = 'actionmailer' 11 PKG_VERSION = '0.8. 0' + PKG_BUILD11 PKG_VERSION = '0.8.1' + PKG_BUILD 12 12 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 13 13 … … 33 33 rdoc.title = "Action Mailer -- Easy email delivery and testing" 34 34 rdoc.options << '--line-numbers --inline-source --main README' 35 rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 35 36 rdoc.rdoc_files.include('README', 'CHANGELOG') 36 37 rdoc.rdoc_files.include('lib/action_mailer.rb') … … 52 53 s.homepage = "http://www.rubyonrails.org" 53 54 54 s.add_dependency('actionpack', '= 1. 6.0' + PKG_BUILD)55 s.add_dependency('actionpack', '= 1.7.0' + PKG_BUILD) 55 56 56 57 s.has_rdoc = true trunk/actionpack/CHANGELOG
r1019 r1023 1 * SVN*1 *1.7.0* (27th March, 2005) 2 2 3 3 * Added ActionController::Base.page_cache_extension for setting the page cache file extension (the default is .html) #903 [Andreas] trunk/actionpack/Rakefile
r1021 r1023 9 9 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 10 10 PKG_NAME = 'actionpack' 11 PKG_VERSION = '1. 6.0' + PKG_BUILD11 PKG_VERSION = '1.7.0' + PKG_BUILD 12 12 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 13 13 … … 38 38 rdoc.title = "Action Pack -- On rails from request to response" 39 39 rdoc.options << '--line-numbers --inline-source --main README' 40 rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 40 41 rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') 41 42 rdoc.rdoc_files.include('lib/**/*.rb') … … 61 62 s.requirements << 'none' 62 63 63 s.add_dependency('activesupport', '= 1.0. 2' + PKG_BUILD)64 s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD) 64 65 65 66 s.require_path = 'lib' trunk/actionwebservice/CHANGELOG
r992 r1023 1 *0. 7.0* (Unreleased)1 *0.6.2* (27th March, 2005) 2 2 3 3 * 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 5 6 *0.6.1* (22th March, 2005) 6 7 trunk/actionwebservice/Rakefile
r1021 r1023 10 10 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 11 11 PKG_NAME = 'actionwebservice' 12 PKG_VERSION = '0.6. 1' + PKG_BUILD12 PKG_VERSION = '0.6.2' + PKG_BUILD 13 13 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 14 14 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" … … 36 36 rdoc.title = "Action Web Service -- Web services for Action Pack" 37 37 rdoc.options << '--line-numbers --inline-source --main README --accessor class_inheritable_option=RW' 38 rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 38 39 rdoc.rdoc_files.include('README') 39 40 rdoc.rdoc_files.include('CHANGELOG') … … 62 63 s.homepage = "http://www.rubyonrails.org" 63 64 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) 67 68 68 69 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 2 4 3 5 * Fixed that MissingSourceFile's wasn't properly detected in production mode #925 [Nicholas Seckar] trunk/activerecord/Rakefile
r1021 r1023 9 9 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 10 10 PKG_NAME = 'activerecord' 11 PKG_VERSION = '1.9. 0' + PKG_BUILD11 PKG_VERSION = '1.9.1' + PKG_BUILD 12 12 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 13 13 … … 39 39 } 40 40 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 } 41 for 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 } 47 end 48 82 49 83 50 # Generate the RDoc documentation … … 87 54 rdoc.title = "Active Record -- Object-relation mapping put on rails" 88 55 rdoc.options << '--line-numbers --inline-source --accessor cattr_accessor=object' 56 rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 89 57 rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG') 90 58 rdoc.rdoc_files.include('lib/**/*.rb') … … 109 77 end 110 78 111 s.add_dependency('activesupport', '= 1.0. 2' + PKG_BUILD)79 s.add_dependency('activesupport', '= 1.0.3' + PKG_BUILD) 112 80 113 81 s.files.delete "test/fixtures/fixture_database.sqlite" trunk/activesupport/CHANGELOG
r998 r1023 1 * SVN*1 *1.0.3* (27th March, 2005) 2 2 3 3 * Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat] … … 12 12 13 13 14 *1.0.2* 14 *1.0.2* (22th March, 2005) 15 15 16 16 * Added Kernel#returning -- a Ruby-ized realization of the K combinator, courtesy of Mikael Brockman. trunk/activesupport/Rakefile
r1021 r1023 6 6 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 7 7 PKG_NAME = 'activesupport' 8 PKG_VERSION = '1.0. 2' + PKG_BUILD8 PKG_VERSION = '1.0.3' + PKG_BUILD 9 9 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 10 10 … … 28 28 rdoc.title = "Active Support -- Utility classes and standard library extensions from Rails" 29 29 rdoc.options << '--line-numbers --inline-source --main README' 30 rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 30 31 rdoc.rdoc_files.include('README', 'CHANGELOG') 31 32 rdoc.rdoc_files.include('lib/active_support.rb') trunk/railties/CHANGELOG
r981 r1023 1 * SVN*1 *0.11.1* (27th March, 2005) 2 2 3 3 * 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 4 6 5 7 trunk/railties/fresh_rakefile
r1021 r1023 72 72 Rake::RDocTask.new("apidoc") { |rdoc| 73 73 rdoc.rdoc_dir = 'doc/api' 74 rdoc.template = 'jamis.rb' if ENV['template'] == 'jamis'74 rdoc.template = "#{ENV['template']}.rb" if ENV['template'] 75 75 rdoc.title = "Rails Framework Documentation" 76 76 rdoc.options << '--line-numbers --inline-source' trunk/railties/Rakefile
r1021 r1023 10 10 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 11 11 PKG_NAME = 'rails' 12 PKG_VERSION = '0.11. 0' + PKG_BUILD12 PKG_VERSION = '0.11.1' + PKG_BUILD 13 13 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 14 14 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" … … 240 240 241 241 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) 247 247 248 248 s.rdoc_options << '--exclude' << '.'