I am new to Rails. I continue to see these deprecation warnings when I launch my application:
DEPRECATION WARNING: ref is deprecated and will be removed from Rails 3.2. (called from <top (required)> at D:/dev/AquaticKodiak/config/application.rb:12) DEPRECATION WARNING: new is deprecated and will be removed from Rails 3.2. (called from <top (required)> at D:/dev/AquaticKodiak/config/application.rb:12)
OK, what's on line 12? It:
Bundler.require(:default, :assets, Rails.env)
Hmm, that doesn't narrow it down. This tells me that one of the stones associated with my application uses a keyword that will disappear soon. I really would like to find out which one. All gems in my gemfile use the syntax >= [version] , with the exception of those coming from github. I suspect github stuff is causing this, but how do you know which project it is? Pulling code and searching for a keyword looks like work - is there an easier way?
jcollum
source share