File: spamcheck.gemspec

package info (click to toggle)
ruby-spamcheck 1.10.1-2
  • links: PTS, VCS
  • area: contrib
  • in suites: sid, trixie
  • size: 668 kB
  • sloc: python: 1,261; ruby: 484; makefile: 54; sh: 13
file content (21 lines) | stat: -rw-r--r-- 830 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
prefix = 'ruby'
$LOAD_PATH.unshift(File.expand_path(File.join(prefix), __dir__))
require 'spamcheck/version'

Gem::Specification.new do |spec|
  spec.name          = "spamcheck"
  spec.version       = Spamcheck::VERSION
  spec.authors       = ["GitLab Security Automation"]
  spec.email         = ["security-automation@gitlab.com"]

  spec.summary       = %q{Auto-generated gRPC client for Spamcheck}
  spec.description   = %q{Auto-generated gRPC client for Spamcheck.}
  spec.homepage      = "https://gitlab.com/gitlab-org/gl-security/security-engineering/security-automation/spam/spamcheck"
  spec.license       = "MIT"

  spec.files         = `find ./#{prefix}`.split("\n").reject { |f| f.match(%r{^#{prefix}/(test|spec|features)/}) }
  spec.require_paths = [prefix]

  spec.add_dependency "grpc", "~> 1.0"
end