-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
54 lines (43 loc) · 1.35 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'actionpack'
gem 'activerecord'
gem 'railties'
gem 'pg'
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'
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'
end
group :test do
gem 'mocha'
gem 'simplecov', require: false
gem 'simplecov-lcov', require: false
end