Changesets can be listed by changeset number.
The Git repository is here.
Changeset 183
Updated to run on Rails 1.2. Bugs in Rails 1.2 mean that
a database connection is required, so a temporary config
file is provided in database.yml.
- Comitted by: rool
- Date: Sunday March 25 18:36:49 2007 (over 17 years ago)
Affected files:
- rool/rails/rcvsweb/trunk/config/boot.rb (diff)
- rool/rails/rcvsweb/trunk/config/environment.rb (diff)
- rool/rails/rcvsweb/trunk/config/database.yml
rool/rails/rcvsweb/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" | |
require 'initializer' | ||
end | ||
end | ||
Rails::Initializer.run(:set_load_path) | ||
44 | ||
45 | end |
rool/rails/rcvsweb/trunk/config/environment.rb:
prev. | current | |
# Skip frameworks that are not used. | ||
43 | | |
43 | # config.frameworks -= [ :action_web_service, :action_mailer, :active_record ] | |
44 | config.frameworks -= [ :action_web_service, :action_mailer ] | |
# Force all environments to use the same logger level | ||
# (by default production uses :info, the others :debug). |