mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-01 09:39:51 -04:00
warning if running an old version of bundler
This commit is contained in:
parent
5d0cae2dd1
commit
d3b8ec36d0
1 changed files with 5 additions and 1 deletions
6
Gemfile
6
Gemfile
|
@ -196,7 +196,11 @@ gem 'lru_redux'
|
|||
|
||||
gem 'flamegraph', require: false
|
||||
gem 'rack-mini-profiler', require: false
|
||||
gem 'memory_profiler', require: false, platform: :mri_21
|
||||
begin
|
||||
gem 'memory_profiler', require: false, platform: :mri_21
|
||||
rescue
|
||||
puts "WARNING: you are running an old version of bundler, please run 'gem update bundler'"
|
||||
end
|
||||
|
||||
# used for caching, optional
|
||||
gem 'rack-cors', require: false
|
||||
|
|
Loading…
Add table
Reference in a new issue