Spakman / jobby

Jobby is a small utility and library for managing and running jobs in concurrent processes.

This URL has Read+Write access

jobby / jobby.gemspec
100644 19 lines (18 sloc) 0.644 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rubygems'
SPEC = Gem::Specification.new do |spec|
  spec.rubyforge_project = "jobby"
  spec.name = "jobby"
  spec.version = "%%%VERSION%%%"
  spec.author = "Mark Somerville"
  spec.email = "mark@scottishclimbs.com"
  spec.homepage = "http://mark.scottishclimbs.com/"
  spec.platform = Gem::Platform::RUBY
  spec.summary = "Jobby is a small utility and library for managing running jobs in concurrent processes."
  candidates = Dir.glob("{bin,lib,spec}/**/*")
  puts candidates.inspect
  spec.files = candidates
  spec.executables = "jobby"
  spec.require_path = "lib"
  spec.has_rdoc = true
  spec.extra_rdoc_files = [ "README" ]
end