public
Clone URL: git://github.com/defunkt/rtimeout.git
Search Repo:
defunkt (author)
Thu Mar 27 13:24:44 -0700 2008
commit  33a89829ddfb82306bad1d19891f5044d7f6ec04
tree    1bd8f5583c29ccbb65b48efafdcb8258ebf55b92
parent  f3c8d00efa8eca15af4b73b13618ea699247e76e
rtimeout / Rakefile
100644 22 lines (17 sloc) 0.538 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'rubygems'
require 'rake'
 
version = '1.0'
 
begin
  require 'echoe'
 
  Echoe.new('rtimeout', version) do |p|
    p.rubyforge_name = 'github'
    p.summary = "For timing out system commands."
    p.url = "http://github.com/defunkt/rtimeout"
    p.author = 'Chris Wanstrath'
    p.email = "chris@ozmm.org"
    p.dependencies = ['open4 >=0.9.6']
  end
 
rescue LoadError => boom
  puts "You are missing a dependency required for meta-operations on this gem."
  puts "#{boom.to_s.capitalize}."
end