forked from seanohalpin/smqueue
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
45 lines (45 loc) · 1.57 KB
/
Rakefile
File metadata and controls
45 lines (45 loc) · 1.57 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
# Rakefile for smqueue
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "smqueue"
s.version = "0.2.1"
s.summary = "Simple Message Queue"
s.homepage = 'http://github.com/seanohalpin/smqueue'
s.description = "Implements a simple protocol for using message queues, with adapters
for ActiveMQ, Spread and stdio (for testing)."
s.authors = ["Sean O'Halpin", "Chris O'Sullivan", "Craig Webster"]
s.files =
[
"History.txt",
"Manifest.txt",
"README.txt",
"Rakefile",
"examples/input.rb",
"examples/output.rb",
"examples/config/example_config.yml",
"lib/rstomp.rb",
"lib/smqueue.rb",
"lib/smqueue/adapters/spread.rb",
"lib/smqueue/adapters/stdio.rb",
"lib/smqueue/adapters/stomp.rb",
"smqueue.gemspec",
"test/helper.rb",
"test/test_rstomp_connection.rb",
]
s.test_files = ["test/test_rstomp_connection.rb"]
s.add_dependency("doodle", [">= 0.1.9"])
s.rubyforge_project = 'smqueue'
s.extra_rdoc_files = %w[
History.txt
Manifest.txt
README.rdoc
]
s.rdoc_options = ["--charset=UTF-8 --line-numbers", "--inline-source", "--title", "Doodle", "--main", "README.rdoc"]
s.add_development_dependency('jeweler')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler -s http://gemcutter.org"
end