summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-25 17:49:34 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-25 17:49:34 +0200
commit7f26a8202556db3a584f1360950a671d2a60a1ea (patch)
tree1e37bb2eaa941ed0dbe2591c67cc850409d1658e /Gemfile
parent5f8cc4fa269dadc895d99eec9ef3a82b17c5890a (diff)
Upgrade to Rails 5.2.8.1 on Ruby 2.5.8
- Bump rails 4.2.11.3 → 5.2.8.1, ruby 2.4.10 → 2.5.8 - Upgrade acts-as-taggable-on ~> 3.5 → ~> 6.0 - Upgrade exception_notification ~> 4.4 → ~> 4.5 - Upgrade globalize ~> 5.0 → ~> 5.2.0 - Upgrade pg ~> 0.17 → ~> 1.0 - Upgrade sass-rails ~> 4.0 → ~> 5.0 - Upgrade libxml-ruby to ~> 3.2 (5.x requires Ruby 3.2+) - Pin awesome_nested_set ~> 3.4.0 (3.9 has lft/rgt update bug) - Add rails-controller-testing gem - Add assets initializer for jquery precompile - Add acts_as_taggable missing indexes migration - Set eager_load, serve_static_files, active_record settings
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile17
1 files changed, 9 insertions, 8 deletions
diff --git a/Gemfile b/Gemfile
index f00395b..b43b986 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,18 +1,18 @@
1source 'https://rubygems.org' 1source 'https://rubygems.org'
2 2
3gem 'rails', '4.2.11.3' 3gem 'rails', '5.2.8.1'
4 4
5gem 'pg', '~> 0.17.0' 5gem 'pg', '~> 1.0'
6 6
7gem 'acts-as-taggable-on', '~> 3.5' 7gem 'acts-as-taggable-on', '~> 6.0'
8gem 'awesome_nested_set', '~> 3.1' 8gem 'awesome_nested_set', '~> 3.4.0'
9gem 'acts_as_list' 9gem 'acts_as_list'
10gem 'globalize', '~> 5.0' 10gem 'globalize', '~> 5.2.0'
11gem 'routing-filter', '~> 0.6' 11gem 'routing-filter', '~> 0.6'
12gem 'paperclip', '~> 3.5' 12gem 'paperclip', '~> 3.5'
13gem 'will_paginate', '~> 3.0' 13gem 'will_paginate', '~> 3.0'
14gem 'exception_notification' 14gem 'exception_notification', '~> 4.5'
15gem 'libxml-ruby', :require => 'xml' 15gem 'libxml-ruby', '~> 3.2', :require => 'xml'
16 16
17gem 'nokogiri', '~> 1.10.10' 17gem 'nokogiri', '~> 1.10.10'
18gem 'loofah', '~> 2.20.0' 18gem 'loofah', '~> 2.20.0'
@@ -22,13 +22,14 @@ gem 'jquery-rails'
22gem 'unicorn', '~> 1.1' 22gem 'unicorn', '~> 1.1'
23 23
24group :assets do 24group :assets do
25 gem 'sass-rails', '~> 4.0' 25 gem 'sass-rails', '~> 5.0'
26 gem 'coffee-rails', '~> 4.0' 26 gem 'coffee-rails', '~> 4.0'
27 gem 'uglifier', '>= 1.0.3' 27 gem 'uglifier', '>= 1.0.3'
28end 28end
29 29
30group :test do 30group :test do
31 gem 'test-unit', '~> 3.5' 31 gem 'test-unit', '~> 3.5'
32 gem 'rails-controller-testing'
32end 33end
33 34
34gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git', 35gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git',