From 3f236c7a0e544db94ef822f120d649ac5ee958f7 Mon Sep 17 00:00:00 2001 From: erdgeist Date: Thu, 25 Jun 2026 04:34:24 +0200 Subject: Upgrade to Rails 4.2.11.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Bump rails 3.2.22.5 → 4.2.11.3 - Replace globalize3 with globalize ~> 5.0 (gem renamed at 5.0) - Upgrade routing-filter ~> 0.3 → ~> 0.6 - Upgrade sass-rails, coffee-rails to 4.x - Upgrade awesome_nested_set 2.x → 3.x (Rails 4 required) - Add jquery-rails for UJS support - Pin nokogiri ~> 1.10.10, loofah ~> 2.20.0, rails-html-sanitizer ~> 1.4.4 - Add config/secrets.yml (gitignored), eager_load, serve_static_files - Fix routes: add via: to all match calls, remove legacy catch-all routes - Add admin named route, fix rvm dotfiles - Fix ActiveRecord::FixtureSet rename in test_helper - Set active_support.test_order and active_record.raise_in_transactional_callbacks --- Gemfile | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) (limited to 'Gemfile') diff --git a/Gemfile b/Gemfile index 594f94e..f00395b 100644 --- a/Gemfile +++ b/Gemfile @@ -1,26 +1,29 @@ source 'https://rubygems.org' -gem 'rails', '3.2.22.5' +gem 'rails', '4.2.11.3' gem 'pg', '~> 0.17.0' -# from your vendor/plugins, now as gems: gem 'acts-as-taggable-on', '~> 3.5' -gem 'awesome_nested_set', '~> 2.1' +gem 'awesome_nested_set', '~> 3.1' gem 'acts_as_list' -gem 'globalize3', '~> 0.3.0' -gem 'routing-filter', '~> 0.3' +gem 'globalize', '~> 5.0' +gem 'routing-filter', '~> 0.6' gem 'paperclip', '~> 3.5' gem 'will_paginate', '~> 3.0' gem 'exception_notification' gem 'libxml-ruby', :require => 'xml' -# gem 'thinking-sphinx', '1.5.0', :require => 'thinking_sphinx' +gem 'nokogiri', '~> 1.10.10' +gem 'loofah', '~> 2.20.0' +gem 'rails-html-sanitizer', '~> 1.4.4' +gem 'jquery-rails' + gem 'unicorn', '~> 1.1' group :assets do - gem 'sass-rails', '~> 3.2.3' - gem 'coffee-rails', '~> 3.2.1' + gem 'sass-rails', '~> 4.0' + gem 'coffee-rails', '~> 4.0' gem 'uglifier', '>= 1.0.3' end @@ -28,5 +31,5 @@ group :test do gem 'test-unit', '~> 3.5' end -gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git', :require => 'chaos_calendar', :branch => 'erdgeist-ruby1.9' - +gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git', + :require => 'chaos_calendar', :branch => 'erdgeist-ruby1.9' -- cgit v1.3