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:
parent
1816bdf46e
commit
1d2c4b0eee
6
Gemfile
6
Gemfile
|
@ -142,8 +142,14 @@ 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'
|
||||||
|
|
||||||
|
# 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'
|
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
|
||||||
# to String#blank? a method that is called quite frequently in current
|
# to String#blank? a method that is called quite frequently in current
|
||||||
|
|
Loading…
Reference in New Issue