forked from ruby-amqp/amqp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amqp.gemspec
executable file
·39 lines (32 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
39
#!/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"]
s.homepage = "http://github.com/ruby-amqp/amqp"
s.summary = "AMQP client implementation in Ruby/EventMachine."
s.description = "An implementation of the AMQP protocol in Ruby/EventMachine for writing clients to the RabbitMQ message broker."
s.cert_chain = nil
s.email = Base64.decode64("c3Rhc3RueUAxMDFpZGVhcy5jeg==\n")
# files
s.files = `git ls-files`.split("\n")
s.require_paths = ["lib"]
# RDoc
s.has_rdoc = true
s.rdoc_options = '--include=examples --main README.md'
s.extra_rdoc_files = ["README.md"] + Dir.glob("doc/*")
# Dependencies
s.add_dependency "eventmachine", ">= 0.12.4"
begin
require "changelog"
rescue LoadError
warn "You have to have changelog gem installed for post install message"
else
s.post_install_message = CHANGELOG.new.version_changes
end
# RubyForge
s.rubyforge_project = "amqp"
end