-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththrift.gemspec
More file actions
34 lines (25 loc) · 1.03 KB
/
thrift.gemspec
File metadata and controls
34 lines (25 loc) · 1.03 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 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = 'thrift'
s.version = '0.9.0.1'
s.authors = ['Thrift Developers']
s.email = ['dev@thrift.apache.org']
s.homepage = 'http://thrift.apache.org'
s.summary = %q{Ruby bindings for Apache Thrift}
s.description = %q{Ruby bindings for the Apache Thrift RPC system}
s.license = 'Apache 2.0'
s.extensions = ['ext/extconf.rb']
s.has_rdoc = true
s.rdoc_options = %w[--line-numbers --inline-source --title Thrift --main README]
s.rubyforge_project = 'thrift'
dir = File.expand_path(File.dirname(__FILE__))
s.files = Dir.glob("{lib,spec}/**/*")
s.test_files = Dir.glob("{test,spec,benchmark}/**/*")
s.executables = Dir.glob("{bin}/**/*")
s.extra_rdoc_files = %w[CHANGELOG README] + Dir.glob("{ext,lib}/**/*.{c,h,rb}")
s.require_paths = %w[lib ext]
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "1.3.2"
s.add_development_dependency "mongrel"
end