DEV: we are waiting on an annotate gem release

Once version 2.7.5 is released per: https://github.com/ctran/annotate_models/pull/595
we can drop this conditional.
This commit is contained in:
Sam 2019-02-04 16:11:19 +11:00
parent 1816bdf46e
commit 1d2c4b0eee
1 changed files with 7 additions and 1 deletions

View File

@ -142,7 +142,13 @@ group :development do
gem 'bullet', require: !!ENV['BULLET'] gem 'bullet', require: !!ENV['BULLET']
gem 'better_errors' gem 'better_errors'
gem 'binding_of_caller' gem 'binding_of_caller'
gem 'annotate'
# waiting on 2.7.5 per: https://github.com/ctran/annotate_models/pull/595
if rails_master?
gem 'annotate', git: 'https://github.com/ctran/annotate_models.git'
else
gem 'annotate'
end
end end
# this is an optional gem, it provides a high performance replacement # this is an optional gem, it provides a high performance replacement