Sha256: 2f300e715edd8d4ff6b57f6ffce8624731c3aaeddb6de2a5f6bb74f956abb7b0
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 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 = "Widely used, feature-rich asynchronous AMQP 0.9.1 client with batteries included" s.email = ["bWljaGFlbEBub3ZlbWJlcmFpbi5jb20=\n", "c3Rhc3RueUAxMDFpZGVhcy5jeg==\n"].map { |i| Base64.decode64(i) } # files s.files = `git ls-files`.split("\n").reject { |file| file =~ /^vendor\// || file =~ /^gemfiles\// } s.require_paths = ["lib"] s.rdoc_options = '--include=examples --main README.textile' s.extra_rdoc_files = ["README.textile"] + Dir.glob("docs/*") # Dependencies s.add_dependency "eventmachine" s.add_dependency "amq-client", ">= 0.7.0.alpha23" 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
amqp-0.8.0.rc11 | amqp.gemspec |