Sha256: 8354230ba5f1455bd8edcf0aea52cb33a621b3e12cd4b228c350e920fd694f0a
Contents?: true
Size: 1.65 KB
Versions: 2
Compression:
Stored size: 1.65 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'protobuf/nats/version' Gem::Specification.new do |spec| spec.name = "protobuf-nats" spec.version = Protobuf::Nats::VERSION spec.authors = ["Brandon Dewitt"] spec.email = ["brandonsdewitt@gmail.com"] spec.summary = %q{ ruby-protobuf client/server for nats } spec.description = %q{ ruby-protobuf client/server for nats } #spec.homepage = "TODO: Put your gem's website or public repo URL here." spec.license = "MIT" # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = "https://rubygems.org" else raise "RubyGems 2.0 or newer is required to protect against " \ "public gem pushes." end spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_runtime_dependency "protobuf", "3.7.0.pre3" spec.add_runtime_dependency "connection_pool" spec.add_runtime_dependency "concurrent-ruby" spec.add_runtime_dependency "nats-pure" spec.add_development_dependency "bundler", "~> 1.14" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec" spec.add_development_dependency "benchmark-ips" spec.add_development_dependency "pry" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
protobuf-nats-0.1.1 | protobuf-nats.gemspec |
protobuf-nats-0.1.0 | protobuf-nats.gemspec |