-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
67 lines (59 loc) · 1.36 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
# frozen_string_literal: true
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
ruby '~> 2.6.1'
gem 'bootstrap', '~> 4.4.1'
gem 'coffee-rails', '~> 5.0'
gem 'data_migrate'
gem 'dotenv-rails'
gem 'jquery-rails'
gem 'kaminari'
gem 'pg'
gem 'puma', '~> 4.3'
gem 'rails', '~> 5.2.4'
gem 'rails-i18n', '~> 5.1.3'
gem 'sass-rails', '~> 6.0'
gem 'simple_form'
gem 'sorcery'
gem 'strong_migrations'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
gem 'validates_email_format_of'
gem 'haml-rails'
gem 'prawn'
gem 'wicked_pdf', '~> 1.4.0'
gem 'wkhtmltopdf-binary'
group :development, :test do
gem 'capybara'
gem 'pry-rails'
gem 'selenium-webdriver'
end
group :test do
gem 'factory_bot_rails'
gem 'faker'
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 3.9'
gem 'shoulda-matchers'
end
group :development do
gem 'annotate'
gem 'better_errors'
gem 'bullet'
gem 'capistrano'
gem 'capistrano-bundler'
gem 'capistrano-passenger'
gem 'capistrano-rails'
gem 'capistrano-rbenv'
gem 'haml_lint', require: false
gem 'listen', '>= 3.0.5', '< 3.3'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end