-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalertifii.gemspec
26 lines (23 loc) · 1021 Bytes
/
alertifii.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/alertifii/version', __dir__)
Gem::Specification.new do |spec|
spec.name = 'alertifii'
spec.authors = ['Austin Miller']
spec.email = ['[email protected]']
spec.date = Time.now.strftime('%Y-%m-%d')
spec.version = Alertifii::VERSION
spec.platform = Gem::Platform::RUBY
spec.license = 'MIT'
# descriptions
spec.description = 'Api (and CLI) to interface with alertifii.com'
spec.summary = 'This spec provides both an API and CLI interface to alertifii.com.'
spec.homepage = 'https://github.com/armiiller/alertifii-ruby'
# 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