plugman 1.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,6 +1,10 @@
1
+ 2013-03-07: version 1.0.1
2
+
3
+ - Fixed a syntax error in handling of exceptions raised by plugins.
4
+
1
5
  2012-08-17: version 1.0
2
6
 
3
- - Special thanks to Avid Grim <http://avdi.org> for valuable input
7
+ - Special thanks to Avdi Grim <http://avdi.org> for valuable input
4
8
 
5
9
  - Big rewrite.
6
10
 
data/README.md CHANGED
@@ -1,5 +1,9 @@
1
- Plugman [![Build Status](https://secure.travis-ci.org/kjellm/plugman.png)](http://travis-ci.org/kjellm/plugman) [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/kjellm/plugman)
1
+ Plugman
2
2
  =======
3
+ [![Gem Version](https://badge.fury.io/rb/plugman.png)](http://rubygems.org/gems/celluloid)
4
+ [![Build Status](https://secure.travis-ci.org/kjellm/plugman.png)](http://travis-ci.org/kjellm/plugman)
5
+ [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/kjellm/plugman)
6
+
3
7
 
4
8
  Plugman is a plugin manager that supports event driven communication
5
9
  with plugins. It handles the loading, initialization and all
@@ -40,7 +40,7 @@ class Plugman
40
40
 
41
41
  def notify_plugin(plugin, event, *arguments, &block)
42
42
  plugin.send(event, *arguments, &block)
43
- rescue e
43
+ rescue Exception => e
44
44
  @logger.error(e)
45
45
  end
46
46
 
@@ -1,3 +1,3 @@
1
1
  class Plugman
2
- VERSION = "1.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plugman
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.0'
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-08-17 00:00:00.000000000 Z
12
+ date: 2013-03-07 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Plugman is a plugin manager that supports event driven communication
15
15
  with plugins. It handles the loading, initialization and all communications with
@@ -49,6 +49,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  - - ! '>='
50
50
  - !ruby/object:Gem::Version
51
51
  version: '0'
52
+ segments:
53
+ - 0
54
+ hash: -931528678110624299
52
55
  requirements: []
53
56
  rubyforge_project:
54
57
  rubygems_version: 1.8.24