forked from jjb/please
-
Notifications
You must be signed in to change notification settings - Fork 0
/
please.gemspec
33 lines (26 loc) · 923 Bytes
/
please.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
30
31
32
33
Gem::Specification.new do |s|
s.name = 'please'
s.version = '0.0.4'
s.date = '2010-11-25'
s.homepage = "https://github.com/jjb/please/"
s.summary = "Please will do stuff for you."
s.description = <<-EOS
Email, SMS, or arbitrary shell commands:
$ please email me "hello"
$ please email [email protected] "Hi Sally."
$ please sms me "what is up."
$ please sms [email protected] "I CAN HAZ CONVENIENCE"
$ please exec "<arbitrary shell command, in quotes>
Wait a certain amount of time first:
$ please sms me "`uptime`" in 5 minutes
EOS
s.authors = ['John Joseph Bachir']
s.email = '[email protected]'
s.rubyforge_project = 'please'
s.require_path = '.'
s.executables = ['please']
s.has_rdoc = false
s.add_dependency 'pony', '>=1.0'
s.add_dependency 'activesupport', '>=3.0.0'
s.files = Dir['please']
end