This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
89 lines (65 loc) · 1.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
source 'https://rubygems.org'
ruby '2.6.3'
# Rails
gem 'rails', '5.2.3'
# Use postgresql as the database for Active Record
gem 'pg'
# Use Puma as the app server
gem 'puma'
gem 'react_on_rails', '11.1.3' # Update to the current version
gem 'webpacker', '~> 3' # Newer versions might be supported
gem 'bootstrap', '4.1.3'
gem 'bootstrap-datepicker-rails'
gem 'font-awesome-sass', '4.7.0'
# Set environment variables safely
gem 'figaro'
# Use jQuery as main JavaScript library
gem 'jquery-rails'
# Compress JavaScript files with uglifier
gem 'uglifier'
# Use SCSS for generating CSS
gem 'sass-rails'
# Use Slim as template language for HTML
gem 'slim-rails'
# Allow cross-origin requests
gem 'rack-cors'
# Social media sharing
gem 'social-share-button'
# Google Analytics
gem 'rack-google-analytics'
# JSON serializers for ActiveRecord objects
gem 'active_model_serializers'
# Use ActiveModel has_secure_password
gem 'bcrypt'
# Add meta tags to pages
gem 'meta-tags'
# File uploading
gem 'carrierwave'
# Image processor for uploaded images with Carrierwave
gem 'mini_magick'
# AWS S3 adapter for Carrierwave
gem 'fog-aws'
# Background jobs
gem 'delayed_job_active_record'
gem 'delayed_job_recurring'
gem 'daemons'
group :development do
gem 'listen'
# Mailer
gem 'letter_opener'
end
group :development, :test do
# Use Rspec to test Rails app
gem 'rspec-rails'
end
group :test do
# Fixture replacement
gem 'factory_bot_rails'
# Fake data generator
gem 'faker'
# RSpec one-line tests
gem 'shoulda-matchers'
# Express expected outcomes for RSpec tests
gem 'rspec-expectations'
end
gem 'mini_racer', platforms: :ruby