File: Rakefile

package info (click to toggle)
stompserver 0.9.9gem-5
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 424 kB
  • sloc: ruby: 2,765; sh: 162; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (6)
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
# -*- ruby -*-

require 'rubygems'
require 'hoe'
$LOAD_PATH << "./lib"
require 'stomp_server'

Hoe.new('stompserver', StompServer::VERSION) do |p|
  p.rubyforge_name = 'stompserver'
  p.summary = 'A very light messaging server'
  p.description = p.paragraphs_of('README.txt', 2..4).join("\n\n")
  p.url = p.paragraphs_of('README.txt', 0).first.split(/\n/)[1..-1]
  p.changes = p.paragraphs_of('History.txt', 0..1).join("\n\n")
  p.email = [ "lionel-dev@bouton.name" ]
  p.author = [ "Lionel Bouton" ]
  p.extra_deps = [
    # This depencency is real, but if you are on a Win32 box
    # and don't have VC6, it can be a real problem
    ["daemons", ">= 1.0.2"],
    ["eventmachine", ">= 0.7.2"],
    ["hoe", ">= 1.1.1"],
  ]
  p.remote_rdoc_dir = ''
end

# vim: syntax=Ruby