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
|
source 'https://rubygems.org'
gem 'rails', '5.2.8.1'
gem 'pg', '~> 1.0'
gem 'acts-as-taggable-on', '~> 6.0'
gem 'awesome_nested_set', '~> 3.4.0'
gem 'acts_as_list'
gem 'globalize', '~> 5.2.0'
gem 'routing-filter', '~> 0.6'
gem 'paperclip', '~> 3.5'
gem 'will_paginate', '~> 3.0'
gem 'exception_notification', '~> 4.5'
gem 'libxml-ruby', '~> 3.2', :require => 'xml'
gem 'nokogiri', '~> 1.10.10'
gem 'loofah', '~> 2.20.0'
gem 'rails-html-sanitizer', '~> 1.4.4'
gem 'jquery-rails'
gem 'unicorn', '~> 1.1'
group :assets do
gem 'sass-rails', '~> 5.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'
|