-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
executable file
·47 lines (40 loc) · 817 Bytes
/
Gemfile
File metadata and controls
executable file
·47 lines (40 loc) · 817 Bytes
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
#source 'https://code.stripe.com'
source 'https://rubygems.org'
ruby '2.7.0'
gem 'rails', '>=6.0'
gem 'uglifier'
gem 'jquery-rails'
gem 'jbuilder'
gem 'puma'
gem 'newrelic_rpm'
gem 'devise'
gem 'turbolinks'
gem 'sidekiq'
gem 'meta-tags'
gem 'bootstrap', '~> 4.4.1'
gem 'font_awesome5_rails'
# Attachments
#gem "paperclip", "~> 3.0"
#gem 'aws-sdk', '~> 1.0'
# Payments
# Uncomment code.stripe.com source at the top
#gem 'stripe'
#gem 'stripe-rails'
group :production, :staging do
gem 'rails_12factor'
gem 'pg'
end
###################
group :development do
gem 'listen'
gem 'sqlite3'
gem 'better_errors'
gem 'binding_of_caller'
gem 'dotenv-rails'
gem 'letter_opener' # Preview sent email in app
gem 'foreman' # Procfile runner
end
group :development, :test do
#gem 'rspec-rails'
#gem 'debugger'
end