commit 2ac3a09c03ce9b85a0e1515bc8bb0314c8d793e2 Author: Jim Myhrberg Date: Wed Jan 26 10:50:16 2011 +0000 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4040c6c --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +*.gem +.bundle +Gemfile.lock +pkg/* diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..b443a18 --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "http://rubygems.org" + +# Specify your gem's dependencies in amqp-failover.gemspec +gemspec diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..14cfe0b --- /dev/null +++ b/Rakefile @@ -0,0 +1,2 @@ +require 'bundler' +Bundler::GemHelper.install_tasks diff --git a/amqp-failover.gemspec b/amqp-failover.gemspec new file mode 100644 index 0000000..5709d93 --- /dev/null +++ b/amqp-failover.gemspec @@ -0,0 +1,21 @@ +# -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "amqp-failover/version" + +Gem::Specification.new do |s| + s.name = "amqp-failover" + s.version = Amqp::Failover::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ["TODO: Write your name"] + s.email = ["TODO: Write your email address"] + s.homepage = "" + s.summary = %q{TODO: Write a gem summary} + s.description = %q{TODO: Write a gem description} + + s.rubyforge_project = "amqp-failover" + + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + s.require_paths = ["lib"] +end diff --git a/lib/amqp-failover.rb b/lib/amqp-failover.rb new file mode 100644 index 0000000..9f348e0 --- /dev/null +++ b/lib/amqp-failover.rb @@ -0,0 +1,5 @@ +module Amqp + module Failover + # Your code goes here... + end +end diff --git a/lib/amqp-failover/version.rb b/lib/amqp-failover/version.rb new file mode 100644 index 0000000..23ec700 --- /dev/null +++ b/lib/amqp-failover/version.rb @@ -0,0 +1,5 @@ +module Amqp + module Failover + VERSION = "0.0.1" + end +end