-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
43 lines (35 loc) · 861 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'rails', '~> 6.0'
gem 'contracts'
gem 'database_validations'
gem 'devise'
gem 'jbuilder', '~> 2.5'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-rails_csrf_protection'
gem 'puma', '~> 3.11'
gem 'rubocop', require: false
gem 'sqlite3'
gem 'webpacker', '~> 4.0', '>= 4.0.7'
gem 'bundled-without'
group :development, :test do
gem 'factory_bot_rails'
gem 'faker', '~> 2.1'
# debugging
gem 'byebug', platforms: [:mri]
gem 'pry-rails'
# documentation
gem 'yard'
end
group :development do
gem 'spring'
gem 'web-console', github: 'rails/web-console'
end
group :test do
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 4.0.0.beta2'
gem 'rspec_junit_formatter'
gem 'simplecov', require: false
end