thrift_client 0.6.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.6.2 Remove lingering thrift v0.5.0 reference.
2
+
1
3
  v0.6.1 Add connect timeout. Bump thrift dependency to ~> v0.6.0.
2
4
 
3
5
  v0.6.0 Fix bug where we'd try to mark the current server down when we didn't have a current server.
data/lib/thrift_client.rb CHANGED
@@ -1,8 +1,4 @@
1
- require 'rubygems'
2
- gem 'thrift', '~>0.5.0'
3
1
  require 'thrift'
4
-
5
- require 'rubygems'
6
2
  require 'thrift_client/thrift'
7
3
  require 'thrift_client/connection'
8
4
  require 'thrift_client/abstract_thrift_client'
@@ -27,7 +23,6 @@ Valid optional parameters are:
27
23
  <tt>:timeout</tt>:: Specify the default timeout in seconds. Defaults to <tt>1</tt>.
28
24
  <tt>:timeout_overrides</tt>:: Specify additional timeouts on a per-method basis, in seconds. Only works with <tt>Thrift::BufferedTransport</tt>.
29
25
  <tt>:defaults</tt>:: Specify default values to return on a per-method basis, if <tt>:raise</tt> is set to false.
30
-
31
26
  =end rdoc
32
27
 
33
28
  def initialize(client_class, servers, options = {})
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{thrift_client}
5
- s.version = "0.6.1"
5
+ s.version = "0.6.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0.8") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Evan Weaver, Ryan King, Jeff Hodges"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thrift_client
3
3
  version: !ruby/object:Gem::Version
4
- hash: 5
4
+ hash: 3
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 1
10
- version: 0.6.1
9
+ - 2
10
+ version: 0.6.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Evan Weaver, Ryan King, Jeff Hodges