-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeri-notify.gemspec
29 lines (23 loc) · 1003 Bytes
/
geri-notify.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
27
28
29
# encoding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'geri-notify/version'
Gem::Specification.new do |spec|
spec.name = 'geri-notify'
spec.version = GeriNotify::VERSION
spec.authors = ['Sascha Kruse']
spec.email = ['knopwob@gmail.com']
spec.summary = 'Notification Daemon'
spec.description = 'something something notifcation something'
spec.homepage = 'https://github.com/knopwob/geri-notify'
spec.license = 'MIT'
spec.files = `git ls-files`.split("\n")
spec.executables = ['geri-notify']
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 1.9.3'
spec.add_runtime_dependency 'ruby-dbus', '~> 0.11.0'
spec.add_development_dependency 'bundler', '~> 1.5'
#spec.add_development_dependency 'rake', '~> 10.1'
spec.add_development_dependency 'pry', '0.9.12.6'
end