-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpushover.gemspec
26 lines (23 loc) · 1004 Bytes
/
pushover.gemspec
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
require File.expand_path('lib/pushover/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'pushover'
spec.authors = ['Ernie Brodeur']
spec.email = ['[email protected]']
spec.date = Time.now.strftime('%Y-%m-%d')
spec.version = Pushover::VERSION
spec.platform = Gem::Platform::RUBY
spec.license = 'MIT'
# descriptions
spec.description = 'Api (and CLI) to interface with pushover.net'
spec.summary = 'This spec provides both an API and CLI interface to pushover.net.'
spec.homepage = 'https://github.com/erniebrodeur/pushover'
# files
spec.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
# dependencies.
spec.add_runtime_dependency 'excon'
spec.add_runtime_dependency 'gli'
spec.add_runtime_dependency 'oj'
end