After update from resque 2.1.0 to 2.2.0 I get following error when I load the resque-web website: ``` NameError: uninitialized constant Resque::Version from resque-web (0.0.12) app/views/layouts/resque_web/application.html.erb:73 ``` The constant definition was changed in `resque/lib/resque/version.rb`: From: ``` module Resque Version = VERSION = '2.0.0' end ``` To: ``` module Resque VERSION = '2.0.0' end ```