-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
36 lines (28 loc) · 855 Bytes
/
Gemfile
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
source 'https://rubygems.org'
gem 'rails', '>= 3.2.9'
gem 'json'
gem 'activeadmin', '>= 0.5.0',
git: 'git://github.com/pwnall/active_admin.git', branch: 'devise-soft-dep'
gem 'authpwn_rails', '>= 0.13.2'
gem 'best_in_place', '>= 2.0.2'
gem 'daemons', '>= 1.1.9'
gem 'delayed_job', '>= 3.0.3'
gem 'delayed_job_active_record', '>= 0.3.3'
gem 'pg', '>= 0.14.1'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '>= 3.2.5'
gem 'compass', '>= 0.12.2'
gem 'coffee-rails', '>= 3.2.2'
gem 'therubyracer', '>= 0.11.0'
gem 'libv8', '>= 3.11.8.4'
gem 'jquery-rails', '>= 2.1.4'
gem 'rails3-jquery-autocomplete', '>= 1.0.10'
gem 'uglifier', '>= 1.0.3'
end
# Deployment details.
group :development, :test do
gem 'foreman', '>= 0.60.2'
end
gem 'unicorn', '>= 4.5.0'