Moving from govendor to dep, updated dependencies (#48)
* Moving from govendor to dep. * Making the pull request template more friendly. * Fixing akward space in PR template. * goimports run on whole project using ` goimports -w $(find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./gen-go/*")` source of command: https://gist.github.com/bgentry/fd1ffef7dbde01857f66
This commit is contained in:
parent
9631aa3aab
commit
8d445c1c77
2186 changed files with 400410 additions and 352 deletions
37
vendor/git.apache.org/thrift.git/lib/rb/thrift.gemspec
generated
vendored
Normal file
37
vendor/git.apache.org/thrift.git/lib/rb/thrift.gemspec
generated
vendored
Normal file
|
@ -0,0 +1,37 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
$:.push File.expand_path("../lib", __FILE__)
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = 'thrift'
|
||||
s.version = '0.10.0.0'
|
||||
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[README.md] + Dir.glob("{ext,lib}/**/*.{c,h,rb}")
|
||||
|
||||
s.require_paths = %w[lib ext]
|
||||
|
||||
s.add_development_dependency 'rspec', ['>= 2.10.0', '< 2.14.0']
|
||||
s.add_development_dependency "rack", "~> 1.5"
|
||||
s.add_development_dependency "rack-test", "~> 0.6"
|
||||
s.add_development_dependency "thin", "~> 1.5"
|
||||
s.add_development_dependency "bundler", "~> 1"
|
||||
s.add_development_dependency 'rake', '~> 10.5'
|
||||
end
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue