forked from ruby-protobuf/protobuf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
protobuf.gemspec
30 lines (25 loc) · 1.58 KB
/
protobuf.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
# encoding: UTF-8
$:.push File.expand_path("./lib", File.dirname(__FILE__))
require "protobuf/version"
Gem::Specification.new do |s|
s.name = 'protobuf'
s.version = Protobuf::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.authors = ['BJ Neilsen', 'Brandon Dewitt']
s.email = ["bj.neilsen@gmail.com", "brandonsdewitt+protobuf@gmail.com"]
s.homepage = %q{https://github.com/localshred/protobuf}
s.summary = 'Ruby implementation for Protocol Buffers. Works with other protobuf rpc implementations (e.g. Java, Python, C++).'
s.description = s.summary + "\n\nThis gem has diverged from https://github.com/macks/ruby-protobuf. All credit for serialization and rprotoc work most certainly goes to the original authors. All RPC implementation code (client/server/service) was written and is maintained by this author. Attempts to reconcile the original codebase with the current RPC implementation went unsuccessful."
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'eventmachine', '~> 0.12.10'
s.add_dependency 'eventually', '~> 0.1.0'
s.add_dependency 'json_pure', '~> 1.6.4'
s.add_development_dependency 'rake', '~> 0.8.7'
s.add_development_dependency 'rspec', '~> 2.8.0'
s.add_development_dependency 'yard', '~> 0.7.4'
s.add_development_dependency 'redcarpet', '~> 1.17.2'
s.add_development_dependency 'simplecov', '~> 0.5.4'
end