public
Description:
Homepage:
Clone URL: git://github.com/assaf/reliable-msg.git
Click here to lend your support to: reliable-msg and make a donation at www.pledgie.com !
reliable-msg / reliable-msg.gemspec
100644 29 lines (25 sloc) 1.111 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
Gem::Specification.new do |spec|
  spec.name = 'reliable-msg'
  spec.version = '1.1.1'
  spec.summary = "Reliable messaging and persistent queues for building asynchronous applications in Ruby"
  spec.description = <<-EOF
This package provides reliable messaging and persistent queues for
building asynchronous applications in Ruby.
 
It supports transaction processing, message selectors, priorities,
delivery semantics, remote queue managers, disk-based and MySQL message
stores and more.
EOF
  spec.author = 'Assaf Arkin'
  spec.email = 'assaf@labnotes.org'
  spec.homepage = 'http://github.com/assaf/reliable-msg'
  spec.rubyforge_project = 'reliable-msg'
 
  spec.files = Dir['{bin,test,lib,docs}/**/*', 'README.rdoc', 'MIT-LICENSE', 'Rakefile', 'changelog.txt']
  spec.require_path = 'lib'
  spec.bindir = 'bin'
  spec.executables = ['queues']
  spec.default_executable = 'queues'
 
  spec.has_rdoc = true
  spec.rdoc_options << '--main' << 'README.rdoc' << '--title' << "Reliable Messaging for Ruby"
  spec.extra_rdoc_files = ['README.rdoc']
  spec.add_dependency 'uuid', '~>2.0'
end