summaryrefslogtreecommitdiff
path: root/Gemfile
blob: 3184db4bedcbbe50fc467652a8573500726c42e9 (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
source 'https://rubygems.org'

gem 'rails', '6.1.7.10'
gem 'concurrent-ruby', '1.3.4'

gem 'pg', '~> 1.0'

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

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

gem 'unicorn', '~> 1.1'

group :assets do
  gem 'sass-rails', '~> 6.0'
  gem 'coffee-rails', '~> 4.0'
  gem 'uglifier', '>= 1.0.3'
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'