Files
ubicloud/kubernetes/csi/ubi-csi.gemspec
Daniel Farina cf9d8e755f Add tests for UbiCSI
New tests will cover 100% of lines and branches in the CSI code.
2025-07-25 15:20:55 +02:00

27 lines
819 B
Ruby

# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "ubi-csi"
spec.version = "0.1.0"
spec.authors = ["Ubicloud"]
spec.email = ["support@ubicloud.com"]
spec.summary = "Ubicloud CSI Driver"
spec.description = "Container Storage Interface driver for Ubicloud"
spec.homepage = "https://github.com/ubicloud/ubicloud"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.files = Dir["lib/**/*", "bin/**/*"]
spec.bindir = "bin"
spec.executables = ["ubi-csi-server"]
spec.require_paths = ["lib"]
spec.add_dependency "grpc", "~> 1.73"
spec.add_dependency "grpc-tools", "~> 1.73"
spec.add_development_dependency "rspec", "~> 3.12"
spec.add_development_dependency "simplecov", "~> 0.22"
spec.add_development_dependency "simplecov-console", "~> 0.9"
end