-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperchfall-notify.gemspec
More file actions
34 lines (27 loc) · 1.27 KB
/
perchfall-notify.gemspec
File metadata and controls
34 lines (27 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true
require_relative "lib/perchfall/notify/version"
Gem::Specification.new do |spec|
spec.name = "perchfall-notify"
spec.version = Perchfall::Notify::VERSION
spec.authors = ["Jim Remsik"]
spec.email = ["jim@beflagrant.com"]
spec.summary = "Notification channels for Perchfall synthetic monitoring"
spec.description = <<~DESC
Delivers Perchfall check reports via configurable notification channels.
Ships with Slack support; extensible to SMS, webhooks, and beyond.
DESC
spec.homepage = "https://github.com/beflagrant/perchfall-notify"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["source_code_uri"] = "https://github.com/beflagrant/perchfall-notify"
spec.metadata["changelog_uri"] = "https://github.com/beflagrant/perchfall-notify/blob/main/CHANGELOG.md"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = `git ls-files -z`.split("\x0").select do |f|
f.match?(%r{^lib/}) || %w[LICENSE.txt README.md CHANGELOG.md].include?(f)
end
spec.require_paths = ["lib"]
spec.add_dependency "perchfall", ">= 0.3.0"
spec.add_development_dependency "rspec", "~> 3.13"
spec.add_development_dependency "rubocop", "~> 1.70"
spec.add_development_dependency "simplecov", "~> 0.22"
end