Sha256: 3ddb4f824882fc50865e48dd9a6099c075b33a9550ffb37e93c00e35a011affe

Contents?: true

Size: 1.83 KB

Versions: 16

Compression:

Stored size: 1.83 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "svix/version"

Gem::Specification.new do |spec|
  spec.name          = "svix"
  spec.version       = Svix::VERSION
  spec.authors       = ["Svix"]
  spec.email         = ["support@svix.com"]
  spec.license       = "MIT"

  spec.summary       = "Svix webhooks API client and webhook verification library"
  spec.description   = "Svix makes webhooks easy and reliable.  " \
                       "Learn more at https://www.svix.com"
  spec.homepage      = "https://www.svix.com"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  if spec.respond_to?(:metadata)
    spec.metadata["allowed_push_host"] = "https://rubygems.org"

    spec.metadata["homepage_uri"] = spec.homepage
    spec.metadata["source_code_uri"] = "https://github.com/svix/svix-libs"
    spec.metadata["changelog_uri"] = "https://github.com/svix/svix-libs/blob/main/ChangeLog.md"
  else
    raise "RubyGems 2.0 or newer is required to protect against " \
      "public gem pushes."
  end

  # Specify which files should be added to the gem when it is released.
  ignored = Regexp.union(
    /\A\.openapi-generator/,
    /\Aspec/,
    /\Apkg/,
    /\Atemplates/,
    /\A.gitignore/,
    /\A.openapi-generator-ignore/,
    /\Aopenapi-generator-config.json/,
    /.gem\z/
  )
  spec.files = Dir['**/*'].reject {|f| !File.file?(f) || ignored.match(f) }

  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'

  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "rspec", "~> 3.2"
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
svix-1.38.0 svix.gemspec
svix-1.37.0 svix.gemspec
svix-1.36.0 svix.gemspec
svix-1.35.0 svix.gemspec
svix-1.34.0 svix.gemspec
svix-1.33.0 svix.gemspec
svix-1.32.0 svix.gemspec
svix-1.31.0 svix.gemspec
svix-1.30.0 svix.gemspec
svix-1.29.0 svix.gemspec
svix-1.28.0 svix.gemspec
svix-1.27.0 svix.gemspec
svix-1.26.0 svix.gemspec
svix-1.25.0 svix.gemspec
svix-1.23.0 svix.gemspec
svix-1.22.0 svix.gemspec