Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 430
- Log:
Upgrade all Rails v2.x apps to v2.3.15, except for Radiant, which
is fiddly and has been patched instead. This is required due to two
critical security vulnerabilities recently discovered in Rails
versions 2 and 3.http://weblog.rubyonrails.org/2013/1/8/Rails-3-2-11-3-1-10-3-0-19-and-2-3-15-have-been-released/
https://groups.google.com/forum/?fromgroups=#!topic/radiantcms/b-2DPZlWt3o
- Author:
- rool
- Date:
- Sun Jan 13 23:19:02 +0000 2013
- Size:
- 2631 Bytes
1 | # Be sure to restart your web server when you modify this file. |
2 | |
3 | # Specifies gem version of Rails to use when vendor/rails is not present |
4 | RAILS_GEM_VERSION = '2.3.15' unless defined? RAILS_GEM_VERSION |
5 | |
6 | # Bootstrap the Rails environment, frameworks, and default configuration |
7 | require File.join(File.dirname(__FILE__), 'boot') |
8 | |
9 | Rails::Initializer.run do |config| |
10 | # Settings in config/environments/* take precedence over those specified here. |
11 | # Application configuration should go into files in config/initializers |
12 | # -- all .rb files in that directory are automatically loaded. |
13 | |
14 | # Add additional load paths for your own custom dirs |
15 | # config.autoload_paths += %W( #{RAILS_ROOT}/extras ) |
16 | |
17 | # Mandatory gems |
18 | # ============== |
19 | # |
20 | # Ya2yaml: |
21 | # http://github.com/ptb/ya2yaml/tree/master |
22 | # http://rubyforge.org/projects/ya2yaml/ |
23 | # |
24 | # Locale: |
25 | # http://www.yotabanana.com/hiki/ruby-locale-rails.html |
26 | # http://rubyforge.org/projects/locale/ |
27 | # |
28 | # Mislav's Will Paginate: |
29 | # http://github.com/mislav/will_paginate |
30 | # sudo gem sources -a http://gems.github.com (if you haven't already) |
31 | # sudo gem install will_paginate |
32 | # |
33 | # Jason King's Good Sort: |
34 | # http://github.com/JasonKing/good_sort |
35 | # sudo gem sources -a http://gems.github.com (if you haven't already) |
36 | # sudo gem install good_sort |
37 | |
38 | config.gem 'hubssolib', :version => '>= 0.2.7', :lib => 'hub_sso_lib' |
39 | config.gem 'ya2yaml', :version => '>= 0.26' |
40 | config.gem 'locale', :version => '>= 2.0.0' |
41 | config.gem 'will_paginate', :version => '>= 2.3.15' |
42 | config.gem 'good_sort', :version => '>= 0.2.4' |
43 | |
44 | # Only load the plugins named here, in the order given (default is alphabetical). |
45 | # :all can be used as a placeholder for all plugins not explicitly named |
46 | # config.plugins = [ :exception_notification, :ssl_requirement, :all ] |
47 | |
48 | # Skip frameworks you're not going to use. To use Rails without a database, |
49 | # you must remove the Active Record framework. |
50 | # config.frameworks -= [ :active_record, :active_resource, :action_mailer ] |
51 | |
52 | # Activate observers that should always be running |
53 | config.active_record.observers = :user_observer |
54 | |
55 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. |
56 | # Run "rake -D time" for a list of tasks for finding time zone names. |
57 | config.time_zone = 'UTC' |
58 | |
59 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. |
60 | # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')] |
61 | # config.i18n.default_locale = :de |
62 | end |
63 | |
64 | # Please also see "environments/*.rb". |