-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
40 lines (33 loc) · 847 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
36
37
38
39
source 'https://rubygems.org'
ruby '2.7.1'
gem 'rails', '5.0.1'
gem 'pg', '~> 0.18'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'puma', '3.8.0'
gem 'devise'
gem 'bootstrap-sass', '~> 3.3.5'
gem 'haml-rails', '~> 0.9'
gem 'chartkick'
gem 'httparty'
gem 'httplog'
gem 'font-awesome-rails'
gem 'rails_admin', git: 'https://github.com/sferik/rails_admin.git'
gem 'rack-pjax', git: 'https://github.com/afcapel/rack-pjax.git'
gem 'remotipart', git: 'https://github.com/mshibuya/remotipart.git'
gem 'nokogiri'
group :development, :test do
gem 'byebug'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'pry-rails'
gem 'pry-remote'
gem 'spring'
gem 'figaro'
end
gem 'rails_12factor', group: :production