-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
71 lines (61 loc) · 1.43 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
66
67
68
69
70
71
ruby '2.4.1'
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'rails'
gem 'pg'
gem 'puma'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jbuilder'
group :development, :test do
gem 'byebug', platform: :mri
gem 'bullet'
end
gem 'simplecov', require: false, group: :test
gem 'mocha', require: false, group: :test
gem 'capybara', require: false, group: :test
gem 'timecop', require: false, group: :test
gem 'vcr', require: false, group: :test
gem 'webmock', require: false, group: :test
group :development do
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
gem 'capistrano-rails'
gem 'capistrano-passenger'
gem 'annotate'
gem 'rubocop', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'simple_form'
gem 'figaro'
gem 'mailgun-ruby'
gem 'rqrcode'
gem 'paperclip'
gem 'wicked_pdf'
gem 'awesome_print'
gem 'sidekiq'
gem 'faraday'
gem 'devise'
gem 'pundit'
gem 'kaminari'
gem 'rolify'
gem 'ckeditor'
gem 'roo'
gem 'roo-xls'
gem 'mustache'
gem 'json-formatter-rails'
gem 'email_validator'
gem 'highcharts-rails'
gem 'jquery-datatables-rails'
gem 'ajax-datatables-rails'