thumper 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +2 -0
- data/lib/thumper.rb +3 -0
- data/thumper.gemspec +18 -0
- metadata +60 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 203355e3e7ad414fa4b83c7c253265c7ab4dd2f8
|
4
|
+
data.tar.gz: 5c68ea10a8bc34f728825ad095eb62447d93ff39
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 70228124caa3ce1105b20d86443cd18fe4c5b63afeec4b22000e3f97620c92d35ca68df9dccbf1f6a920e2bd6f00683593950f8ca9a222abef15c1e4b6e3b6fd
|
7
|
+
data.tar.gz: cb38b899fb66c72c93dc93c4d3b3d24fa45446635c77122d32f404de7bc10d8771fda0d188153a5a1d0cc1a4a93a7911c0a2cc18e2ef5973e0fca69b88a3842d
|
data/README.md
ADDED
data/lib/thumper.rb
ADDED
data/thumper.gemspec
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
lib = File.expand_path('../lib/', __FILE__)
|
3
|
+
$:.unshift lib unless $:.include?(lib)
|
4
|
+
require 'thumper'
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = 'thumper'
|
8
|
+
s.version = ::Thumper::VERSION
|
9
|
+
s.description = 'Gem for performing various auxiliary tasks for RabbitMQ'
|
10
|
+
s.summary = 'Does useful tasks for managing RabbitMQ'
|
11
|
+
s.authors = ['Jake Davis']
|
12
|
+
s.homepage = 'https://github.banksimple.com/jakedavis/thumper'
|
13
|
+
s.license = 'Apache License, Version 2.0'
|
14
|
+
s.require_path = 'lib'
|
15
|
+
s.files = Dir.glob('**/*')
|
16
|
+
|
17
|
+
s.add_dependency('rabbitmq_http_api_client')
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: thumper
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jake Davis
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-03-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rabbitmq_http_api_client
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
description: Gem for performing various auxiliary tasks for RabbitMQ
|
28
|
+
email:
|
29
|
+
executables: []
|
30
|
+
extensions: []
|
31
|
+
extra_rdoc_files: []
|
32
|
+
files:
|
33
|
+
- README.md
|
34
|
+
- lib/thumper.rb
|
35
|
+
- thumper.gemspec
|
36
|
+
homepage: https://github.banksimple.com/jakedavis/thumper
|
37
|
+
licenses:
|
38
|
+
- Apache License, Version 2.0
|
39
|
+
metadata: {}
|
40
|
+
post_install_message:
|
41
|
+
rdoc_options: []
|
42
|
+
require_paths:
|
43
|
+
- lib
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
requirements: []
|
55
|
+
rubyforge_project:
|
56
|
+
rubygems_version: 2.2.0
|
57
|
+
signing_key:
|
58
|
+
specification_version: 4
|
59
|
+
summary: Does useful tasks for managing RabbitMQ
|
60
|
+
test_files: []
|