plugman 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES CHANGED
@@ -1,3 +1,7 @@
1
+ 2013-04-15: version 1.0.2
2
+
3
+ - Handle nil as argument to ConfigLoader::new
4
+
1
5
  2013-03-07: version 1.0.1
2
6
 
3
7
  - Fixed a syntax error in handling of exceptions raised by plugins.
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  Plugman
2
2
  =======
3
- [![Gem Version](https://badge.fury.io/rb/plugman.png)](http://rubygems.org/gems/celluloid)
3
+ [![Gem Version](https://badge.fury.io/rb/plugman.png)](http://rubygems.org/gems/plugman)
4
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)
5
+ [![Code Climate](https://codeclimate.com/github/kjellm/plugman.png)](https://codeclimate.com/github/kjellm/plugman)
6
6
 
7
7
 
8
8
  Plugman is a plugin manager that supports event driven communication
@@ -2,7 +2,7 @@ class Plugman
2
2
  class ConfigLoader
3
3
 
4
4
  def initialize(config)
5
- @config = config
5
+ @config = config || []
6
6
  end
7
7
 
8
8
  def call(logger)
@@ -1,3 +1,3 @@
1
1
  class Plugman
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
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.1
4
+ version: 1.0.2
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: 2013-03-07 00:00:00.000000000 Z
12
+ date: 2013-04-15 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,12 +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
55
52
  requirements: []
56
53
  rubyforge_project:
57
- rubygems_version: 1.8.24
54
+ rubygems_version: 1.8.25
58
55
  signing_key:
59
56
  specification_version: 3
60
57
  summary: A plugin manager.