-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
74 lines (57 loc) · 1.62 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
source "https://rubygems.org"
# Ruby web interface
gem 'rack'
gem 'rack-cors', :require => 'rack/cors'
gem "rack-test", require: "rack/test"
gem 'grape'
gem 'grape-entity'
gem 'grape-middleware-logger'
# Add swagger compliant documentation to your grape API
# gem 'grape-swagger'
# gem 'grape-raketasks'
# Easy file attachment management for ActiveRecord
# gem "paperclip", "~> 4.3"
# Paperclip for qiniu
# gem 'paperclip-qiniu'
# gem 'upyun'
# Ruby Makefile
gem 'rake'
# OAuth 2.0 Server & Client Library. Both Bearer and MAC token type are supported.
# gem 'rack-oauth2'
gem 'activerecord', '~>5.0'
gem 'active_record_migrations'
gem 'pg'
gem 'puma'
# gem 'minitest', '~>5.1'
# gem 'builder', '~>3.1'
# gem 'activerecord-postgis-adapter'
# soft delete support in db
gem "paranoia", "~> 2.2"
# password crypt
gem 'bcrypt'
# gem 'rack-mini-profiler'
# Ruby wrapper for hiredis
# gem "hiredis", "~> 0.6.1"
# gem "redis", ">= 3.2.0", :require => ["redis", "redis/connection/hiredis"]
# gem 'redis-namespace'
# A pure ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard. http://jwt.github.io/ruby-jwt/
gem 'jwt'
# Annotate Rails classes with schema and routes info
# gem 'annotate'
gem 'warden'
group :development do
# gem 'standalone_migrations'
gem 'pry'
gem 'awesome_print'
gem 'rerun'
# gem 'pry-doc', :git => '[email protected]:pry/pry-doc.git'
gem 'mina', require: false
gem 'mina-puma', require: false
gem 'mina-multistage', require: false
end
group :test do
gem 'rspec'
gem 'factory_girl'
# A Ruby static code analyzer, based on the community Ruby style guide.
gem 'rubocop', require: false
end