forked from ruby-amqp/bunny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bunny.gemspec
executable file
·40 lines (34 loc) · 1.06 KB
/
bunny.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
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env gem build
# encoding: utf-8
require "base64"
require File.expand_path("../lib/bunny/version", __FILE__)
Gem::Specification.new do |s|
s.name = "bunny"
s.version = Bunny::VERSION.dup
s.homepage = "http://github.com/ruby-amqp/bunny"
s.summary = "Easy to use synchronous Ruby client for RabbitMQ"
s.description = "Easy to use synchronous Ruby client for RabbitMQ"
s.license = "MIT"
# Sorted alphabetically.
s.authors = [
"Chris Duncan",
"Eric Lindvall",
"Jakub Stastny aka botanicus",
"Michael S. Klishin",
"Stefan Kaes"]
s.email = [
"Y2VsbGRlZUBnbWFpbC5jb20=\n",
"ZXJpY0A1c3RvcHMuY29t\n",
"c3Rhc3RueUAxMDFpZGVhcy5jeg==\n",
"bWljaGFlbEBub3ZlbWJlcmFpbi5jb20=\n",
"c2thZXNAcmFpbHNleHByZXNzLmRl\n"].
map { |mail| Base64.decode64(mail) }
# Dependencies
s.add_dependency "amq-protocol", ">= 1.1.0"
# Files.
s.has_rdoc = true
s.extra_rdoc_files = ["README.md"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- spec/*`.split("\n")
s.require_paths = ["lib"]
end