You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jf...@apache.org on 2013/11/25 19:31:16 UTC

git commit: THRIFT-2145:Rack and Thin are not just development dependencies Client: rb Patch: Nick Sieger

Updated Branches:
  refs/heads/master f35975b67 -> cba92b308


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.


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/cba92b30
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/cba92b30
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/cba92b30

Branch: refs/heads/master
Commit: cba92b308f894ef02b89c23ea6179faff6138772
Parents: f35975b
Author: jfarrell <jf...@apache.org>
Authored: Mon Nov 25 13:30:41 2013 -0500
Committer: jfarrell <jf...@apache.org>
Committed: Mon Nov 25 13:30:41 2013 -0500

----------------------------------------------------------------------
 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(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/cba92b30/lib/rb/lib/thrift.rb
----------------------------------------------------------------------
diff --git a/lib/rb/lib/thrift.rb b/lib/rb/lib/thrift.rb
index 2443ebd..fb9e04a 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'

http://git-wip-us.apache.org/repos/asf/thrift/blob/cba92b30/lib/rb/spec/thin_http_server_spec.rb
----------------------------------------------------------------------
diff --git a/lib/rb/spec/thin_http_server_spec.rb b/lib/rb/spec/thin_http_server_spec.rb
index f17ea92..5520839 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
 

http://git-wip-us.apache.org/repos/asf/thrift/blob/cba92b30/lib/rb/thrift.gemspec
----------------------------------------------------------------------
diff --git a/lib/rb/thrift.gemspec b/lib/rb/thrift.gemspec
index 67cc3c9..2cb1287 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'