-
Notifications
You must be signed in to change notification settings - Fork 24
/
sparsam.gemspec
32 lines (24 loc) · 1.05 KB
/
sparsam.gemspec
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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = 'sparsam'
s.version = '0.2.12'
s.authors = ['Airbnb Thrift Developers']
s.email = ['[email protected]']
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.rdoc_options = %w(--line-numbers --inline-source --title Thrift --main README)
s.files = Dir.glob("{lib,spec,ext}/**/*.{c,h,rb,cpp}")
s.test_files = Dir.glob("{test,spec,benchmark}/**/*")
s.executables = Dir.glob("{bin}/**/*")
s.extra_rdoc_files = ["README.md"] + Dir.glob("{ext,lib}/**/*.{c,h,rb,cpp}")
s.require_paths = %w(lib ext)
s.add_development_dependency 'rspec'
s.add_development_dependency "bundler"
s.add_development_dependency 'rake'
s.add_development_dependency 'rubocop-airbnb'
s.add_development_dependency 'rubocop-rake'
end