forked from arthurnn/twirp-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twirp.gemspec
30 lines (24 loc) · 1.19 KB
/
twirp.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'twirp/version'
Gem::Specification.new do |spec|
spec.name = "twirp"
spec.version = Twirp::VERSION
spec.authors = ["Cyrus A. Forbes", "Mario Izquierdo"]
spec.email = ["[email protected]", "[email protected]"]
spec.summary = %q{Twirp services in Ruby.}
spec.description = %q{Twirp is a simple RPC framework with protobuf service definitions. The Twirp gem provides native support for Ruby.}
spec.homepage = "https://github.com/arthurnn/twirp-ruby"
spec.license = "MIT"
spec.files = Dir['lib/**/*'] + %w(Gemfile LICENSE README.md twirp.gemspec)
spec.test_files = Dir['test/**/*']
spec.require_paths = ["lib"]
spec.required_ruby_version = '>= 1.9'
spec.add_runtime_dependency 'google-protobuf', '~> 3.0', '>= 3.7.0'
spec.add_runtime_dependency 'faraday', '< 3' # for clients
spec.add_dependency 'rack', '>= 2.2.3' # for service server handling
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'minitest', '>= 5'
spec.add_development_dependency 'rake'
end