forked from michelada/match-public
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
58 lines (50 loc) · 1.33 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.3'
gem 'active_model_serializers', '~> 0.10.2'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.1.3'
gem 'bootstrap_form', '~>4.1.0'
gem 'coffee-rails', '~> 4.2'
gem 'devise'
gem 'devise_invitable', '~>1.7.0'
gem 'friendly_id', '~> 5.2.4'
gem 'haml-rails', '~> 1.0'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'puma', '~> 3.11'
gem 'rails', '~> 5.2.2'
gem 'redcarpet'
gem 'sass-rails', '~> 5.0'
gem 'sendgrid-ruby'
gem 'simple_form', '~>4.0.1'
gem 'spicy-proton'
gem 'turbolinks', '~> 5'
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'pry-rails'
end
group :development do
gem 'letter_opener'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rb-readline'
gem 'rubocop'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
# Gem used to know your params and associations.
gem 'annotate', git: 'https://github.com/ctran/annotate_models.git'
end
group :test do
gem 'minitest-rails'
gem 'minitest-rails-capybara'
gem 'selenium-webdriver'
gem 'simplecov'
gem 'webdrivers', '~> 3.0'
end
group :production, :staging do
gem 'pg'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]