summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 2f6e394de32fb49de0cf0b949dc4c3807799be96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
source 'https://rubygems.org'

ruby '3.2.11'

gem 'rails', '~> 7.2.3'
gem 'concurrent-ruby', '~> 1.3'
gem 'puma'

gem 'pg', '~> 1.4.6'

gem 'acts-as-taggable-on', '~> 12.0'
gem 'awesome_nested_set', '~> 3.7.0'
gem 'acts_as_list'
gem 'globalize', '~> 7.0'
gem 'routing-filter', '~> 0.7.0'
gem 'will_paginate', '~> 3.0'
gem 'exception_notification', '~> 4.5'
gem 'libxml-ruby', '~> 5.0', :require => 'xml'

gem 'nokogiri', '~> 1.18'
gem 'jquery-rails'

gem 'unicorn', '~> 6.1'

group :assets do
  gem 'sass-rails', '~> 6.0'
  gem 'coffee-rails', '~> 4.0'
  gem 'uglifier', '>= 1.0.3'
  gem 'minitest', '~> 5.25'
end

group :test do
  gem 'test-unit', '~> 3.5'
  gem 'rails-controller-testing'
end

gem 'chaos_calendar', :git => 'https://github.com/erdgeist/chaoscalendar.git',
    :require => 'chaos_calendar', :branch => 'erdgeist-ruby1.9'