Sha256: 0f99b5a9b1680353b7aa1eaaaa1c5778a99adcbd4b73fbc475b04c782ba24faf

Contents?: true

Size: 1.32 KB

Versions: 8

Compression:

Stored size: 1.32 KB

Contents

# coding: utf-8

lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'datadog/appsec/waf/version'

Gem::Specification.new do |spec|
  spec.name                  = 'libddwaf'
  spec.version               = Datadog::AppSec::WAF::VERSION::STRING
  spec.required_ruby_version = [">= #{Datadog::AppSec::WAF::VERSION::MINIMUM_RUBY_VERSION}"]
  spec.required_rubygems_version = '>= 2.0.0'
  spec.authors               = ['Datadog, Inc.']
  spec.email                 = ['dev@datadoghq.com']

  spec.summary     = 'Datadog WAF'
  spec.description = <<-EOS.gsub(/^[\s]+/, '')
    libddwaf packages a WAF implementation in C++, exposed to Ruby
  EOS

  spec.homepage = 'https://github.com/DataDog/libddwaf'
  spec.license  = 'BSD-3-Clause'

  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 { |f| f.match(%r{^(spec|[.]circleci)/}) }
    .reject do |f|
      ['.dockerignore', '.env', '.rspec', '.rubocop.yml', '.rubocop_todo.yml',
      '.simplecov', 'Gemfile', 'Rakefile', 'docker-compose.yml'].include?(f)
    end
  spec.require_paths = ['lib']

  spec.add_dependency 'ffi', '~> 1.0'
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
libddwaf-1.3.0.2.0 libddwaf.gemspec
libddwaf-1.3.0.1.0 libddwaf.gemspec
libddwaf-1.3.0.0.0 libddwaf.gemspec
libddwaf-1.3.0.1.0.beta1 libddwaf.gemspec
libddwaf-1.3.0.0.0.beta1 libddwaf.gemspec
libddwaf-1.2.1.0.0.beta1 libddwaf.gemspec
libddwaf-1.0.14.2.1.beta1 libddwaf.gemspec
libddwaf-1.0.14.2.0.beta1 libddwaf.gemspec