Rails developers, did you just start getting the annoying error “warning: already initialized constant WFKV_” when starting your server, running specs/test and running take tasks?
Well, if you want to get rid of it, just use the previous version of the Rack gem.
[ruby title="Gemfile"]
gem 'rack' , '1.3.3'
[/ruby]
Bye, bye warning!
warning: already initialized constant WFKV_
Commentary
Rails developers, did you just start getting the annoying error “warning: already initialized constant WFKV_” when starting your server, running specs/test and running take tasks?
Well, if you want to get rid of it, just use the previous version of the Rack gem.
[ruby title="Gemfile"] gem 'rack' , '1.3.3' [/ruby]
Bye, bye warning!