plugman 1.0 → 1.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.
- data/CHANGES +5 -1
- data/README.md +5 -1
- data/lib/plugman.rb +1 -1
- data/lib/plugman/version.rb +1 -1
- metadata +5 -2
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
|
|
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
|
|
1
|
+
Plugman
|
|
2
2
|
=======
|
|
3
|
+
[](http://rubygems.org/gems/celluloid)
|
|
4
|
+
[](http://travis-ci.org/kjellm/plugman)
|
|
5
|
+
[](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
|
data/lib/plugman.rb
CHANGED
data/lib/plugman/version.rb
CHANGED
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:
|
|
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:
|
|
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
|