Sha256: f0f90d4cb4d1ed3a7a5a5cb898b2affc07ba2aaf26accecaa202850f5ae90d29

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 KB

Contents

#!/usr/bin/env gem build
# encoding: utf-8

require "base64"
require File.expand_path("../lib/amq/client/version", __FILE__)

Gem::Specification.new do |s|
  s.name = "amq-client"
  s.version = AMQ::Client::VERSION.dup
  s.authors = ["Jakub Stastny", "Michael S. Klishin", "Theo Hultberg", "Mark Abramov"]
  s.email   = [Base64.decode64("c3Rhc3RueUAxMDFpZGVhcy5jeg==\n"), "michael@novemberain.com"]
  s.homepage = "http://github.com/ruby-amqp/amq-client"
  s.summary = "amq-client is a fully-featured, low-level AMQP 0.9.1 client"
  s.description = "amq-client supports multiple networking adapters (EventMachine, TCP sockets, cool.io) and supposed to back more opinionated AMQP clients (such as amqp gem, bunny, et cetera) or be used directly in cases when access to more advanced AMQP 0.9.1 features is more important that convenient APIs"
  s.cert_chain = nil
  s.has_rdoc   = true

  # files
  s.files = `git ls-files`.split("\n").reject { |file| file =~ /^vendor\// || file =~ /^gemfiles\// }
  s.require_paths = ["lib"]
  s.extra_rdoc_files = ["README.textile"] + Dir.glob("doc/*")

  # Dependencies
  s.add_dependency "eventmachine"
  s.add_dependency "amq-protocol"


  # RubyForge
  s.rubyforge_project = "amq-client"
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha20 amq-client.gemspec
amq-client-0.7.0.alpha19 amq-client.gemspec
amq-client-0.7.0.alpha18 amq-client.gemspec
amq-client-0.7.0.alpha17 amq-client.gemspec
amq-client-0.7.0.alpha16 amq-client.gemspec
amq-client-0.7.0.alpha15 amq-client.gemspec
amq-client-0.7.0.alpha14 amq-client.gemspec