pluginfactory 1.0.2
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/COPYRIGHT +131 -0
- data/ChangeLog +102 -0
- data/README +39 -0
- data/install.rb +172 -0
- data/lib/pluginfactory.rb +389 -0
- data/test.rb +72 -0
- data/tests/dir/deepsubofmybase.rb +3 -0
- data/tests/mybase.rb +11 -0
- data/tests/othersub.rb +5 -0
- data/tests/subofmybase.rb +5 -0
- data/utils.rb +672 -0
- metadata +57 -0
metadata
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
rubygems_version: 0.9.4
|
|
3
|
+
specification_version: 1
|
|
4
|
+
name: pluginfactory
|
|
5
|
+
version: !ruby/object:Gem::Version
|
|
6
|
+
version: 1.0.2
|
|
7
|
+
date: 2007-07-17 00:00:00 -07:00
|
|
8
|
+
summary: Mixin module that adds plugin behavior to any class
|
|
9
|
+
require_paths:
|
|
10
|
+
- lib
|
|
11
|
+
email: ged@FaerieMUD.org
|
|
12
|
+
homepage: http://devEiate.org/projects/PluginFactory
|
|
13
|
+
rubyforge_project:
|
|
14
|
+
description: PluginFactory is a module that provides plugin behavior for any class. Including PluginFactory in your class provides a ::create class method, which can be passed the name of any derivatives. Derivative classes are loaded dynamically and instantiated by the factory class.
|
|
15
|
+
autorequire: pluginfactory
|
|
16
|
+
default_executable:
|
|
17
|
+
bindir: bin
|
|
18
|
+
has_rdoc: true
|
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 1.8.5
|
|
24
|
+
version:
|
|
25
|
+
platform: ruby
|
|
26
|
+
signing_key:
|
|
27
|
+
cert_chain:
|
|
28
|
+
post_install_message:
|
|
29
|
+
authors:
|
|
30
|
+
- Michael Granger
|
|
31
|
+
files:
|
|
32
|
+
- COPYRIGHT
|
|
33
|
+
- ChangeLog
|
|
34
|
+
- README
|
|
35
|
+
- install.rb
|
|
36
|
+
- lib/pluginfactory.rb
|
|
37
|
+
- test.rb
|
|
38
|
+
- tests/mybase.rb
|
|
39
|
+
- tests/othersub.rb
|
|
40
|
+
- tests/subofmybase.rb
|
|
41
|
+
- tests/dir/deepsubofmybase.rb
|
|
42
|
+
- utils.rb
|
|
43
|
+
test_files:
|
|
44
|
+
- test.rb
|
|
45
|
+
rdoc_options:
|
|
46
|
+
- --main
|
|
47
|
+
- README
|
|
48
|
+
extra_rdoc_files:
|
|
49
|
+
- README
|
|
50
|
+
executables: []
|
|
51
|
+
|
|
52
|
+
extensions: []
|
|
53
|
+
|
|
54
|
+
requirements: []
|
|
55
|
+
|
|
56
|
+
dependencies: []
|
|
57
|
+
|