This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
79 lines (73 loc) · 2.6 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.0.0'
# Use postgresql as the database for Active Record
gem 'pg', '>= 0.18', '< 2.0'
# Use Puma as the app server
gem 'puma', '~> 3.11'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
gem 'image_processing', '~> 1.9.3'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '~> 1.4.4', require: false
gem 'slim-rails', '~> 3.2.0'
gem 'sprockets-rails', '~> 3.2.1'
gem 'jquery-rails', '~> 4.3.3'
gem 'font-awesome-sass', '~> 5.8.1'
gem 'bootstrap_form', '~> 4.2.0'
gem 'webpacker', github: 'marisveide/webpacker', branch: 'master'
gem 'twilio-ruby', '~> 5.25.1'
gem 'aws-sdk-s3'
gem 'devise', '~> 4.7.0'
gem 'friendly_id', '~> 5.2.5'
gem 'premailer-rails', '~> 1.10.3'
gem 'bootstrap-email', '~> 0.2.6'
gem 'omniauth-google-oauth2', '~> 0.7.0'
gem 'slack-notifier', '~> 2.3.2'
gem 'rollbar', '~> 2.20.2'
gem 'oj', '~> 3.7.12'
gem 'ahoy_matey', '~> 3.0.0'
gem 'rack-cors', '~> 1.0.3'
gem 'browser', '~> 2.5.3'
gem 'phony_rails', '~> 0.14.13'
gem 'shortener', '~> 0.8.0'
gem 'field_test', '~> 0.3.1'
gem 'mixpanel-ruby', '~> 2.2.0'
gem 'active_link_to', '~> 1.0.5'
gem 'meta-tags', '~> 2.11.1'
gem 'rev-api', '~> 2.3.2'
gem 'srt', '~> 0.1.4'
group :development, :test do
gem 'pry-byebug', '~> 3.7.0'
gem 'pry-rails', '~> 0.3.9'
gem 'better_errors'
gem 'binding_of_caller'
gem 'rspec-rails', '~> 3.8.2'
gem 'factory_bot_rails', github: 'thoughtbot/factory_bot_rails', branch: 'master'
gem 'shoulda-matchers', '~> 4.1.2'
gem 'simplecov', '~> 0.17.0'
gem 'faker', '~> 2.1.2'
gem 'webdrivers', '~> 4.1.2'
gem 'capybara', '~> 3.28.0'
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'letter_opener', '~> 1.7.0'
gem 'rails_real_favicon', github: 'hwhelchel/rails_real_favicon', branch: 'rails-6'
end