-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
51 lines (47 loc) · 1.61 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
source 'https://rubygems.org'
ruby '2.7.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '5.2.5'
# Use postgresql as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Devise authentication framework
gem 'devise', '~> 4.7.3'
gem 'devise_invitable', '~> 2.0.0'
# Use Dotenv to load environment variables outside of foreman
gem 'dotenv-rails'
# Use Pundit for authorizations
gem 'pundit'
# Use kaminari for pagination
gem 'kaminari'
# Use AWS SES to send emails
gem 'aws-ses', '~> 0.6.0', require: 'aws/ses'
# Use S3 to host files
gem 'aws-sdk', '~> 2.8.2'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Use RSpec, Factory Girl, and Capybara to build testing suite
gem 'rspec-rails'
gem "factory_girl_rails", "~> 4.0"
gem 'capybara'
# Use Faker to generate example data
gem 'faker'
# Use pry to debug on the console
gem 'pry-rails'
# Use letter opener to preview emails
gem "letter_opener"
end