diff options
| author | erdgeist <erdgeist@erdgeist.org> | 2026-06-25 04:34:24 +0200 |
|---|---|---|
| committer | erdgeist <erdgeist@erdgeist.org> | 2026-06-25 04:34:24 +0200 |
| commit | 3f236c7a0e544db94ef822f120d649ac5ee958f7 (patch) | |
| tree | 37c91c623f880cb75ba7dd63ee6a42eb0136e2a9 /Gemfile | |
| parent | 75670df5b8a5700c48ac8cb41f8d1732b5738402 (diff) | |
Upgrade to Rails 4.2.11.3
- 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
Diffstat (limited to 'Gemfile')
| -rw-r--r-- | Gemfile | 23 |
1 files changed, 13 insertions, 10 deletions
| @@ -1,26 +1,29 @@ | |||
| 1 | source 'https://rubygems.org' | 1 | source 'https://rubygems.org' |
| 2 | 2 | ||
| 3 | gem 'rails', '3.2.22.5' | 3 | gem 'rails', '4.2.11.3' |
| 4 | 4 | ||
| 5 | gem 'pg', '~> 0.17.0' | 5 | gem 'pg', '~> 0.17.0' |
| 6 | 6 | ||
| 7 | # from your vendor/plugins, now as gems: | ||
| 8 | gem 'acts-as-taggable-on', '~> 3.5' | 7 | gem 'acts-as-taggable-on', '~> 3.5' |
| 9 | gem 'awesome_nested_set', '~> 2.1' | 8 | gem 'awesome_nested_set', '~> 3.1' |
| 10 | gem 'acts_as_list' | 9 | gem 'acts_as_list' |
| 11 | gem 'globalize3', '~> 0.3.0' | 10 | gem 'globalize', '~> 5.0' |
| 12 | gem 'routing-filter', '~> 0.3' | 11 | gem 'routing-filter', '~> 0.6' |
| 13 | gem 'paperclip', '~> 3.5' | 12 | gem 'paperclip', '~> 3.5' |
| 14 | gem 'will_paginate', '~> 3.0' | 13 | gem 'will_paginate', '~> 3.0' |
| 15 | gem 'exception_notification' | 14 | gem 'exception_notification' |
| 16 | gem 'libxml-ruby', :require => 'xml' | 15 | gem 'libxml-ruby', :require => 'xml' |
| 17 | 16 | ||
| 18 | # gem 'thinking-sphinx', '1.5.0', :require => 'thinking_sphinx' | 17 | gem 'nokogiri', '~> 1.10.10' |
| 18 | gem 'loofah', '~> 2.20.0' | ||
| 19 | gem 'rails-html-sanitizer', '~> 1.4.4' | ||
| 20 | gem 'jquery-rails' | ||
| 21 | |||
| 19 | gem 'unicorn', '~> 1.1' | 22 | gem 'unicorn', '~> 1.1' |
| 20 | 23 | ||
| 21 | group :assets do | 24 | group :assets do |
| 22 | gem 'sass-rails', '~> 3.2.3' | 25 | gem 'sass-rails', '~> 4.0' |
| 23 | gem 'coffee-rails', '~> 3.2.1' | 26 | gem 'coffee-rails', '~> 4.0' |
| 24 | gem 'uglifier', '>= 1.0.3' | 27 | gem 'uglifier', '>= 1.0.3' |
| 25 | end | 28 | end |
| 26 | 29 | ||
| @@ -28,5 +31,5 @@ group :test do | |||
| 28 | gem 'test-unit', '~> 3.5' | 31 | gem 'test-unit', '~> 3.5' |
| 29 | end | 32 | end |
| 30 | 33 | ||
| 31 | gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git', :require => 'chaos_calendar', :branch => 'erdgeist-ruby1.9' | 34 | gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git', |
| 32 | 35 | :require => 'chaos_calendar', :branch => 'erdgeist-ruby1.9' | |
