jruby / jruby-rack

Rack for JRuby and Java appservers
MIT License
397 stars 137 forks source link

Can't run Rack::Handler::Servlet spec on its own #172

Closed jwinter closed 10 years ago

jwinter commented 10 years ago
rspec src/spec/ruby/rack/handler/servlet_spec.rb

raises a bunch of errors regarding the uninitialized constant Rack::VERSION. Perhaps it's missing some setup?

kares commented 10 years ago

yep, we're more of a mvn project than a ruby one ... might change "soon-ish" with setting up a Mavenfile. but 1.1-stable will likely stay as is, you need to run rake spec SPEC_OPTS="-e Rack::Handler" (first)

jwinter commented 10 years ago

Ah okay, that works for me now.