Sha256: 41abf2497282f877b552658cf2111b280a558c439537489556b694668d4e083a
Contents?: true
Size: 1.21 KB
Versions: 4
Compression:
Stored size: 1.21 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 is a fully-featured, low-level AMQP 0.9.1 client with pluggable networking I/O adapters (EventMachine, cool.io, Eventpanda and so on) and supposed to back more opinionated AMQP clients (such as amqp gem) or be used directly in cases when access to more advanced AMQP 0.9.1 features is more important that convenient APIs" # 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", ">= 0.9.0" # RubyForge s.rubyforge_project = "amq-client" end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
amq-client-1.0.0.pre1 | amq-client.gemspec |
amq-client-0.9.2 | amq-client.gemspec |
amq-client-0.9.1 | amq-client.gemspec |
amq-client-0.9.0 | amq-client.gemspec |