forked from radiorabe/raar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
53 lines (42 loc) · 1.31 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '6.0.1'
gem 'pg'
gem 'active_model_serializers'
gem 'exception_notification'
gem 'jwt'
gem 'kaminari'
gem 'rails-i18n'
gem 'streamio-ffmpeg'
# document API with swagger
gem 'swagger-blocks'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors', require: 'rack/cors'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', require: false
group :development, :test do
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Use Capistrano for deployment
gem 'capistrano-passenger'
gem 'capistrano-rails'
# Use puma as the development server
gem 'puma'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'rails-erd'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'spring'
# Loading the listen gem enables an evented file system monitor. Check
# https://github.com/guard/listen#listen-adapters if on Windows or *BSD.
# gem 'listen', '~> 3.0.4'
end
group :test do
gem 'coveralls', '>= 0.8.21'
gem 'mocha'
gem 'simplecov'
end