Sha256: 119ec86f94cd654be6a63e1baff1b2ccdf444d5cdd77f12cf89d095b9c1e4e50

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

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

require "base64"

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

Gem::Specification.new do |s|
  s.name = "amq-protocol"
  s.version = AMQ::Protocol::VERSION
  s.authors = ["Jakub Stastny", "Michael S. Klishin", "Theo Hultberg", "Mark Abramov"]
  s.homepage = "http://github.com/ruby-amqp/amq-protocol"
  s.summary = "AMQP 0.9.1 encoder & decoder."
  s.description = <<-DESC
  amq-protocol is an AMQP 0.9.1 serialization library for Ruby. It is not an
  AMQP client: amq-protocol only handles serialization and deserialization.
  If you want to write your own AMQP client, this gem can help you with that.
  DESC
  s.cert_chain = nil
  s.email = ["bWljaGFlbEBub3ZlbWJlcmFpbi5jb20=\n", "c3Rhc3RueUAxMDFpZGVhcy5jeg==\n"].map { |i| Base64.decode64(i) }

  # 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/*")


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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
amq-protocol-0.7.0.alpha2 amq-protocol.gemspec