-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathGemfile
91 lines (76 loc) · 2.48 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
source 'https://rubygems.org'
gem 'rails', '~> 6.1.0'
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 5.0.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
gem 'mini_racer', platforms: :ruby
gem 'marked-rails'
gem 'font-awesome-rails', github: "bokmann/font-awesome-rails", branch: "master" #'~> 4.7.0.6'
gem 'awesome_nested_fields', git: 'https://github.com/hlcfan/awesome_nested_fields.git'
gem 'devise', '~> 4.7.1'
gem 'ruby-pinyin'
gem 'paperclip', '~> 5.2.1'
gem 'letter_avatar'
gem 'omniauth'
gem 'omniauth-weibo-oauth2'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'omniauth-google-oauth2'
gem 'redis'
gem 'logster'
gem 'http_accept_language'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.0', group: :doc
gem "react_on_rails", "~> 10"
gem "webpacker"
gem 'puma', '4.3.7'
gem 'sidekiq'
gem 'sitemap_generator'
gem 'whenever', :require => false
# gem 'mina-sitemap_generator', :require => false, git: "https://github.com/hlcfan/mina-sitemap_generator.git"
# gem 'mina-sidekiq', :require => false
gem 'rqrcode'
gem 'pg_search'
gem 'rubyzip', '~> 1.3.0'
gem 'axlsx', '3.0.0.pre'
gem 'axlsx_rails'
# Disable for error:
# Rack app error handling request { POST /mini-profiler-resources/results }
# #<Errno::ETIMEDOUT: Operation timed out - user specified timeout>
# gem 'rack-mini-profiler'
# gem 'flamegraph'
# gem 'stackprof' # For Ruby MRI 2.1+
# gem 'fast_stack' # For Ruby MRI 2.0
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development, :test do
gem 'rspec-rails', '~> 4.0.0.beta2'
gem "pry"
gem 'pry-doc'
gem 'pry-nav'
gem 'pry-rails'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'letter_opener'
gem "capistrano", "~> 3.10", require: false
gem "capistrano-rails", "~> 1.6", require: false
gem 'capistrano-rbenv', '~> 2.2'
gem 'capistrano3-puma', github: "seuros/capistrano-puma"
end
group :production do
end
group :test do
gem 'rails-controller-testing'
gem 'codecov', '~> 0.2.15', :require => false
gem 'shoulda-matchers', '~> 3.1'
end