Sha256: 732286502de4449238ff1ef9f1bc2f9e320f2a126d43d469dbce9ef225ca3e4b

Contents?: true

Size: 1.18 KB

Versions: 10

Compression:

Stored size: 1.18 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\// }
  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

10 entries across 10 versions & 1 rubygems

Version Path
amq-client-0.7.0.alpha13 amq-client.gemspec
amq-client-0.7.0.alpha12 amq-client.gemspec
amq-client-0.7.0.alpha11 amq-client.gemspec
amq-client-0.7.0.alpha10 amq-client.gemspec
amq-client-0.7.0.alpha9 amq-client.gemspec
amq-client-0.7.0.alpha8 amq-client.gemspec
amq-client-0.7.0.alpha7 amq-client.gemspec
amq-client-0.7.0.alpha6 amq-client.gemspec
amq-client-0.7.0.alpha5 amq-client.gemspec
amq-client-0.7.0.alpha4 amq-client.gemspec