summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-06-24 16:16:57 +0200
committererdgeist <erdgeist@erdgeist.org>2026-06-24 16:16:57 +0200
commit61dc69cc5d8089ed9f96bc65dc64de6e075f70cf (patch)
tree2a25126657acc65a010d1f11a2a2208f38bf41a1 /Gemfile
parente0a7e0fec760ba12c8067a37e10c96f1f05876e2 (diff)
Upgrade acts-as-taggable-on to 3.5, add Rails 3.2 config fixes
- Bump acts-as-taggable-on from 2.4.1 to 3.5.0 - Fake engine migrations for pre-existing schema - Set serve_static_assets in development - Fix request.fullpath in authenticated_system (request_uri removed in Rails 3.x) - Fix Paperclip path format to match existing file layout
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index 9a803c9..594f94e 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,7 +5,7 @@ gem 'rails', '3.2.22.5'
5gem 'pg', '~> 0.17.0' 5gem 'pg', '~> 0.17.0'
6 6
7# from your vendor/plugins, now as gems: 7# from your vendor/plugins, now as gems:
8gem 'acts-as-taggable-on', '~> 2.4' 8gem 'acts-as-taggable-on', '~> 3.5'
9gem 'awesome_nested_set', '~> 2.1' 9gem 'awesome_nested_set', '~> 2.1'
10gem 'acts_as_list' 10gem 'acts_as_list'
11gem 'globalize3', '~> 0.3.0' 11gem 'globalize3', '~> 0.3.0'
@@ -25,7 +25,7 @@ group :assets do
25end 25end
26 26
27group :test do 27group :test do
28 gem 'test-unit', '~> 3.0' 28 gem 'test-unit', '~> 3.5'
29end 29end
30 30
31gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git', :require => 'chaos_calendar', :branch => 'erdgeist-ruby1.9' 31gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git', :require => 'chaos_calendar', :branch => 'erdgeist-ruby1.9'