bigwig 0.4 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v0.4.1. Plugin Loader now follows symlinks when loading
2
+
1
3
  v0.4. Added the ability to require init scripts at startup
2
4
 
3
5
  v0.3. added bigwig-push command to place arbitrary messages on the queue
data/Manifest CHANGED
@@ -3,7 +3,7 @@ LICENSE
3
3
  Manifest
4
4
  README.markdown
5
5
  Rakefile
6
- bigwig.gemspec
6
+ bigwig.output
7
7
  bigwig.yml
8
8
  bigwig.yml.example
9
9
  bin/bigwig
@@ -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-11-09}
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.gemspec", "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"]
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"]
@@ -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
@@ -15,7 +15,7 @@ module BigWig
15
15
  protected
16
16
 
17
17
  def all_scripts
18
- Dir["#{self.root}/**/*.rb"]
18
+ Dir["#{self.root}/**/*/**.rb"]
19
19
  end
20
20
 
21
21
  end
@@ -19,7 +19,7 @@ module BigWig
19
19
 
20
20
  # list of all known plugin files
21
21
  def all_plugins
22
- Dir["#{Plugins.root}/**/*_plugin.rb"]
22
+ Dir["#{Plugins.root}/**/*/**_plugin.rb"]
23
23
  end
24
24
 
25
25
  # go through each plugin and register it
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: "0.4"
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-11-09 00:00:00 +00:00
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.gemspec
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: []