-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
45 lines (41 loc) · 1.13 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 5.2'
gem 'pg', '~> 1.2'
gem 'puma', '~> 5.2'
gem 'sass-rails', '~> 5.1'
gem 'uglifier', '~> 4.2'
gem 'coffee-rails', '~> 4.2'
gem 'devise', '~> 4.7'
gem 'devise-i18n', '~> 1.9'
gem 'jquery-rails'
gem 'turbolinks', '~> 5.2'
gem 'jbuilder', '~> 2.11'
gem 'rails-i18n', '~> 5.1'
gem 'bootstrap_sb_admin_base_v2', '~> 0.3.6'
gem 'rack-attack', '~> 6.5'
gem 'bootsnap', '~> 1.1', require: false
source 'https://rails-assets.org' do
gem 'rails-assets-bootstrap', '3.3.7'
gem 'rails-assets-notifyjs'
gem 'rails-assets-bootbox'
end
group :development, :test do
gem 'faker'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'minitest-reporters', '~> 1.4'
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'webdrivers'
gem 'simplecov', require: false
end
group :development do
gem 'web-console', '~> 3.7'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0'
gem 'better_errors', '~> 2.9'
gem 'binding_of_caller', '~> 0.8'
gem 'debug-extras', '~> 0.4'
gem 'colorize'
end