File: slack-notifier.gemspec

package info (click to toggle)
ruby-slack-notifier 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: ruby: 1,076; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 689 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

require File.expand_path("../lib/slack-notifier/version", __FILE__)

Gem::Specification.new do |s|
  s.name          = "slack-notifier"
  s.version       = Slack::Notifier::VERSION
  s.platform      = Gem::Platform::RUBY

  s.summary       = "A slim ruby wrapper for posting to slack webhooks"
  s.description   = " A slim ruby wrapper for posting to slack webhooks "
  s.authors       = ["Steven Sloan"]
  s.email         = ["stevenosloan@gmail.com"]
  s.homepage      = "http://github.com/stevenosloan/slack-notifier"
  s.license       = "MIT"

  s.files         = Dir["{lib}/**/*.rb"]
  s.test_files    = Dir["spec/**/*.rb"]
  s.require_path  = "lib"
end