Changeset 348
- Timestamp:
- 04/07/06 00:42:26 (3 years ago)
- Files:
-
- plugins/engines/CHANGELOG (modified) (2 diffs)
- plugins/engines/init.rb (modified) (1 diff)
- plugins/engines/lib/engines.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/engines/CHANGELOG
r344 r348 1 1 *SVN* 2 2 3 3 4 ----- … … 14 15 - Fixed the test_helper.erb file to use the correct testing extensions and not load any schema - the schema will be cloned automatically via rake test:engines 15 16 - Fixed problem when running with Rails 1.1.1 where version wasn't determined correctly (Ticket #129) 17 - Fixed bug preventing engines from loading when both Rails 1.1.0 and 1.1.1 gems are installed and in use. 18 - Updated version (d'oh!) 19 16 20 17 21 ----- plugins/engines/init.rb
r311 r348 36 36 Major = 1 # change implies compatibility breaking with previous versions 37 37 Minor = 1 # change implies backwards-compatible change to API 38 Release = 0# incremented with bug-fixes, updates, etc.38 Release = 1 # incremented with bug-fixes, updates, etc. 39 39 end 40 40 plugins/engines/lib/engines.rb
r344 r348 4 4 begin 5 5 require 'rails_version' # Rails 1.0, 1.1.0 6 rescue LoadError 6 rescue LoadError, Gem::Exception 7 7 require 'rails/version' # renamed as of Rails 1.1.1 8 8 end
