Sha256: c90f449ed567fee1b60442c774900c7e56d928c29181b90a1f52506a4788d106

Contents?: true

Size: 1.01 KB

Versions: 12

Compression:

Stored size: 1.01 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.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

12 entries across 12 versions & 1 rubygems

Version Path
amq-protocol-0.9.0 amq-protocol.gemspec
amq-protocol-0.8.4 amq-protocol.gemspec
amq-protocol-0.8.3 amq-protocol.gemspec
amq-protocol-0.8.1 amq-protocol.gemspec
amq-protocol-0.8.0 amq-protocol.gemspec
amq-protocol-0.7.0 amq-protocol.gemspec
amq-protocol-0.7.0.beta2 amq-protocol.gemspec
amq-protocol-0.7.0.beta1 amq-protocol.gemspec
amq-protocol-0.7.0.alpha7 amq-protocol.gemspec
amq-protocol-0.7.0.alpha6 amq-protocol.gemspec
amq-protocol-0.7.0.alpha5 amq-protocol.gemspec
amq-protocol-0.7.0.alpha4 amq-protocol.gemspec