Changesets can be listed by changeset number.
The Git repository is here.
Changeset 312
The Gem system has been updated. Gem's near-legendary backwards
incompatibilities then forced updates to the boot script for the
forum.
- Comitted by: rool
- Date: Friday March 18 14:20:31 2011 (over 13 years ago)
Affected files:
rool/rails/beast/trunk/config/boot.rb:
prev. | current | |
rails_gem = Gem.cache.search('rails', "=#{version}").first | ||
if rails_gem | ||
28 | | |
28 | gem "rails", "=#{version}" | |
require rails_gem.full_gem_path + '/lib/initializer' | ||
else | ||
STDERR.puts %(Cannot find gem for Rails =#{version}: | ||
... | ... | |
exit 1 | ||
end | ||
else | ||
38 | | |
38 | gem "rails" | |
39 | require "rails" | |
require 'initializer' | ||
end | ||
end |