Changeset 874
- Timestamp:
- 03/07/05 01:50:58 (4 years ago)
- Files:
-
- trunk/actionmailer/CHANGELOG (modified) (1 diff)
- trunk/actionmailer/Rakefile (modified) (2 diffs)
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/Rakefile (modified) (2 diffs)
- trunk/actionwebservice/CHANGELOG (modified) (1 diff)
- trunk/actionwebservice/Rakefile (modified) (2 diffs)
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activesupport/CHANGELOG (modified) (1 diff)
- trunk/activesupport/Rakefile (modified) (1 diff)
- trunk/railties/CHANGELOG (modified) (2 diffs)
- trunk/railties/html/index.html (modified) (1 diff)
- trunk/railties/Rakefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionmailer/CHANGELOG
r796 r874 1 *0.7.1* (7th March, 2005) 2 3 * Bind to newest Action Pack (1.5.1) 4 5 1 6 *0.7.0* (24th February, 2005) 2 7 trunk/actionmailer/Rakefile
r795 r874 9 9 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 10 10 PKG_NAME = 'actionmailer' 11 PKG_VERSION = '0.7. 0' + PKG_BUILD11 PKG_VERSION = '0.7.1' + PKG_BUILD 12 12 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 13 13 … … 51 51 s.homepage = "http://www.rubyonrails.org" 52 52 53 s.add_dependency('actionpack', '= 1.5. 0' + PKG_BUILD)53 s.add_dependency('actionpack', '= 1.5.1' + PKG_BUILD) 54 54 55 55 s.has_rdoc = true trunk/actionpack/CHANGELOG
r871 r874 1 * SVN*1 *1.5.1* (7th March, 2005) 2 2 3 3 * Fixed that the routes.rb file wouldn't be found on symlinked setups due to File.expand_path #793 [piotr@t-p-l.com] trunk/actionpack/Rakefile
r795 r874 9 9 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 10 10 PKG_NAME = 'actionpack' 11 PKG_VERSION = '1.5. 0' + PKG_BUILD11 PKG_VERSION = '1.5.1' + PKG_BUILD 12 12 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 13 13 … … 58 58 s.requirements << 'none' 59 59 60 s.add_dependency('activesupport', '= 1.0. 0' + PKG_BUILD)60 s.add_dependency('activesupport', '= 1.0.1' + PKG_BUILD) 61 61 62 62 s.require_path = 'lib' trunk/actionwebservice/CHANGELOG
r830 r874 1 *0.6.0* ( Unreleased)1 *0.6.0* (7th March, 2005) 2 2 3 3 * Add action_controller/test_invoke, used for integrating AWS with the Rails testing infrastructure trunk/actionwebservice/Rakefile
r812 r874 10 10 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 11 11 PKG_NAME = 'actionwebservice' 12 PKG_VERSION = '0. 5.0' + PKG_BUILD12 PKG_VERSION = '0.6.0' + PKG_BUILD 13 13 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 14 14 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" … … 57 57 s.homepage = "http://www.rubyonrails.org" 58 58 59 s.add_dependency('actionpack', '>= 1.5. 0' + PKG_BUILD)60 s.add_dependency('activerecord', '>= 1. 7.0' + PKG_BUILD)61 s.add_dependency('activesupport', '>= 1.0. 0' + PKG_BUILD)59 s.add_dependency('actionpack', '>= 1.5.1' + PKG_BUILD) 60 s.add_dependency('activerecord', '>= 1.8.0' + PKG_BUILD) 61 s.add_dependency('activesupport', '>= 1.0.1' + PKG_BUILD) 62 62 63 63 s.has_rdoc = true trunk/activerecord/CHANGELOG
r860 r874 1 * SVN*1 *1.8.0* (7th March, 2005) 2 2 3 3 * Added ActiveRecord::Base.colorize_logging to control whether to use colors in logs or not (on by default) trunk/activesupport/CHANGELOG
r872 r874 1 * SVN*1 *1.0.1* (7th March, 2005) 2 2 3 3 * Fixed Hash#indifferent_access to also deal with include? and fetch and nested hashes #726 [Nicholas Seckar] trunk/activesupport/Rakefile
r799 r874 6 6 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 7 7 PKG_NAME = 'activesupport' 8 PKG_VERSION = '1.0. 0' + PKG_BUILD8 PKG_VERSION = '1.0.1' + PKG_BUILD 9 9 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 10 10 trunk/railties/CHANGELOG
r868 r874 1 * SVN*1 *0.10.1* (7th March, 2005) 2 2 3 3 * Fixed rake stats to ignore editor backup files like model.rb~ #791 [skanthak] … … 30 30 31 31 * Removed the obsolete -i/--index option from the WEBrick servlet #743 32 33 * Upgraded to Active Record 1.8.0, Action Pack 1.5.1, Action Mailer 0.7.1, Action Web Service 0.6.0, Active Support 1.0.1 32 34 33 35 trunk/railties/html/index.html
r793 r874 62 62 63 63 <p> 64 Trying to setup a default page for Rails using Routes? You'll have to delete this file (public/index.html) to get under way. Then define a new route in <tt>config/routes.rb</tt> of the form: 65 <pre> map.connect '', :controller => 'wiki/page', :action => 'show', :title => 'Welcome'</pre> 66 </p> 67 68 <p> 64 69 Having problems getting up and running? First try debugging it yourself by looking at the log files. <br/> 65 70 Then try the friendly Rails community <a href="http://www.rubyonrails.org">on the web</a> or <a href="http://www.rubyonrails.org/show/IRC">on IRC</a> trunk/railties/Rakefile
r861 r874 10 10 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 11 11 PKG_NAME = 'rails' 12 PKG_VERSION = '0.10. 0' + PKG_BUILD12 PKG_VERSION = '0.10.1' + PKG_BUILD 13 13 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 14 14 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" … … 238 238 239 239 s.add_dependency('rake', '>= 0.4.15') 240 s.add_dependency('activesupport', '= 1.0. 0' + PKG_BUILD)241 s.add_dependency('activerecord', '= 1. 7.0' + PKG_BUILD)242 s.add_dependency('actionpack', '= 1.5. 0' + PKG_BUILD)243 s.add_dependency('actionmailer', '= 0.7. 0' + PKG_BUILD)244 s.add_dependency('actionwebservice', '= 0. 5.0' + PKG_BUILD)240 s.add_dependency('activesupport', '= 1.0.1' + PKG_BUILD) 241 s.add_dependency('activerecord', '= 1.8.0' + PKG_BUILD) 242 s.add_dependency('actionpack', '= 1.5.1' + PKG_BUILD) 243 s.add_dependency('actionmailer', '= 0.7.1' + PKG_BUILD) 244 s.add_dependency('actionwebservice', '= 0.6.0' + PKG_BUILD) 245 245 246 246 s.rdoc_options << '--exclude' << '.'