Revision 5a84219de709969801b3c95a7103d369e2333d64 authored by Michael Grosser on 15 August 2022, 23:11:32 UTC, committed by Michael Grosser on 15 August 2022, 23:11:32 UTC
1 parent 9ec5c61
Raw File
kennel.gemspec
# frozen_string_literal: true
name = "kennel"
$LOAD_PATH << File.expand_path("lib", __dir__)
require "#{name}/version"

Gem::Specification.new name, Kennel::VERSION do |s|
  s.summary = "Keep datadog monitors/dashboards/etc in version control, avoid chaotic management via UI"
  s.authors = ["Michael Grosser"]
  s.email = "michael@grosser.it"
  s.homepage = "https://github.com/grosser/#{name}"
  s.files = `git ls-files lib Readme.md template/Readme.md`.split("\n")
  s.license = "MIT"
  s.required_ruby_version = ">= 2.6.0"
  s.add_runtime_dependency "faraday", "~> 1.8"
  s.add_runtime_dependency "hashdiff", "~> 1.0"
  s.add_runtime_dependency "net-http-persistent", "~> 4.0"
  s.add_runtime_dependency "zeitwerk", "~> 2.4"
end
back to top