-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnotifiers.gemspec
More file actions
23 lines (19 loc) · 900 Bytes
/
Copy pathnotifiers.gemspec
File metadata and controls
23 lines (19 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "notifiers"
s.version = '2.0.0'
s.platform = Gem::Platform::RUBY
s.authors = ["Tomás D'Stefano"]
s.email = ["tomasdestefi@gmail.com"]
s.homepage = "https://rubygems.org/gems/notifiers"
s.summary = "Cross-platform desktop notifications for macOS and Linux."
s.description = "Send desktop notifications on macOS (terminal-notifier, osascript) and Linux (notify-send, dunstify) in a simple and clean way."
s.license = "MIT"
s.required_ruby_version = ">= 3.0"
s.required_rubygems_version = ">= 3.0"
s.add_development_dependency('rspec', "~> 3.13")
s.add_development_dependency('bundler', ">= 2.0")
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
end