forked from rajofchennai/thrift_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththrift_client.gemspec
More file actions
33 lines (29 loc) · 2.42 KB
/
thrift_client.gemspec
File metadata and controls
33 lines (29 loc) · 2.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "thrift_client"
s.version = "0.8.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0.8") if s.respond_to? :required_rubygems_version=
s.authors = ["Evan Weaver, Ryan King, Jeff Hodges"]
s.date = "2012-01-19"
s.description = "A Thrift client wrapper that encapsulates some common failover behavior."
s.email = ""
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.rdoc", "lib/thrift_client.rb", "lib/thrift_client/abstract_thrift_client.rb", "lib/thrift_client/thrift_connection.rb", "lib/thrift_client/thrift_connection/base.rb", "lib/thrift_client/thrift_connection/factory.rb", "lib/thrift_client/thrift_connection/http.rb", "lib/thrift_client/thrift_connection/socket.rb", "lib/thrift_client/event_machine.rb", "lib/thrift_client/simple.rb", "lib/thrift_client/thrift.rb"]
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.rdoc", "Rakefile", "lib/thrift_client.rb", "lib/thrift_client/abstract_thrift_client.rb", "lib/thrift_client/thrift_connection.rb", "lib/thrift_client/thrift_connection/base.rb", "lib/thrift_client/thrift_connection/factory.rb", "lib/thrift_client/thrift_connection/http.rb", "lib/thrift_client/thrift_connection/socket.rb", "lib/thrift_client/event_machine.rb", "lib/thrift_client/simple.rb", "lib/thrift_client/thrift.rb", "test/greeter/greeter.rb", "test/greeter/greeter.thrift", "test/greeter/server.rb", "test/multiple_working_servers_test.rb", "test/simple_test.rb", "test/test_helper.rb", "test/thrift_client_http_test.rb", "test/thrift_client_test.rb", "thrift_client.gemspec"]
s.homepage = "http://fauna.github.com/fauna/thrift_client/"
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Thrift_client", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = "fauna"
s.rubygems_version = "1.8.15"
s.summary = "A Thrift client wrapper that encapsulates some common failover behavior."
s.test_files = ["test/multiple_working_servers_test.rb", "test/simple_test.rb", "test/test_helper.rb", "test/thrift_client_http_test.rb", "test/thrift_client_test.rb"]
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<thrift>, ["~> 0.8.0"])
else
s.add_dependency(%q<thrift>, ["~> 0.8.0"])
end
else
s.add_dependency(%q<thrift>, ["~> 0.8.0"])
end
end