Sha256: 329ef58cc053c1c3dae366a7fae73ff05af6ea335fe535dec778f9d1a80a4ca8
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
Contents
#!/usr/bin/env gem build # encoding: utf-8 require "base64" require File.expand_path("../lib/bunny/version", __FILE__) Gem::Specification.new do |s| s.name = "sparqcode_bunny" s.version = Bunny::VERSION.dup s.homepage = "http://github.com/sparqcode/bunny" s.summary = "Bunny with some RPC friendly extensions" s.description = "A synchronous Ruby AMQP client that enables interaction with AMQP-compliant brokers with minor modifications to make RPC easier. The official gem will be best for you 99.9973% of the time." # Sorted alphabetically. s.authors = [ "Chris Duncan", "Eric Lindvall", "Jakub Stastny aka botanicus", "Michael S. Klishin", "Stefan Kaes"] s.email = [ "Y2VsbGRlZUBnbWFpbC5jb20=\n", "ZXJpY0A1c3RvcHMuY29t\n", "c3Rhc3RueUAxMDFpZGVhcy5jeg==\n", "bWljaGFlbEBub3ZlbWJlcmFpbi5jb20=\n", "c2thZXNAcmFpbHNleHByZXNzLmRl\n"]. map { |mail| Base64.decode64(mail) } # Files. s.has_rdoc = true s.extra_rdoc_files = ["README.textile"] s.rdoc_options = ["--main", "README.rdoc"] s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- spec/*`.split("\n") s.require_paths = ["lib"] begin require "changelog" s.post_install_message = CHANGELOG.new.version_changes rescue LoadError end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sparqcode_bunny-0.0.2 | bunny.gemspec |
sparqcode_bunny-0.0.1 | bunny.gemspec |