Sha256: 921837a245202bc1146e92f2512834aca47bfe6eb7350058ab5b69765132c932
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 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) } 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/*") begin require "changelog" s.post_install_message = CHANGELOG.new.version_changes rescue LoadError # warn "You have to have changelog gem installed for post install message" end # RubyForge s.rubyforge_project = "amq-protocol" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
amq-protocol-0.5.0 | amq-protocol.gemspec |