Sha256: e256783ba47b67bc0d6fe5d619b6078bc39a4d2bdda935c97194315bfefcf714

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

$LOAD_PATH.push File.expand_path('lib', __dir__)

require 'zeebe/client/version'

Gem::Specification.new do |s|
  s.name = 'zeebe-client'
  s.version = Zeebe::Client::VERSION
  s.summary = 'Zeebe Client'
  s.description = 'Zeebe client containing a simple wrapper for the GRPC protocol used by Zeebe.io.'
  s.author = 'Christian Nicolai'
  s.email = 'chrnicolai@gmail.com'
  s.homepage = 'https://github.com/zeebe-io/zeebe-client-ruby'
  s.license = 'Apache-2.0'

  s.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ['lib']

  s.required_ruby_version = '>= 2.5'

  s.add_runtime_dependency 'grpc', '~> 1.32'

  s.add_development_dependency 'bundler'
  s.add_development_dependency 'bundler-audit', '~> 0.8.0'
  s.add_development_dependency 'grpc-tools', '~> 1.32'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rspec'
  s.add_development_dependency 'rubocop', '~> 1.18.1'
  s.add_development_dependency 'rubocop-rake'
  s.add_development_dependency 'rubocop-rspec'
  s.add_development_dependency 'solargraph'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
zeebe-client-0.15.1 zeebe-client.gemspec
zeebe-client-0.15.0 zeebe-client.gemspec
zeebe-client-0.14.2 zeebe-client.gemspec