-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathGemfile
65 lines (58 loc) · 1.32 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
source 'https://rubygems.org'
ruby '2.3.0'
gem 'bundler', '>= 1.8.4'
gem 'rails', '~> 4.2.0'
gem 'mysql2'
gem 'sass-rails', '~> 5.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 1.3.0'
gem 'turbolinks', github: 'turbolinks/turbolinks-classic'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-ui-themes'
gem 'jbuilder', '~> 2.0'
gem 'highcharts-rails'
gem 'jquery-tablesorter'
gem 'jquery-cookie-rails'
gem 'country-select'
gem 'devise'
gem 'paperclip'
gem 'ransack'
gem 'will_paginate'
gem 'rabl'
gem 'simple_form'
gem 'cocoon'
gem 'slim-rails'
gem 'font-awesome-sass'
gem 'bootstrap'
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.1.0'
gem 'rails-assets-jstree'
end
group :production do
gem 'execjs'
gem 'therubyracer', require: 'v8'
end
# Testing gems
group :test do
gem 'shoulda'
gem 'test-unit'
end
group :development do
gem 'quiet_assets' # Don't show full asset pipeline logging in dev
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-bundler'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and
# get a debugger console
gem 'byebug'
# Access an IRB console on exception pages or by using
# <%= console %> in views
gem 'web-console', '~> 2.0'
gem 'minitest-rails'
end
group :development, :production do
gem 'puma'
end