-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
64 lines (57 loc) · 1.89 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.4.1'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw]
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
gem 'capistrano', '~> 3.10', require: false
gem 'capistrano-rails', '~> 1.3', require: false
gem 'capistrano-rvm'
gem 'capistrano-bundler', '~> 1.3'
gem 'capistrano3-puma', github: "seuros/capistrano-puma"
end
group :test do
# Adds support for Capybara system testing and selenium driver
gem 'capybara', '>= 2.15', '< 4.0'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'chromedriver-helper'
end
gem 'administrate', '~> 0.10.0'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.0.0.beta'
gem 'coffee-rails', '~> 4.2'
gem 'data-confirm-modal', '~> 1.6.2'
gem 'devise', '~> 4.4.3'
gem 'devise-bootstrapped', github: 'excid3/devise-bootstrapped', branch: 'bootstrap4'
gem 'devise_masquerade', '~> 0.6.0'
gem 'font-awesome-sass', '~> 4.7'
gem 'foreman', '~> 0.84.0'
gem 'friendly_id', '~> 5.1.0'
gem 'gravatar_image_tag', github: 'mdeering/gravatar_image_tag'
gem 'haml-rails'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails', '~> 4.3.1'
gem 'mini_magick', '~> 4.8'
gem 'money-rails', '~>1'
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
gem 'omniauth-facebook', '~> 4.0'
gem 'omniauth-github', '~> 1.3'
gem 'omniauth-twitter', '~> 1.4'
gem 'puma', '~> 3.11'
gem 'rails', '~> 5.2.0'
gem 'sass-rails', '~> 5.0'
gem 'sidekiq', '~> 5.0'
gem 'simple_form'
gem 'sitemap_generator', '~> 6.0', '>= 6.0.1'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker', '~> 3.4'
gem 'whenever', require: false