Sha256: 6772d06b7b3ea67c2f5d112190b07bc80d64c380ea3e9ff66061caee3f4a333c

Contents?: true

Size: 1.66 KB

Versions: 5

Compression:

Stored size: 1.66 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      = "https://github.com/mxenabled/protobuf-nats"
  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 "activesupport", ">= 3.2"
  spec.add_runtime_dependency "connection_pool"
  spec.add_runtime_dependency "protobuf", "~> 3.7", ">= 3.7.2"
  spec.add_runtime_dependency "nats-pure", "~> 0.3", "< 0.4"

  spec.add_development_dependency "bundler"
  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

5 entries across 5 versions & 1 rubygems

Version Path
protobuf-nats-0.10.8 protobuf-nats.gemspec
protobuf-nats-0.10.7 protobuf-nats.gemspec
protobuf-nats-0.10.6 protobuf-nats.gemspec
protobuf-nats-0.10.5 protobuf-nats.gemspec
protobuf-nats-0.10.4 protobuf-nats.gemspec