Sha256: 8a0661868ad5544f8a4984496f95f350ee729916a296a4fa58520512c5fd4099
Contents?: true
Size: 1.21 KB
Versions: 3
Compression:
Stored size: 1.21 KB
Contents
#!/usr/bin/env gem build # encoding: utf-8 require "base64" require File.expand_path("../lib/amqp/version", __FILE__) Gem::Specification.new do |s| s.name = "amqp" s.version = AMQP::VERSION s.authors = ["Aman Gupta", "Jakub Stastny aka botanicus", "Michael S. Klishin"] s.homepage = "http://github.com/ruby-amqp/amqp" s.summary = "AMQP client implementation in Ruby/EventMachine." s.description = "Asynchronous AMQP 0.9.1 client for Ruby. Built on top of Eventmachine." 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"] # RDoc s.has_rdoc = true s.rdoc_options = '--include=examples --main README.textile' s.extra_rdoc_files = ["README.textile"] + Dir.glob("doc/*") # Dependencies s.add_dependency "eventmachine", "~> 0.12.10" s.add_dependency "amq-client" 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 = "amqp" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
amqp-0.8.0.rc1 | amqp.gemspec |
amqp-0.8.0.pre.beta1 | amqp.gemspec |
amqp-0.8.0.beta1 | amqp.gemspec |