From cba92b308f894ef02b89c23ea6179faff6138772 Mon Sep 17 00:00:00 2001 From: jfarrell Date: Mon, 25 Nov 2013 13:30:41 -0500 Subject: [PATCH] THRIFT-2145:Rack and Thin are not just development dependencies Client: rb Patch: Nick Sieger The rack and thin gems should be specified as full dependencies, not just development dependencies. --- lib/rb/lib/thrift.rb | 1 - lib/rb/spec/thin_http_server_spec.rb | 1 + lib/rb/thrift.gemspec | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rb/lib/thrift.rb b/lib/rb/lib/thrift.rb index 2443ebd1..fb9e04a2 100644 --- a/lib/rb/lib/thrift.rb +++ b/lib/rb/lib/thrift.rb @@ -62,6 +62,5 @@ require 'thrift/server/nonblocking_server' require 'thrift/server/simple_server' require 'thrift/server/threaded_server' require 'thrift/server/thread_pool_server' -require 'thrift/server/thin_http_server' require 'thrift/thrift_native' diff --git a/lib/rb/spec/thin_http_server_spec.rb b/lib/rb/spec/thin_http_server_spec.rb index f17ea924..55208392 100644 --- a/lib/rb/spec/thin_http_server_spec.rb +++ b/lib/rb/spec/thin_http_server_spec.rb @@ -19,6 +19,7 @@ require 'spec_helper' require 'rack/test' +require 'thrift/server/thin_http_server' describe Thrift::ThinHTTPServer do diff --git a/lib/rb/thrift.gemspec b/lib/rb/thrift.gemspec index 67cc3c9c..2cb12878 100644 --- a/lib/rb/thrift.gemspec +++ b/lib/rb/thrift.gemspec @@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| s.name = 'thrift' - s.version = '0.9.0.1' + s.version = '1.0.0.0' s.authors = ['Thrift Developers'] s.email = ['dev@thrift.apache.org'] s.homepage = 'http://thrift.apache.org' -- 2.17.1