mirror of
https://github.com/jimeh/amqp-failover.git
synced 2026-02-19 02:46:43 +00:00
Initial commit
This commit is contained in:
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
*.gem
|
||||||
|
.bundle
|
||||||
|
Gemfile.lock
|
||||||
|
pkg/*
|
||||||
4
Gemfile
Normal file
4
Gemfile
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
source "http://rubygems.org"
|
||||||
|
|
||||||
|
# Specify your gem's dependencies in amqp-failover.gemspec
|
||||||
|
gemspec
|
||||||
21
amqp-failover.gemspec
Normal file
21
amqp-failover.gemspec
Normal file
@@ -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
|
||||||
5
lib/amqp-failover.rb
Normal file
5
lib/amqp-failover.rb
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
module Amqp
|
||||||
|
module Failover
|
||||||
|
# Your code goes here...
|
||||||
|
end
|
||||||
|
end
|
||||||
5
lib/amqp-failover/version.rb
Normal file
5
lib/amqp-failover/version.rb
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
module Amqp
|
||||||
|
module Failover
|
||||||
|
VERSION = "0.0.1"
|
||||||
|
end
|
||||||
|
end
|
||||||
Reference in New Issue
Block a user