forked from macks/ruby-protobuf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathruby_protobuf.gemspec
31 lines (24 loc) · 1.3 KB
/
ruby_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
31
# -*- encoding: utf-8 -*-
$:.push(File.dirname(__FILE__) + '/lib')
require 'ruby_protobuf'
Gem::Specification.new do |s|
s.name = 'ruby_protobuf'
s.version = RubyProtobuf::VERSION
s.platform = Gem::Platform::RUBY
s.date = %q{2011-09-23}
s.required_rubygems_version = ">= 1.3.6"
s.authors = ['BJ Neilsen']
s.email = ["[email protected]"]
s.homepage = %q{http://github.com/localshred/ruby-protobuf}
s.summary = 'Ruby implementation for Protocol Buffers. Works with other protobuf rpc implementations.'
s.description = s.summary
s.require_paths = ["lib"]
s.executables = ['rprotoc', 'rpc_server']
s.files = Dir.glob('lib/**/*.{erb,rb,y,ebnf,proto}') + %w(History.txt README.txt Rakefile TODO bin/rprotoc bin/rpc_server)
s.test_files = Dir.glob('test/**/*.rb')
s.extra_rdoc_files = ['History.txt', 'README.txt']
s.rdoc_options = ["--main", "README.txt"]
s.add_dependency 'eventmachine', '~> 0.12.10'
s.add_development_dependency 'rake', '~> 0.8.7'
s.add_development_dependency 'rspec', '~> 2.3.0'
end