-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgrpc-api-assistant.gemspec
33 lines (25 loc) · 1.15 KB
/
grpc-api-assistant.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'grpc-api-assistant/version'
Gem::Specification.new do |spec|
spec.name = 'cucumber-grpc-api-assistant'
spec.version = GrpcApiAssistant::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Garrett Cramer', 'Eric Kaun', 'Michael Keeling', 'Michael Lipschultz']
spec.email = ['[email protected]']
spec.summary = 'A set of Cucumber steps for testing gRPC services'
spec.description = 'A set of Cucumber steps for testing gRPC services.'
spec.homepage = 'https://github.com/michaelkeeling/cucumber-grpc-api-assistant'
spec.files = `git ls-files`.split("\n")
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.2.0'
spec.license = 'MIT'
spec.add_dependency('grpc', '~> 1.52')
spec.add_dependency('grpc-tools', '~> 1.51')
spec.add_dependency('net-ssh', '~> 7.0')
spec.add_dependency('cucumber', '~> 9.2')
spec.add_dependency('rspec-expectations', '~> 3.12')
spec.add_development_dependency('pry', '~> 0.14')
spec.add_development_dependency('pry-byebug', '~> 3.10')
spec.add_development_dependency('rake', '~> 13.0')
end