-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
44 lines (40 loc) · 941 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
40
41
42
43
44
source 'https://rubygems.org'
ruby '2.5.1'
gem 'activeadmin'
gem 'activeadmin_addons'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'bootstrap-sass-extras'
gem 'bootsy'
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'haml-rails'
gem 'httparty'
gem 'inherited_resources'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'kaminari'
gem 'pg'
gem 'rails', '~> 5.1.5'
gem 'rails_12factor', group: :production
gem 'redcarpet'
gem 'sass-rails', '~> 5.0'
gem 'settingslogic'
gem 'turbolinks', '~> 5'
gem 'tzinfo-data'
gem 'uglifier', '>= 1.3.0'
gem 'validates_formatting_of'
group :development do
gem 'capistrano-bundler', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-rvm', require: false, git: 'https://github.com/capistrano/rvm'
gem 'listen', '~> 3.0.5'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'pry-rails'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-rspec'
gem 'vcr'
gem 'webmock'
end