-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
42 lines (36 loc) · 1.04 KB
/
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
36
37
38
39
40
41
42
source 'https://rubygems.org'
gem 'rails', '4.0.0'
gem 'pg'
gem 'therubyracer'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'jstree-rails', :git => 'git://github.com/tristanm/jstree-rails.git'
gem 'activeadmin', git: 'https://github.com/gregbell/active_admin.git', branch: 'rails4'
gem 'active_admin-awesome_nested_set', path: '../active_admin-awesome_nested_set'
gem 'angularjs-rails', git: 'git://github.com/hiravgandhi/angularjs-rails.git', branch: 'master'
gem 'awesome_nested_set'
gem 'carrierwave'
gem "enumerize", "~> 0.7.0"
gem 'kaminari'
gem 'rabl'
gem "ransack"
gem 'rmagick'
gem 'simple_form', git: 'https://github.com/plataformatec/simple_form.git', branch: 'master'
gem 'sitemap_generator'
gem "select2-rails"
gem 'slim-rails'
gem 'zurb-foundation'
gem 'fotoramajs'
gem 'unicorn'
group :development do
gem 'quiet_assets'
gem 'capistrano-deploy', :require => nil
end
group :development, :test do
gem 'pry-rails'
end