forked from ruby-amqp/amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amqp.gemspec
executable file
·29 lines (23 loc) · 968 Bytes
/
amqp.gemspec
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
#!/usr/bin/env gem build
# encoding: utf-8
require "base64"
require File.expand_path("../lib/amqp/version", __FILE__)
Gem::Specification.new do |s|
s.name = "amqp"
s.version = AMQP::VERSION
s.authors = ["Aman Gupta", "Jakub Stastny aka botanicus", "Michael S. Klishin"]
s.homepage = "http://rubyamqp.info"
s.summary = "Mature EventMachine-based RabbitMQ client"
s.description = "Mature EventMachine-based RabbitMQ client."
s.email = ["bWljaGFlbEBub3ZlbWJlcmFpbi5jb20=\n", "c3Rhc3RueUAxMDFpZGVhcy5jeg==\n"].map { |i| Base64.decode64(i) }
s.licenses = ["Ruby"]
# files
s.files = `git ls-files`.split("\n").reject { |file| file =~ /^vendor\// || file =~ /^gemfiles\// }
s.require_paths = ["lib"]
s.rdoc_options = '--include=examples --main README.md'
s.extra_rdoc_files = ["README.md"] + Dir.glob("docs/*")
# Dependencies
s.add_dependency "eventmachine"
s.add_dependency "amq-protocol", ">= 2.1.0"
s.rubyforge_project = "amqp"
end