Sha256: 962bbabec1bdb197f6ed1525fd744c450231c09965b0edf7006971c1dac3cab1
Contents?: true
Size: 1.88 KB
Versions: 6
Compression:
Stored size: 1.88 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 "bundler", ">= 2.2.10" spec.add_development_dependency "rake", "~> 13.0" spec.add_development_dependency "rspec", "~> 3.2" end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
svix-1.21.0 | svix.gemspec |
svix-1.20.0 | svix.gemspec |
svix-1.19.0 | svix.gemspec |
svix-1.18.0 | svix.gemspec |
svix-1.17.0 | svix.gemspec |
svix-1.16.0 | svix.gemspec |