-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpost-it.gemspec
23 lines (21 loc) · 1.05 KB
/
post-it.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'post-it/version'
Gem::Specification.new do |gem|
gem.name = "post-it"
gem.version = PostIt::VERSION
gem.authors = ["Joe Workman"]
gem.email = ["joe at workmanmail.com"]
gem.description = %q{A simple utlity that uses `Sticky Notificiations.app` to post messages to Notification Center on Mac OS X.}
gem.summary = %q{A simple utlity that uses `Sticky Notificiations.app` to post messages to Notification Center on Mac OS X.}
gem.homepage = "https://github.com/joeworkman/post-it"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency('rdoc')
gem.add_development_dependency('aruba')
gem.add_development_dependency('rake','~> 0.9.2')
gem.add_dependency('methadone', '~>1.2.1')
end