Sha256: bbcab3f7b86708bc5c8a775cdef07a7ca6036d983df9f455a7568bc180d8bd5c

Contents?: true

Size: 1.58 KB

Versions: 5

Compression:

Stored size: 1.58 KB

Contents

# 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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
protobuf-1.1.3 protobuf.gemspec
protobuf-1.1.2 protobuf.gemspec
protobuf-1.1.1 protobuf.gemspec
protobuf-1.1.0.beta2 protobuf.gemspec
protobuf-1.1.0.beta1 protobuf.gemspec