-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGemfile
More file actions
33 lines (30 loc) · 956 Bytes
/
Copy pathGemfile
File metadata and controls
33 lines (30 loc) · 956 Bytes
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
source 'https://rubygems.org'
git 'https://github.com/makandra/rails.git', :branch => '2-3-lts' do
gem 'rails', '~> 2.3.18'
gem 'actionmailer', :require => false
gem 'actionpack', :require => false
gem 'activerecord', :require => false
gem 'activeresource', :require => false
gem 'activesupport', :require => false
gem 'rack', :require => false
end
gem "mysql"
gem "tzinfo", "~> 0.3.61" # See https://github.com/asalant/freehub/pull/56
gem 'authorization', git: "https://github.com/asalant/rails-authorization-plugin"
gem 'json', '1.7.7' # (CVE-2013-026) Can remove once rails depends on > 1.7.6
gem 'haml', "3.0.25"
gem 'calendar_date_select', "1.16.1"
gem "acts-as-taggable-on", "2.0.6"
gem 'airbrake', '~> 3.1'
gem 'validates_email_format_of'
gem 'rdoc'
gem 'expiring_memory_store'
group :development, :test do
gem 'annotate'
gem 'test-unit'
gem 'thoughtbot-shoulda'
gem 'timecop'
end
group :production do
gem 'unicorn'
end