Sha256: a1f707d3dad9f93c54ac85d367581137fb3ded2199b771035facae1136f4b46e

Contents?: true

Size: 1.67 KB

Versions: 5

Compression:

Stored size: 1.67 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 "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.3 protobuf-nats.gemspec
protobuf-nats-0.10.3.pre0 protobuf-nats.gemspec
protobuf-nats-0.10.2 protobuf-nats.gemspec
protobuf-nats-0.11.0.pre1 protobuf-nats.gemspec
protobuf-nats-0.11.0.pre0 protobuf-nats.gemspec