bigwig 0.4 → 0.4.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.
- data/CHANGELOG +2 -0
- data/Manifest +1 -1
- data/bigwig.gemspec +3 -3
- data/bigwig.output +5 -0
- data/lib/bigwig/init_scripts.rb +1 -1
- data/lib/bigwig/plugins.rb +1 -1
- metadata +4 -3
data/CHANGELOG
CHANGED
data/Manifest
CHANGED
data/bigwig.gemspec
CHANGED
|
@@ -2,16 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = %q{bigwig}
|
|
5
|
-
s.version = "0.4"
|
|
5
|
+
s.version = "0.4.1"
|
|
6
6
|
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
|
8
8
|
s.authors = ["David Smalley, Caius Durling, Rahoul Baruah"]
|
|
9
|
-
s.date = %q{2009-
|
|
9
|
+
s.date = %q{2009-12-17}
|
|
10
10
|
s.description = %q{A daemon that listens to an AMQP queue and responds to messages by invoking commands from a set of plugins}
|
|
11
11
|
s.email = %q{}
|
|
12
12
|
s.executables = ["bigwig", "bigwig-ping", "bigwig-push"]
|
|
13
13
|
s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.markdown", "bin/bigwig", "bin/bigwig-ping", "bin/bigwig-push", "lib/bigwig.rb", "lib/bigwig/init_scripts.rb", "lib/bigwig/internal_plugins/ping_plugin.rb", "lib/bigwig/job.rb", "lib/bigwig/pinger.rb", "lib/bigwig/plugin.rb", "lib/bigwig/plugins.rb", "lib/bigwig/push.rb", "lib/bigwig/runner.rb"]
|
|
14
|
-
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.markdown", "Rakefile", "bigwig.
|
|
14
|
+
s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.markdown", "Rakefile", "bigwig.output", "bigwig.yml", "bigwig.yml.example", "bin/bigwig", "bin/bigwig-ping", "bin/bigwig-push", "lib/bigwig.rb", "lib/bigwig/init_scripts.rb", "lib/bigwig/internal_plugins/ping_plugin.rb", "lib/bigwig/job.rb", "lib/bigwig/pinger.rb", "lib/bigwig/plugin.rb", "lib/bigwig/plugins.rb", "lib/bigwig/push.rb", "lib/bigwig/runner.rb", "bigwig.gemspec"]
|
|
15
15
|
s.homepage = %q{http://www.brightbox.co.uk/}
|
|
16
16
|
s.post_install_message = %q{Welcome to bigwig. Please set up a configuration file and a plugins folder before starting bigwig...}
|
|
17
17
|
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Bigwig", "--main", "README.markdown"]
|
data/bigwig.output
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
I, [2009-12-17T12:26:00.794992 #2048] INFO -- : Starting Bigwig job worker
|
|
2
|
+
E, [2009-12-17T12:26:00.797814 #2048] ERROR -- : Error when subscribing to the queue: Connection refused - connect(2)
|
|
3
|
+
I, [2009-12-17T12:26:00.797929 #2048] INFO -- : 0 minutes since last successful connection: retrying in 20 seconds...
|
|
4
|
+
I, [2009-12-17T12:26:17.094425 #2048] INFO -- : Bigwig exiting due to TERM signal
|
|
5
|
+
I, [2009-12-17T12:26:20.798069 #2048] INFO -- : Bigwig job worker stopped
|
data/lib/bigwig/init_scripts.rb
CHANGED
data/lib/bigwig/plugins.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bigwig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Smalley, Caius Durling, Rahoul Baruah
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-12-17 00:00:00 +00:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -62,7 +62,7 @@ files:
|
|
|
62
62
|
- Manifest
|
|
63
63
|
- README.markdown
|
|
64
64
|
- Rakefile
|
|
65
|
-
- bigwig.
|
|
65
|
+
- bigwig.output
|
|
66
66
|
- bigwig.yml
|
|
67
67
|
- bigwig.yml.example
|
|
68
68
|
- bin/bigwig
|
|
@@ -77,6 +77,7 @@ files:
|
|
|
77
77
|
- lib/bigwig/plugins.rb
|
|
78
78
|
- lib/bigwig/push.rb
|
|
79
79
|
- lib/bigwig/runner.rb
|
|
80
|
+
- bigwig.gemspec
|
|
80
81
|
has_rdoc: true
|
|
81
82
|
homepage: http://www.brightbox.co.uk/
|
|
82
83
|
licenses: []
|