From dbfa50769eeff0dae633b8879753c37217f3292d Mon Sep 17 00:00:00 2001 From: Patricio Mac Adden Date: Mon, 11 Mar 2013 21:20:06 -0300 Subject: [PATCH] net-http-server is not a dependency when RUBY_VERSION == 1.8.7 || RUBY_ENGINE =~ /jruby|rbx/ --- Gemfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 182a9b64..a334f32e 100644 --- a/Gemfile +++ b/Gemfile @@ -75,12 +75,9 @@ if RUBY_ENGINE != 'jruby' or not ENV['TRAVIS'] end gem 'RedCloth' unless RUBY_ENGINE == "macruby" gem 'puma' - - ## bluecloth is broken - #gem 'bluecloth' end -gem 'net-http-server' +gem 'net-http-server' unless RUBY_VERSION == '1.8.7' || RUBY_ENGINE =~ /jruby|rbx/ platforms :ruby_18, :jruby do gem 'json' unless RUBY_VERSION > '1.9' # is there a jruby but 1.8 only selector?