-
Notifications
You must be signed in to change notification settings - Fork 42
/
Gemfile
63 lines (48 loc) · 1.86 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.5'
# Use mysql as the database for Active Record
gem 'mysql2', '~> 0.4.10'
# Use Puma as the app server
gem 'puma', '~> 3.0'
gem 'figaro'
# Baye core logic, to run locally:
# $ bundle config --local local.baye-core /Users/guochunzhong/git/landlord/baye-core/
gem 'baye-core', git: '[email protected]:ericguo/landlord_baye-core.git', branch: :master
# Build JSON APIs with ease. Read more: https://github.com/rails-api/active_model_serializers
gem 'active_model_serializers', '~> 0.10.2'
gem 'ahoy_matey', '~> 1.6.1'
# $ bundle config --local local.cl2009 /Users/guochunzhong/git/landlord/cl2009/
gem 'cl2009', git: '[email protected]:ericguo/cl2009.git', branch: :master
gem 'sidekiq'
# Generates swagger-ui json files for Rails APIs with a simple DSL
gem 'swagger-docs'
gem 'redis'
# Use ActiveModel has_secure_password
gem 'bcrypt', '~> 3.1.11'
gem 'wx_pay'
gem 'wechat'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors', require: 'rack/cors'
group :production, :staging do
gem 'exception_notification'
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platform: :mri
gem 'pry'
gem 'pry-byebug'
end
group :development do
gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
# Use Capistrano for deployment
gem 'capistrano-rails'
gem 'capistrano-rvm'
gem 'capistrano3-puma'
gem 'capistrano-sidekiq', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]