forked from plugine/wei
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
92 lines (65 loc) · 1.73 KB
/
Copy pathGemfile
File metadata and controls
92 lines (65 loc) · 1.73 KB
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
source 'https://gems.ruby-china.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.10'
gem 'jquery-rails'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.3.13', '< 0.5'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
gem 'bcrypt', '~> 3.1.7'
gem 'mini_magick'
gem "select2-rails"
gem 'jwt'
gem 'will_paginate'
gem 'rack-cors', :require => 'rack/cors'
# using puma as default server
gem 'puma'
# pagination
gem 'kaminari'
gem 'sinatra', require: false
gem 'whenever'
# for background job schedule
gem 'sidekiq', '>= 5'
# for cache
gem 'redis'
gem 'redis-namespace'
# for file upload
gem 'carrierwave'
gem 'qiniu', '>= 6.9.0'
# for http api call
gem 'httparty'
# for wechat endpoint
gem 'wechat'
gem 'alipay'
gem 'wx_pay', '~> 0.17.0'
gem 'simple_form'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'test_after_commit'
gem 'pry-rails'
gem 'pry-stack_explorer'
gem 'mocha', '~> 0.14.0', require: false
gem 'factory_girl_rails', '~> 4.5.0'
gem 'minitest-reporters'
gem 'faker'
gem 'better_errors'
gem 'binding_of_caller'
gem 'simplecov', require: false, group: :test
end
group :development do
gem 'capistrano-bundler', require: false
gem 'capistrano', '3.5.0', require: false
gem 'capistrano-rails', '1.1.3'
gem 'capistrano-rvm', require: false
gem 'capistrano-sidekiq', require: false
gem 'capistrano3-puma'
gem 'annotate', '>=2.5.0'
gem 'spring'
gem 'web-console'
gem 'pry-byebug'
end