-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
61 lines (48 loc) · 1.64 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'actionpack'
gem 'activerecord'
gem 'railties'
gem 'pg', '< 1.3.0' # newer requires posgresql >= 9.3
gem 'active_model_serializers'
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
# rdoc is a transitive dependency of railties. Set version lower than 6.4 to avoid another
# transitive dependency on psych, which would require libyaml,
# which is currently not available in production.
gem 'rdoc', '< 6.4.0'
# Ruby 3.0 uses this version of the base64 default gem
gem 'base64', '0.1.0'
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'
gem 'puma'
gem 'rails-erd'
gem 'rubocop-performance'
gem 'rubocop-rails'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
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 'mocha'
gem 'simplecov', require: false
gem 'simplecov-lcov', require: false
end