forked from openware/barong
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
112 lines (94 loc) · 3.12 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 2.6.5'
gem 'aliyun-sdk', '~> 0.7.0'
gem 'api-pagination', '~> 4.8.2'
gem 'env-tweaks', '~> 1.0.0'
# storage related gems
gem 'carrierwave', '~> 2.1', '>= 2.1.0'
# fog's core, shared behaviors without API and provider specifics
gem 'fog-core', '~> 2.1.0'
# alicloud support
gem 'fog-aliyun', '~> 0.3.5'
# aws support (amazon)
gem 'fog-aws', '~> 3.5.2'
# gcp support (google)
gem 'fog-google', '~> 1.9.1'
gem 'kycaid'
gem 'sidekiq', '>= 6.0.7'
# GLI
gem 'gli', '~> 2.19.0'
##
## abilities and permissions for admin API module
gem 'cancancan', '~> 2.3.0'
gem 'hiredis', '~> 0.6.1'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.4', '>= 5.2.4.4'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
# Use Puma as the app server
gem 'puma', '~> 3.12', '>= 3.12.6'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'mini_racer', platforms: :ruby
gem 'maxmind-db', '~> 1.0'
gem 'kaminari', '>= 1.2.1'
gem 'peatio', '~> 0.4.4'
gem 'rack-cors', '~> 1.0.2'
# REST-like API framework for Ruby
gem 'grape', '~> 1.4'
gem 'grape-entity', '~> 0.8'
gem 'grape-swagger', '~> 1.2'
gem 'grape-swagger-entity', '~> 0.5'
gem 'grape_logging', '~> 1.8'
gem 'memoist', '~> 0.16'
gem 'jwt', '~> 2.2'
gem 'jwt-multisig', '~> 1.0', '>= 1.0.4'
gem 'bunny'
gem 'phonelib', '~> 0.6.45'
gem 'twilio-ruby', '~> 5.25.4'
gem 'vault', '~> 0.1'
gem 'vault-rails', git: 'https://github.com/rubykube/vault-rails'
# Use Redis adapter to run Action Cable in production
gem 'redis', '~> 4.0', :require => ['redis', 'redis/connection/hiredis']
gem 'bcrypt', '~> 3.1'
# Email validators. Lock at 1.6.0 to use /strict dependency
gem 'email_validator', '= 1.6.0', require: 'email_validator/strict'
gem 'countries', require: 'countries/global'
gem 'browser', require: "browser/browser"
gem 'bump'
# Use gem to verify recatpcha on server side
gem 'recaptcha', '>= 5.2.1'
# Password validators
gem 'strong_password', '~> 0.0.8'
# Use ActiveStorage variant
# gem 'mini_magick', '~> 4.8'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
# Add the Sentry Ruby SDK
gem 'sentry-raven', '~> 2.9.0'
gem 'pry-rails'
group :development, :test do
# Call 'byebug' or 'binding.pry' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'factory_bot_rails', '~> 4.11', '>= 4.11.1'
gem 'faker', '~> 2.1'
end
group :development do
gem 'grape_on_rails_routes', '~> 0.3.2'
gem 'web-console', '>= 3.7.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'annotate', '~> 2.7', '>= 2.7.5'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
group :test do
gem 'capybara', '>= 3.29.0'
# gem 'selenium-webdriver'
# gem 'chromedriver-helper'
gem 'rspec-rails', '~> 3.9', '>= 3.9.1'
gem 'shoulda-matchers', '~> 4.0.1.0'
gem 'rails-controller-testing', '>= 1.0.5'
end
gem "pg", "~> 1.2"