pluggability 0.7.0 → 0.8.0
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.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/History.md +7 -0
- data/README.md +4 -1
- data/lib/pluggability.rb +2 -2
- data/spec/pluggability_spec.rb +7 -1
- data.tar.gz.sig +0 -0
- metadata +43 -28
- metadata.gz.sig +0 -0
- data/ChangeLog +0 -972
- data/Manifest.txt +0 -8
- data/Rakefile +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4484023e3e262179c2c404956a61d7b2f45e39a4f35ec3a467ebb58487248a8c
|
4
|
+
data.tar.gz: 18c4dc97074347467326b56caaee97d198224179b5a2b927653999f3ef65cca6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c91ad9882dbe4106aeb597d48400a5e2ca9e83fb89ac3961f6cacbd20bd2fdeb437e4b3e1e16bcefe4822c468865c91b82ba12dbdb311f6add6728de95dd46b4
|
7
|
+
data.tar.gz: 74b488aee0aae9ff89b74631f1a412b27356a51f3e62653d61715226871bd685ae9051880d5f26c573049b9944fbc50b239b86becae8b185d19e7e373180d2d7
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/History.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
# Release History for pluggability
|
2
2
|
|
3
3
|
---
|
4
|
+
## v0.8.0 [2022-12-01] Michael Granger <ged@faeriemud.org>
|
5
|
+
|
6
|
+
Improvements:
|
7
|
+
|
8
|
+
- Change default Ruby to 3.1
|
9
|
+
- Fix support for classes with number in their name
|
10
|
+
|
4
11
|
|
5
12
|
## v0.7.0 [2020-02-05] Michael Granger <ged@faeriemud.org>
|
6
13
|
|
data/README.md
CHANGED
@@ -1,11 +1,14 @@
|
|
1
1
|
# pluggability
|
2
2
|
|
3
3
|
home
|
4
|
-
: https://hg.sr.ht/~ged/
|
4
|
+
: https://hg.sr.ht/~ged/Pluggability
|
5
5
|
|
6
6
|
docs
|
7
7
|
: https://deveiate.org/code/pluggability
|
8
8
|
|
9
|
+
code
|
10
|
+
: https://hg.sr.ht/~ged/Pluggability/browse
|
11
|
+
|
9
12
|
github
|
10
13
|
: https://github.com/ged/pluggability
|
11
14
|
|
data/lib/pluggability.rb
CHANGED
@@ -12,7 +12,7 @@ module Pluggability
|
|
12
12
|
|
13
13
|
|
14
14
|
# Library version
|
15
|
-
VERSION = '0.
|
15
|
+
VERSION = '0.8.0'
|
16
16
|
|
17
17
|
|
18
18
|
# An exception class for Pluggability specific errors.
|
@@ -170,7 +170,7 @@ module Pluggability
|
|
170
170
|
|
171
171
|
simple_name = subclass.name.sub( /^.*::/i, '' ).sub( /\W+$/, '' )
|
172
172
|
keys << simple_name << simple_name.downcase
|
173
|
-
keys << simple_name.gsub( /([a-
|
173
|
+
keys << simple_name.gsub( /([a-z0-9])([A-Z])/, "\\1_\\2" ).downcase
|
174
174
|
|
175
175
|
# Handle class names like 'FooBar' for 'Bar' factories.
|
176
176
|
Pluggability.log.debug "Inherited %p for %p-type plugins" % [ subclass, self.plugin_type ]
|
data/spec/pluggability_spec.rb
CHANGED
@@ -17,6 +17,7 @@ end
|
|
17
17
|
class SubPlugin < Plugin; end
|
18
18
|
class TestingPlugin < Plugin; end
|
19
19
|
class BlackSheep < Plugin; end
|
20
|
+
class Carbon14Robot < Plugin; end
|
20
21
|
module Test
|
21
22
|
class LoadablePlugin < Plugin; end
|
22
23
|
end
|
@@ -35,7 +36,6 @@ describe Pluggability do
|
|
35
36
|
end
|
36
37
|
|
37
38
|
|
38
|
-
|
39
39
|
it "allows extended objects to declare one or more prefixes to use when requiring derviatives" do
|
40
40
|
expect( Plugin.plugin_prefixes ).to eq( ['plugins', 'plugins/private'] )
|
41
41
|
end
|
@@ -179,6 +179,7 @@ describe Pluggability do
|
|
179
179
|
Plugin.load_all
|
180
180
|
end
|
181
181
|
|
182
|
+
|
182
183
|
it "doesn't preload derivatives whose path matches a Regexp exclusion" do
|
183
184
|
expect( Gem ).to receive( :find_latest_files ).with( 'plugins/*.rb' ).
|
184
185
|
and_return([ '/path/to/plugins/first.rb' ])
|
@@ -247,6 +248,11 @@ describe Pluggability do
|
|
247
248
|
end
|
248
249
|
|
249
250
|
|
251
|
+
it "works for classes with numbers in them too" do
|
252
|
+
expect( Plugin.create('carbon14_robot') ).to be_an_instance_of( Carbon14Robot )
|
253
|
+
end
|
254
|
+
|
255
|
+
|
250
256
|
it "knows what the simplest version of its plugin name is" do
|
251
257
|
expect( BlackSheep.plugin_name ).to eq( 'black_sheep' )
|
252
258
|
end
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pluggability
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Granger
|
8
8
|
- Martin Chase
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain:
|
12
12
|
- |
|
13
13
|
-----BEGIN CERTIFICATE-----
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
MIID+DCCAmCgAwIBAgIBBDANBgkqhkiG9w0BAQsFADAiMSAwHgYDVQQDDBdnZWQv
|
15
|
+
REM9RmFlcmllTVVEL0RDPW9yZzAeFw0yMjAxMDcyMzU4MTRaFw0yMzAxMDcyMzU4
|
16
|
+
MTRaMCIxIDAeBgNVBAMMF2dlZC9EQz1GYWVyaWVNVUQvREM9b3JnMIIBojANBgkq
|
17
17
|
hkiG9w0BAQEFAAOCAY8AMIIBigKCAYEAvyVhkRzvlEs0fe7145BYLfN6njX9ih5H
|
18
18
|
L60U0p0euIurpv84op9CNKF9tx+1WKwyQvQP7qFGuZxkSUuWcP/sFhDXL1lWUuIl
|
19
19
|
M4uHbGCRmOshDrF4dgnBeOvkHr1fIhPlJm5FO+Vew8tSQmlDsosxLUx+VB7DrVFO
|
@@ -22,20 +22,19 @@ cert_chain:
|
|
22
22
|
vQ66lts4alKC69TE5cuKasWBm+16A4aEe3XdZBRNmtOu/g81gvwA7fkJHKllJuaI
|
23
23
|
dXzdHqq+zbGZVSQ7pRYHYomD0IiDe1DbIouFnPWmagaBnGHwXkDT2bKKP+s2v21m
|
24
24
|
ozilJg4aar2okb/RA6VS87o+d7g6LpDDMMQjH4G9OPnJENLdhu8KnPw/ivSVvQw7
|
25
|
-
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
XrxOxp8o0uOkU7FdLSGsyqJ2LzsR4obN
|
25
|
+
N2I4L/ZOIe2DIVuYH7aLHfjZDQv/mNgpAgMBAAGjOTA3MAkGA1UdEwQCMAAwCwYD
|
26
|
+
VR0PBAQDAgSwMB0GA1UdDgQWBBRyjf55EbrHagiRLqt5YAd3yb8k4DANBgkqhkiG
|
27
|
+
9w0BAQsFAAOCAYEASrm1AbEoxACZ9WXJH3R5axV3U0CA4xaETlL2YT+2nOfVBMQ9
|
28
|
+
0ZlkPx6j4ghKJgAIi1TMfDM2JyPJsppQh8tiNccDjWc62UZRY/dq26cMqf/lcI+a
|
29
|
+
6YBuEYvzZfearwVs8tHnXtwYV3WSCoCOQaB+nq2lA1O+nkKNl41WOsVbNama5jx3
|
30
|
+
8cQtVSEEmZy6jIDJ8c5TmBJ7BQUDEUEWA/A3V42Xyctoj7DvUXWE0lP+X6ypAVSr
|
31
|
+
lFh3TS64D7NTvxkmg7natUoCvobl6kGl4yMaqE4YRTlfuzhpf91TSOntClqrAOsS
|
32
|
+
K1s56WndQj3IoBocdY9mQhDZLtLHofSkymoP8btBlj5SsN24TiF0VMSZlctSCYZg
|
33
|
+
GKyHim/MMlIfGOWsgfioq5jzwmql7W4CDubbb8Lkg70v+hN2E/MnNVAcNE3gyaGc
|
34
|
+
P5YP5BAbNW+gvd3QHRiWTTuhgHrdDnGdXg93N2M5KHn1ug8BtPLQwlcFwEpKnlLn
|
35
|
+
btEP+7EplFuoiMfd
|
37
36
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
37
|
+
date: 2022-12-01 00:00:00.000000000 Z
|
39
38
|
dependencies:
|
40
39
|
- !ruby/object:Gem::Dependency
|
41
40
|
name: loggability
|
@@ -57,14 +56,28 @@ dependencies:
|
|
57
56
|
requirements:
|
58
57
|
- - "~>"
|
59
58
|
- !ruby/object:Gem::Version
|
60
|
-
version: '0.
|
59
|
+
version: '0.21'
|
61
60
|
type: :development
|
62
61
|
prerelease: false
|
63
62
|
version_requirements: !ruby/object:Gem::Requirement
|
64
63
|
requirements:
|
65
64
|
- - "~>"
|
66
65
|
- !ruby/object:Gem::Version
|
67
|
-
version: '0.
|
66
|
+
version: '0.21'
|
67
|
+
- !ruby/object:Gem::Dependency
|
68
|
+
name: rdoc-generator-sixfish
|
69
|
+
requirement: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - "~>"
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: '0.2'
|
74
|
+
type: :development
|
75
|
+
prerelease: false
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - "~>"
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0.2'
|
68
81
|
description: Pluggability is a toolkit for creating plugins.
|
69
82
|
email:
|
70
83
|
- ged@faeriemud.org
|
@@ -73,19 +86,21 @@ executables: []
|
|
73
86
|
extensions: []
|
74
87
|
extra_rdoc_files: []
|
75
88
|
files:
|
76
|
-
- ChangeLog
|
77
89
|
- History.md
|
78
|
-
- Manifest.txt
|
79
90
|
- README.md
|
80
|
-
- Rakefile
|
81
91
|
- lib/pluggability.rb
|
82
92
|
- spec/helpers.rb
|
83
93
|
- spec/pluggability_spec.rb
|
84
|
-
homepage: https://hg.sr.ht/~ged/
|
94
|
+
homepage: https://hg.sr.ht/~ged/Pluggability
|
85
95
|
licenses:
|
86
96
|
- BSD-3-Clause
|
87
|
-
metadata:
|
88
|
-
|
97
|
+
metadata:
|
98
|
+
homepage_uri: https://hg.sr.ht/~ged/Pluggability
|
99
|
+
documentation_uri: https://deveiate.org/code/pluggability
|
100
|
+
changelog_uri: https://deveiate.org/code/pluggability/History_md.html
|
101
|
+
source_uri: https://hg.sr.ht/~ged/Pluggability/browse
|
102
|
+
bug_tracker_uri: https://todo.sr.ht/~ged/Pluggability/browse
|
103
|
+
post_install_message:
|
89
104
|
rdoc_options: []
|
90
105
|
require_paths:
|
91
106
|
- lib
|
@@ -100,8 +115,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
115
|
- !ruby/object:Gem::Version
|
101
116
|
version: '0'
|
102
117
|
requirements: []
|
103
|
-
rubygems_version: 3.
|
104
|
-
signing_key:
|
118
|
+
rubygems_version: 3.3.7
|
119
|
+
signing_key:
|
105
120
|
specification_version: 4
|
106
121
|
summary: Pluggability is a toolkit for creating plugins.
|
107
122
|
test_files: []
|
metadata.gz.sig
CHANGED
Binary file
|
data/ChangeLog
DELETED
@@ -1,972 +0,0 @@
|
|
1
|
-
2020-01-09 Mahlon E. Smith <mahlon@laika.com>
|
2
|
-
|
3
|
-
@ * lib/pluggability.rb, spec/helpers.rb:
|
4
|
-
| Update for Ruby 2.7.
|
5
|
-
| [4e5a18d45eb8] [tip]
|
6
|
-
|
|
7
|
-
2018-03-21 Michael Granger <ged@FaerieMUD.org>
|
8
|
-
|
9
|
-
o * History.md, lib/pluggability.rb, pluggability.gemspec:
|
10
|
-
| Bump the minor version, update history.
|
11
|
-
| [cb2dbe50669f]
|
12
|
-
|
|
13
|
-
2018-03-12 Michael Granger <ged@FaerieMUD.org>
|
14
|
-
|
15
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
16
|
-
| Switch back to require for loading derivatives
|
17
|
-
| [cb2041ec4ba6]
|
18
|
-
|
|
19
|
-
2018-01-19 Michael Granger <ged@FaerieMUD.org>
|
20
|
-
|
21
|
-
o * .hgtags:
|
22
|
-
| Added tag v0.5.0 for changeset a8b59457e0ba
|
23
|
-
| [70299e3d689c]
|
24
|
-
|
|
25
|
-
o * .hgsigs:
|
26
|
-
| Added signature for changeset 106411a29309
|
27
|
-
| [a8b59457e0ba] [v0.5.0]
|
28
|
-
|
|
29
|
-
o * History.md, lib/pluggability.rb, pluggability.gemspec:
|
30
|
-
| Bump the minor version, update history.
|
31
|
-
| [106411a29309]
|
32
|
-
|
|
33
|
-
o * .ruby-version, README.md, Rakefile, pluggability.gemspec:
|
34
|
-
| Bump testing Ruby to 2.5, update metadata.
|
35
|
-
| [f251c6649802]
|
36
|
-
|
|
37
|
-
2018-01-19 Mahlon E. Smith <mahlon@laika.com>
|
38
|
-
|
39
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
40
|
-
| Only files should be valid candidates.
|
41
|
-
| [05d6834adc74]
|
42
|
-
|
|
43
|
-
2017-11-20 Michael Granger <ged@FaerieMUD.org>
|
44
|
-
|
45
|
-
o * lib/pluggability.rb, pluggability.gemspec,
|
46
|
-
| spec/pluggability_spec.rb:
|
47
|
-
| Don't use require to test for plugins
|
48
|
-
| [f926443712be]
|
49
|
-
|
|
50
|
-
2017-08-28 Michael Granger <ged@FaerieMUD.org>
|
51
|
-
|
52
|
-
o * Rakefile, pluggability.gemspec:
|
53
|
-
| Specify rdoc development version to fix dependency issues.
|
54
|
-
| [47f7c4369690]
|
55
|
-
|
|
56
|
-
o * spec/pluggability_spec.rb:
|
57
|
-
| Remove old loggability spec setup, fix whitespace
|
58
|
-
| [944359b4db94]
|
59
|
-
|
|
60
|
-
o * .gems, .ruby-gemset, .ruby-version, .rvm.gems, .rvmrc,
|
61
|
-
| .tm_properties, History.md, History.rdoc, Manifest.txt, README.md,
|
62
|
-
| README.rdoc, Rakefile, pluggability.gemspec:
|
63
|
-
| Update project files/Ruby version.
|
64
|
-
| [0174f10b17b6]
|
65
|
-
|
|
66
|
-
2015-03-04 Michael Granger <ged@FaerieMUD.org>
|
67
|
-
|
68
|
-
o * .hgtags:
|
69
|
-
| Added tag v0.4.3 for changeset 3aad17b08592
|
70
|
-
| [5619c48d3790]
|
71
|
-
|
|
72
|
-
o * .hgsigs:
|
73
|
-
| Added signature for changeset 599945826d8b
|
74
|
-
| [3aad17b08592] [v0.4.3]
|
75
|
-
|
|
76
|
-
o * History.rdoc, lib/pluggability.rb:
|
77
|
-
| Bump the patch version, update history.
|
78
|
-
| [599945826d8b]
|
79
|
-
|
|
80
|
-
o * Rakefile, lib/pluggability.rb, pluggability.gemspec:
|
81
|
-
| Add a workaround for older Rubygems to avoid Bundler problems.
|
82
|
-
| [0ee054190d01]
|
83
|
-
|
|
84
|
-
o * .hgtags:
|
85
|
-
| Added tag v0.4.2 for changeset 4a2f5cde833c
|
86
|
-
| [b69ae7e03433]
|
87
|
-
|
|
88
|
-
o * .hgsigs:
|
89
|
-
| Added signature for changeset 459f8db09b8c
|
90
|
-
| [4a2f5cde833c] [v0.4.2]
|
91
|
-
|
|
92
|
-
o * History.rdoc, lib/pluggability.rb:
|
93
|
-
| Bump the patch version, update history.
|
94
|
-
| [459f8db09b8c]
|
95
|
-
|
|
96
|
-
o * Merged with 5bcb7e1a02d1
|
97
|
-
|\ [5a267db5f2fd]
|
98
|
-
| |
|
99
|
-
| o * Rakefile, pluggability.gemspec:
|
100
|
-
| | Set the minimum Rubygems version for #find_latest_files support.
|
101
|
-
| |
|
102
|
-
| | Fixes #1.
|
103
|
-
| | [192347e63fb3]
|
104
|
-
| |
|
105
|
-
2015-03-03 Michael Granger <ged@FaerieMUD.org>
|
106
|
-
|
107
|
-
| o * History.rdoc, Rakefile, pluggability.gemspec:
|
108
|
-
| | Update History
|
109
|
-
| | [62ff537bb489]
|
110
|
-
| |
|
111
|
-
2015-03-03 Mahlon E. Smith <mahlon@laika.com>
|
112
|
-
|
113
|
-
o | * .hgsigs:
|
114
|
-
| | Added signature for changeset 7f6ff521c94a
|
115
|
-
| | [5bcb7e1a02d1]
|
116
|
-
| |
|
117
|
-
o | * .hgtags:
|
118
|
-
|/ Added tag v0.4.1 for changeset 4b314c3ea2cb
|
119
|
-
| [7f6ff521c94a]
|
120
|
-
|
|
121
|
-
2015-03-03 Mahlon E. Smith <mahlon@martini.nu>
|
122
|
-
|
123
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
124
|
-
| Use only the latest installed gems to build a candidate list, rather
|
125
|
-
| than all installed in the $LOAD_PATH. Bump version.
|
126
|
-
| [4b314c3ea2cb] [v0.4.1]
|
127
|
-
|
|
128
|
-
2015-02-27 Michael Granger <ged@FaerieMUD.org>
|
129
|
-
|
130
|
-
o * Rakefile, loggability.gemspec, pluggability.gemspec:
|
131
|
-
| Fix the gemspec name
|
132
|
-
| [f17b18fbdb15]
|
133
|
-
|
|
134
|
-
o * .rvmrc, .travis.yml, Gemfile, Rakefile, loggability.gemspec:
|
135
|
-
| Prep for travis-ci builds
|
136
|
-
| [6f744d57837f]
|
137
|
-
|
|
138
|
-
2014-06-05 Michael Granger <ged@FaerieMUD.org>
|
139
|
-
|
140
|
-
o * Gemfile, Rakefile, lib/pluggability.rb, spec/helpers.rb,
|
141
|
-
| spec/pluggability_spec.rb:
|
142
|
-
| Update for RSpec 3.
|
143
|
-
| [6efeedbd384c]
|
144
|
-
|
|
145
|
-
2014-01-08 Michael Granger <ged@FaerieMUD.org>
|
146
|
-
|
147
|
-
o * .rvm.gems, Rakefile:
|
148
|
-
| Update dependencies.
|
149
|
-
| [1110442a07c7]
|
150
|
-
|
|
151
|
-
o * .hgtags:
|
152
|
-
| Added tag v0.4.0 for changeset f07f7054d9bd
|
153
|
-
| [4d4ed9f6e347]
|
154
|
-
|
|
155
|
-
o * .hgsigs:
|
156
|
-
| Added signature for changeset d25537179cd9
|
157
|
-
| [f07f7054d9bd] [v0.4.0]
|
158
|
-
|
|
159
|
-
o * History.rdoc, lib/pluggability.rb:
|
160
|
-
| Bump the minor version, update history.
|
161
|
-
| [d25537179cd9]
|
162
|
-
|
|
163
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
164
|
-
| Add a name attribute to plugins for introspection.
|
165
|
-
| [305572825ffb]
|
166
|
-
|
|
167
|
-
2013-09-25 Michael Granger <ged@FaerieMUD.org>
|
168
|
-
|
169
|
-
o * .hgtags:
|
170
|
-
| Added tag v0.3.0 for changeset 344a4bea4055
|
171
|
-
| [6319eb6a7b45]
|
172
|
-
|
|
173
|
-
o * .hgsigs:
|
174
|
-
| Added signature for changeset 262b5b4e1629
|
175
|
-
| [344a4bea4055] [v0.3.0]
|
176
|
-
|
|
177
|
-
o * History.rdoc, lib/pluggability.rb:
|
178
|
-
| Bump the minor version, update history.
|
179
|
-
| [262b5b4e1629]
|
180
|
-
|
|
181
|
-
o * Gemfile, README.rdoc, Rakefile, experiments/logger_output.rb,
|
182
|
-
| lib/pluggability.rb, spec/pluggability_spec.rb:
|
183
|
-
| Add plugin exclusion patterns
|
184
|
-
| [dc968f687c9c]
|
185
|
-
|
|
186
|
-
o * Manifest.txt, spec/helpers.rb, spec/lib/helpers.rb,
|
187
|
-
| spec/pluggability_spec.rb:
|
188
|
-
| Converted to use new RSpec syntax.
|
189
|
-
| [1b4bb8026a4a]
|
190
|
-
|
|
191
|
-
o * .hgignore, .rvm.gems, Gemfile, Rakefile:
|
192
|
-
| Update dependencies; add Gemfile
|
193
|
-
| [ead3164b3b3c]
|
194
|
-
|
|
195
|
-
o * README.rdoc:
|
196
|
-
| Updated the README
|
197
|
-
| [3b9ccb970bc2]
|
198
|
-
|
|
199
|
-
2013-03-28 Michael Granger <ged@FaerieMUD.org>
|
200
|
-
|
201
|
-
o * .hgtags:
|
202
|
-
| Added tag v0.2.0 for changeset e84984f17d66
|
203
|
-
| [000ff70690ab]
|
204
|
-
|
|
205
|
-
o * .hgsigs:
|
206
|
-
| Added signature for changeset ae9bce03c327
|
207
|
-
| [e84984f17d66] [v0.2.0]
|
208
|
-
|
|
209
|
-
o * History.rdoc, lib/pluggability.rb:
|
210
|
-
| Bump the minor version, update history.
|
211
|
-
| [ae9bce03c327]
|
212
|
-
|
|
213
|
-
o * .rvm.gems, Rakefile:
|
214
|
-
| Bump dependency versions
|
215
|
-
| [dfff4fd68a46]
|
216
|
-
|
|
217
|
-
o * README.rdoc, lib/pluggability.rb, spec/pluggability_spec.rb:
|
218
|
-
| Fix loading of grandchildren of plugins
|
219
|
-
| [93a6045c9551]
|
220
|
-
|
|
221
|
-
o * experiments/logger_output.rb:
|
222
|
-
| Add logging experiment
|
223
|
-
| [8485f1330bd0]
|
224
|
-
|
|
225
|
-
2013-03-27 Michael Granger <ged@FaerieMUD.org>
|
226
|
-
|
227
|
-
o * .hgtags:
|
228
|
-
| Added tag v0.1.0 for changeset 4f9521c5937c
|
229
|
-
| [227f97060b6c]
|
230
|
-
|
|
231
|
-
o * .hgsigs:
|
232
|
-
| Added signature for changeset c2ff7a2e8e97
|
233
|
-
| [4f9521c5937c] [v0.1.0]
|
234
|
-
|
|
235
|
-
o * History.rdoc, lib/pluggability.rb:
|
236
|
-
| Bumped minor version, updated history.
|
237
|
-
| [c2ff7a2e8e97]
|
238
|
-
|
|
239
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
240
|
-
| Add loading via underbarred name variants (CommaDelimitedThing ->
|
241
|
-
| comma_delimited)
|
242
|
-
| [950d84e5d343]
|
243
|
-
|
|
244
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
245
|
-
| Rename some 'factory' bits to 'plugin' for consistency.
|
246
|
-
| [6d0c8e03207b]
|
247
|
-
|
|
248
|
-
2013-03-01 Michael Granger <ged@FaerieMUD.org>
|
249
|
-
|
250
|
-
o * .hgtags:
|
251
|
-
| Added tag v0.0.2 for changeset bb1aacf9953c
|
252
|
-
| [8157aa410711]
|
253
|
-
|
|
254
|
-
o * .hgsigs:
|
255
|
-
| Added signature for changeset 41c55c0e6830
|
256
|
-
| [bb1aacf9953c] [v0.0.2]
|
257
|
-
|
|
258
|
-
o * .rvmrc, History.rdoc, lib/pluggability.rb:
|
259
|
-
| Bump patch version, update history.
|
260
|
-
| [41c55c0e6830]
|
261
|
-
|
|
262
|
-
2012-08-13 Michael Granger <ged@FaerieMUD.org>
|
263
|
-
|
264
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
265
|
-
| Simplify Pluggability#derivatives.
|
266
|
-
| [7feffaf62b71]
|
267
|
-
|
|
268
|
-
2012-08-06 Michael Granger <ged@FaerieMUD.org>
|
269
|
-
|
270
|
-
o * README.rdoc, Rakefile, experiments/logger_output.rb:
|
271
|
-
| Update docs.
|
272
|
-
| [2ae57144e2df]
|
273
|
-
|
|
274
|
-
2012-08-03 Michael Granger <ged@FaerieMUD.org>
|
275
|
-
|
276
|
-
o * .hgtags:
|
277
|
-
| Added tag v0.0.1 for changeset 379015772893
|
278
|
-
| [f66a50774525]
|
279
|
-
|
|
280
|
-
o * lib/pluggability.rb, spec/pluggability_spec.rb:
|
281
|
-
| Fix specs for FactoryError changes; add backward-compatibility
|
282
|
-
| constant.
|
283
|
-
| [379015772893] [v0.0.1]
|
284
|
-
|
|
285
|
-
o * .rvm.gems, History.rdoc, Rakefile, lib/pluggability.rb,
|
286
|
-
| spec/pluggability_spec.rb:
|
287
|
-
| Finish up conversion to Pluggability
|
288
|
-
| [a5ca03df63cf]
|
289
|
-
|
|
290
|
-
o * .hgtags:
|
291
|
-
| Removed tag release
|
292
|
-
| [71aae8059784]
|
293
|
-
|
|
294
|
-
o * .hgtags:
|
295
|
-
| Removed tag RELEASE_0_01
|
296
|
-
| [a1b97d0de8d0]
|
297
|
-
|
|
298
|
-
o * .hgtags:
|
299
|
-
| Removed tag RELEASE_1_0_0
|
300
|
-
| [e5e76893e2ba]
|
301
|
-
|
|
302
|
-
o * .hgtags:
|
303
|
-
| Removed tag RELEASE_1_0_1
|
304
|
-
| [b09151d6f68f]
|
305
|
-
|
|
306
|
-
o * .hgtags:
|
307
|
-
| Removed tag SNAPSHOT_20070313
|
308
|
-
| [45e7935e8eb2]
|
309
|
-
|
|
310
|
-
o * .hgtags:
|
311
|
-
| Removed tag RELEASE_1_0_2
|
312
|
-
| [ac1f86759b58]
|
313
|
-
|
|
314
|
-
o * .hgtags:
|
315
|
-
| Removed tag RELEASE_1_0_3
|
316
|
-
| [d5e5456a2762]
|
317
|
-
|
|
318
|
-
o * .hgtags:
|
319
|
-
| Removed tag 1.0.5
|
320
|
-
| [953e75097b73]
|
321
|
-
|
|
322
|
-
o * .hgtags:
|
323
|
-
| Removed tag 1.0.6
|
324
|
-
| [24861dc02aee]
|
325
|
-
|
|
326
|
-
o * .hgtags:
|
327
|
-
| Removed tag 1.0.7
|
328
|
-
| [686ca01f4bda]
|
329
|
-
|
|
330
|
-
o * .hgtags:
|
331
|
-
| Removed tag v1.0.8
|
332
|
-
| [5f4dab137f8c]
|
333
|
-
|
|
334
|
-
2012-08-01 Michael Granger <ged@FaerieMUD.org>
|
335
|
-
|
336
|
-
o * .irbrc, .rvmrc, Manifest.txt, README.rdoc, Rakefile,
|
337
|
-
| experiments/logger_output.rb, lib/pluggability.rb,
|
338
|
-
| lib/pluginfactory.rb, spec/lib/helpers.rb,
|
339
|
-
| spec/pluggability_spec.rb, spec/pluginfactory_spec.rb:
|
340
|
-
| Start conversion to Pluggability
|
341
|
-
| [25ff09f969ba]
|
342
|
-
|
|
343
|
-
2012-02-20 Michael Granger <ged@FaerieMUD.org>
|
344
|
-
|
345
|
-
o * .hgtags:
|
346
|
-
| Added tag v1.0.8 for changeset 4213a6d8ae94
|
347
|
-
| [dc4d376c24f2]
|
348
|
-
|
|
349
|
-
o * Manifest.txt, Rakefile:
|
350
|
-
| Update the manifest, add pre-checkin test to catch this in the
|
351
|
-
| future.
|
352
|
-
| [4213a6d8ae94]
|
353
|
-
|
|
354
|
-
o * LICENSE, spec/spec.opts:
|
355
|
-
| Remove unused files
|
356
|
-
| [43266599abdf]
|
357
|
-
|
|
358
|
-
o * lib/pluginfactory.rb:
|
359
|
-
| Bump the patch version.
|
360
|
-
| [b4f6f8c60cd8]
|
361
|
-
|
|
362
|
-
o * spec/pluginfactory_spec.rb:
|
363
|
-
| Update spec syntax.
|
364
|
-
| [c40bfd8fd765]
|
365
|
-
|
|
366
|
-
o * .tm_properties:
|
367
|
-
| Add a Textmate project file
|
368
|
-
| [bb652bf55fd7]
|
369
|
-
|
|
370
|
-
o * .hgignore:
|
371
|
-
| Add doc directory to the ignorefile
|
372
|
-
| [821563ead969]
|
373
|
-
|
|
374
|
-
o * .rvm.gems, .rvmrc, History.md, History.rdoc, LICENSE, Manifest.txt,
|
375
|
-
| README.md, README.rdoc, Rakefile, lib/pluginfactory.rb,
|
376
|
-
| spec/lib/helpers.rb:
|
377
|
-
| Update project.
|
378
|
-
|
|
379
|
-
| - Updated specs for RSpec 2.8.0.
|
380
|
-
| - Fixed the logging advice in the README.
|
381
|
-
| - Converted Markdown docs to RDoc.
|
382
|
-
| - Added rvmrc + gemset
|
383
|
-
| [f7baed0379c7]
|
384
|
-
|
|
385
|
-
2011-04-06 Michael Granger <ged@FaerieMUD.org>
|
386
|
-
|
387
|
-
o * .hgsubstate:
|
388
|
-
| Removed old subrepo state file
|
389
|
-
| [a6ad5108278b]
|
390
|
-
|
|
391
|
-
o * .hgsub, .hgsubstate, History.md, Manifest.txt, README, README.md,
|
392
|
-
| Rakefile, project.yml:
|
393
|
-
| Convered to hoe.
|
394
|
-
| [78e98ebc8c81]
|
395
|
-
|
|
396
|
-
2010-12-09 Michael Granger <ged@FaerieMUD.org>
|
397
|
-
|
398
|
-
o * .hgsubstate, LICENSE, Rakefile, project.yml, spec/lib/helpers.rb,
|
399
|
-
| spec/pluginfactory_spec.rb:
|
400
|
-
| Converted tests to RSpec 2.
|
401
|
-
| [2dd66561cae2]
|
402
|
-
|
|
403
|
-
2010-09-27 Michael Granger <ged@FaerieMUD.org>
|
404
|
-
|
405
|
-
o * .hgtags:
|
406
|
-
| Added tag 1.0.7 for changeset e901eb9b9220
|
407
|
-
| [4566cc565a16]
|
408
|
-
|
|
409
|
-
o * .hgsigs:
|
410
|
-
| Added signature for changeset 64ad5e369500
|
411
|
-
| [e901eb9b9220]
|
412
|
-
|
|
413
|
-
o * lib/pluginfactory.rb:
|
414
|
-
| Version bump.
|
415
|
-
| [64ad5e369500]
|
416
|
-
|
|
417
|
-
o * .hgignore, .hgsub, .hgsubstate, Rakefile, project.yml,
|
418
|
-
| spec/pluginfactory_spec.rb:
|
419
|
-
| Updated for Ruby 1.9.2; updated build system.
|
420
|
-
| [97951e854828]
|
421
|
-
|
|
422
|
-
2010-03-23 Michael Granger <ged@FaerieMUD.org>
|
423
|
-
|
424
|
-
o * .hgtags:
|
425
|
-
| Added tag 1.0.6 for changeset bd09679b910d
|
426
|
-
| [9b6b855f45c2]
|
427
|
-
|
|
428
|
-
o * .hgsigs:
|
429
|
-
| Added signature for changeset db0ea352c67c
|
430
|
-
| [bd09679b910d]
|
431
|
-
|
|
432
|
-
o * .hgtags:
|
433
|
-
| Removed tag 1.0.6
|
434
|
-
| [db0ea352c67c]
|
435
|
-
|
|
436
|
-
o * ChangeLog, MANIFEST, utils.rb:
|
437
|
-
| Removing outdated/generated files.
|
438
|
-
| [278cfdc9f41b]
|
439
|
-
|
|
440
|
-
o * Rakefile, project.yml:
|
441
|
-
| Build system updates.
|
442
|
-
| [b4d64737265f]
|
443
|
-
|
|
444
|
-
2009-11-11 Michael Granger <ged@FaerieMUD.org>
|
445
|
-
|
446
|
-
o * .hgtags:
|
447
|
-
| Added tag 1.0.6 for changeset 31d84e2bf3ca
|
448
|
-
| [7ebf343e40b8]
|
449
|
-
|
|
450
|
-
o * .hgsigs:
|
451
|
-
| Added signature for changeset 1db3303a18ae
|
452
|
-
| [31d84e2bf3ca]
|
453
|
-
|
|
454
|
-
o * lib/pluginfactory.rb:
|
455
|
-
| Bumping version to 1.0.6.
|
456
|
-
| [1db3303a18ae]
|
457
|
-
|
|
458
|
-
o * Rakefile:
|
459
|
-
| Gemspec fixes.
|
460
|
-
| [2bb28ab4efd6]
|
461
|
-
|
|
462
|
-
2009-11-06 Michael Granger <ged@FaerieMUD.org>
|
463
|
-
|
464
|
-
o * .hgtags:
|
465
|
-
| Added tag 1.0.5 for changeset 791b0d9a35cc
|
466
|
-
| [8f63b0241b69]
|
467
|
-
|
|
468
|
-
o * .hgsigs:
|
469
|
-
| Added signature for changeset 3cd9d854ce79
|
470
|
-
| [791b0d9a35cc]
|
471
|
-
|
|
472
|
-
o * .hgignore, Rakefile, lib/pluginfactory.rb, project.yml:
|
473
|
-
|\ Merged with 93:fe5667cb2942.
|
474
|
-
| | [3cd9d854ce79]
|
475
|
-
| |
|
476
|
-
| o * .hgignore, LICENSE, Rakefile, lib/pluginfactory.rb:
|
477
|
-
| | Updated build system, bumping version, migrating to gemcutter.
|
478
|
-
| | [e816e3795c49]
|
479
|
-
| |
|
480
|
-
2009-08-08 Michael Granger <ged@FaerieMUD.org>
|
481
|
-
|
482
|
-
| o * .hgignore, Rakefile, lib/pluginfactory.rb, project.yml,
|
483
|
-
| | spec/pluginfactory_spec.rb:
|
484
|
-
| | Converted to Mercurial, updated build system.
|
485
|
-
| | [72b9a4fa46d6]
|
486
|
-
| |
|
487
|
-
2009-02-25 deveiant <deveiant>
|
488
|
-
|
489
|
-
| o * lib/pluginfactory.rb:
|
490
|
-
| | Incrementing library version.
|
491
|
-
| | [d83b983df058]
|
492
|
-
| |
|
493
|
-
| o * lib/pluginfactory.rb, spec/lib/helpers.rb,
|
494
|
-
| | spec/pluginfactory_spec.rb:
|
495
|
-
| | * Fixes for Ruby 1.9.1.
|
496
|
-
| | * Replace home-grown logger stuff with Logger library
|
497
|
-
| | [d1acaf5b27bf]
|
498
|
-
| |
|
499
|
-
2009-02-23 deveiant <deveiant>
|
500
|
-
|
501
|
-
| o * Rakefile, project.yml, spec/pluginfactory_spec.rb, utils.rb:
|
502
|
-
| | Start of fixes for 1.9.1.
|
503
|
-
| | [e9da3dd2a722]
|
504
|
-
| |
|
505
|
-
2008-08-13 deveiant <deveiant>
|
506
|
-
|
507
|
-
| o * Updating tags on new files.
|
508
|
-
| | [0825975c74ce]
|
509
|
-
| |
|
510
|
-
| o * rake/helpers.rb, rake/publishing.rb, rake/svn.rb,
|
511
|
-
| | rake/verifytask.rb:
|
512
|
-
| | Removing old rake tasklib dir
|
513
|
-
| | [f77c17a155f3]
|
514
|
-
| |
|
515
|
-
| o * LICENSE, README, Rakefile, project.yml:
|
516
|
-
| | Converting to the new build system
|
517
|
-
| | [1dc9571d428b]
|
518
|
-
| |
|
519
|
-
2008-03-26 deveiant <deveiant>
|
520
|
-
|
521
|
-
| o * Rakefile, rake/publishing.rb, rake/svn.rb:
|
522
|
-
| | * More packaging/publishing fixes.
|
523
|
-
| | [f6d36785648b]
|
524
|
-
| |
|
525
|
-
2008-03-25 deveiant <deveiant>
|
526
|
-
|
527
|
-
| o * Rakefile, rake/publishing.rb:
|
528
|
-
| | * Fixed announcement-sending task to use SMTP+SSL via a monkeypatch
|
529
|
-
| | to net/smtp. (Maybe package it up and upstream later?)
|
530
|
-
| | [c67a1083d7b8]
|
531
|
-
| |
|
532
|
-
| o * .cvsignore, .gemspec, LICENSE, MANIFEST, README, Rakefile,
|
533
|
-
| | docs/.cvsignore, docs/CATALOG, docs/makedocs.rb,
|
534
|
-
| | experiments/logger_output.rb, install.rb, lib/pluginfactory.rb,
|
535
|
-
| | makedist.rb, rake/helpers.rb, rake/publishing.rb, rake/svn.rb,
|
536
|
-
| | spec/pluginfactory_spec.rb:
|
537
|
-
| | * Packaging and publication tasks updated.
|
538
|
-
| | * Updated documentation.
|
539
|
-
| | [032613fa2adf]
|
540
|
-
| |
|
541
|
-
2007-07-27 deveiant <deveiant>
|
542
|
-
|
543
|
-
| o * test.rb:
|
544
|
-
| | Removed test runner script
|
545
|
-
| | [04f62e495c55]
|
546
|
-
| |
|
547
|
-
| o * COPYRIGHT, LICENSE, Rakefile, lib/pluginfactory.rb, rake/helpers.rb,
|
548
|
-
| | rake/svn.rb, rake/verifytask.rb, spec/pluginfactory_spec.rb,
|
549
|
-
| | spec/spec.opts, test.rb, tests/dir/deepsubofmybase.rb,
|
550
|
-
| | tests/mybase.rb, tests/othersub.rb, tests/subofmybase.rb:
|
551
|
-
| | Converted test::unit tests to RSpec
|
552
|
-
| | [c57b56593ad8]
|
553
|
-
| |
|
554
|
-
2007-03-13 deveiant <deveiant>
|
555
|
-
|
556
|
-
| o * makedist.rb:
|
557
|
-
| | Bumping project-version and fixing makedist problems.
|
558
|
-
| | [a66bb254939c]
|
559
|
-
| |
|
560
|
-
| o * lib/pluginfactory.rb:
|
561
|
-
| | * Log list of candidate subdirs
|
562
|
-
| | [210707e1c1b9]
|
563
|
-
| |
|
564
|
-
2007-02-22 deveiant <deveiant>
|
565
|
-
|
566
|
-
| o * lib/pluginfactory.rb:
|
567
|
-
| | * Support #derivative_dirs method as well as the camelCased variant.
|
568
|
-
| | [10df874f3dd2]
|
569
|
-
| |
|
570
|
-
2006-07-01 ged <ged>
|
571
|
-
|
572
|
-
| o * docs/makedocs.rb, lib/pluginfactory.rb, test.rb:
|
573
|
-
| | * Converted camelCased methods to under_barred ones.
|
574
|
-
| | * Fixed tests.
|
575
|
-
| | [7159eec3d123]
|
576
|
-
| |
|
577
|
-
2005-03-05 ged <ged>
|
578
|
-
|
579
|
-
| o * Incremented project version attribute
|
580
|
-
| | [7cbc57e7ccf6]
|
581
|
-
| |
|
582
|
-
| o * makedist.rb:
|
583
|
-
| | Merged changes from project-utils version
|
584
|
-
| | [7ef14552ab3d]
|
585
|
-
| |
|
586
|
-
| o * lib/pluginfactory.rb:
|
587
|
-
| | - Made load failures raise FactoryErrors as intended instead of
|
588
|
-
| | RuntimeErrors.
|
589
|
-
| | [e95a4103ceff]
|
590
|
-
| |
|
591
|
-
2004-11-21 ged <ged>
|
592
|
-
|
593
|
-
| o * install.rb, utils.rb:
|
594
|
-
| | -- Updated project-utils files
|
595
|
-
| | [bdc2ee405763]
|
596
|
-
| |
|
597
|
-
| o * .gemspec, MANIFEST:
|
598
|
-
| | -- Gemified
|
599
|
-
| | -- Fixed missing utils.rb in MANIFEST
|
600
|
-
| | -- Added project-spec properties to the root dir.
|
601
|
-
| | [66a4b51fd8bf]
|
602
|
-
| |
|
603
|
-
2004-09-08 ged <ged>
|
604
|
-
|
605
|
-
| o * docs/makedocs.rb, install.rb, makedist.rb, utils.rb:
|
606
|
-
| | - Hmmm... that didn't work. Copying over new versions of the util
|
607
|
-
| | scripts until I figure out how the hell to do what I want.
|
608
|
-
| | [bc561eade281]
|
609
|
-
| |
|
610
|
-
| o * docs/makedocs.rb, install.rb, makedist.rb, utils.rb:
|
611
|
-
| | - Replacing with versions from project-utils (experimental -- may
|
612
|
-
| | just have to re-check them in)
|
613
|
-
| | [b4e3563186c5]
|
614
|
-
| |
|
615
|
-
2004-08-24 ged <ged>
|
616
|
-
|
617
|
-
| o * - Added a very important property
|
618
|
-
| | [e59d46a77b94]
|
619
|
-
| |
|
620
|
-
| o * lib/pluginfactory.rb:
|
621
|
-
| | - Added keywords property to lib/pluginfactory.rb
|
622
|
-
| | [78d73905dcb8]
|
623
|
-
| |
|
624
|
-
| o * install.rb:
|
625
|
-
| | - Fixed String =~ String warning
|
626
|
-
| | [efbb3151a6a8]
|
627
|
-
| |
|
628
|
-
| o * install.rb:
|
629
|
-
| | - Added bangheader
|
630
|
-
| | [6a91c13a3cf3]
|
631
|
-
| |
|
632
|
-
| o * test.rb:
|
633
|
-
| | - Easyified bangheader
|
634
|
-
| | [c918e81c262e]
|
635
|
-
| |
|
636
|
-
2004-03-10 deveiant <deveiant>
|
637
|
-
|
638
|
-
| o * ChangeLog:
|
639
|
-
| | Updated for tag release_0_01
|
640
|
-
| | [0c5c4055cfd0]
|
641
|
-
| |
|
642
|
-
| o * .cvsignore, .irbrc, ChangeLog, MANIFEST, docs/.cvsignore,
|
643
|
-
| | docs/CATALOG, docs/makedocs.rb, makedist.rb, utils.rb:
|
644
|
-
| | Initial checkin.
|
645
|
-
| | [bf4ec3577624]
|
646
|
-
| |
|
647
|
-
2004-03-08 deveiant <deveiant>
|
648
|
-
|
649
|
-
| o * tests/dir/deepsubofmybase.rb, tests/othersub.rb:
|
650
|
-
| | - Fixed class/file agreement.
|
651
|
-
| | [6b8f3bc4cf9e]
|
652
|
-
| |
|
653
|
-
| o * tests/mybase.rb:
|
654
|
-
| | - Fixed derivativeDirs method.
|
655
|
-
| | [435f0c9aa88e]
|
656
|
-
| |
|
657
|
-
| o * lib/pluginfactory.rb:
|
658
|
-
| | - Documentation additions
|
659
|
-
| |
|
660
|
-
| | - Refactored path-search code
|
661
|
-
| | [588e608bdbf2]
|
662
|
-
| |
|
663
|
-
| o * test.rb:
|
664
|
-
| | - Added a hook into -d that turns on logging.
|
665
|
-
| | [fa285422054c]
|
666
|
-
| |
|
667
|
-
2004-03-08 stillflame <stillflame>
|
668
|
-
|
669
|
-
| o * README:
|
670
|
-
| | no, this is not using the default install.rb installation process
|
671
|
-
| | [bdfc3046476d]
|
672
|
-
| |
|
673
|
-
| o * lib/pluginfactory.rb:
|
674
|
-
| | FactoryError now inherits from RuntimeError
|
675
|
-
| | [fff45f7bd617]
|
676
|
-
| |
|
677
|
-
| o * test.rb:
|
678
|
-
| | filling in
|
679
|
-
| | [afcfd0b3773e]
|
680
|
-
| |
|
681
|
-
| o * tests/dir/deepsubofmybase.rb, tests/mybase.rb, tests/othersub.rb,
|
682
|
-
| | tests/subofmybase.rb:
|
683
|
-
| | initial import
|
684
|
-
| | [e3675050434b]
|
685
|
-
| |
|
686
|
-
2004-03-07 stillflame <stillflame>
|
687
|
-
|
688
|
-
| o * README:
|
689
|
-
| | reformatted
|
690
|
-
| | [aff1901c91d7]
|
691
|
-
| |
|
692
|
-
| o * install.rb:
|
693
|
-
| | filled in
|
694
|
-
| | [9c45c10602db]
|
695
|
-
| |
|
696
|
-
| o * COPYRIGHT, README:
|
697
|
-
| | filled in
|
698
|
-
| | [00a55d9e3ad3]
|
699
|
-
| |
|
700
|
-
| o * lib/pluginfactory.rb:
|
701
|
-
| | cleaned out ties to other modules
|
702
|
-
| | [845d40a15b41]
|
703
|
-
| |
|
704
|
-
| o * lib/factory.rb, lib/pluginfactory.rb:
|
705
|
-
| | renaming
|
706
|
-
| | [00fd93bfbfe5]
|
707
|
-
| |
|
708
|
-
2004-03-07 unknown <unknown>
|
709
|
-
|
710
|
-
| | o * This commit was manufactured by cvs2svn to create branch
|
711
|
-
| |/ 'FaerieMUDConsortium'.
|
712
|
-
| | [bad1b8bd1ccf] <FaerieMUDConsortium>
|
713
|
-
| |
|
714
|
-
2004-03-07 stillflame <stillflame>
|
715
|
-
|
716
|
-
| o * COPYRIGHT, README, install.rb, lib/factory.rb, test.rb:
|
717
|
-
| | Initial revision
|
718
|
-
| | [d3618e7fd9ac]
|
719
|
-
| |
|
720
|
-
2009-08-15 Michael Granger <ged@FaerieMUD.org>
|
721
|
-
|
722
|
-
o | * README, lib/pluginfactory.rb, utils.rb:
|
723
|
-
| | Cleanup after conversion
|
724
|
-
| | [fe5667cb2942]
|
725
|
-
| |
|
726
|
-
o | * .hgignore, Rakefile, project.yml:
|
727
|
-
| | Updated build system
|
728
|
-
| | [46777daaabdb]
|
729
|
-
| |
|
730
|
-
2009-08-15 convert-repo <convert-repo>
|
731
|
-
|
732
|
-
o | * .hgtags:
|
733
|
-
| | update tags
|
734
|
-
| | [e690b17efb4e]
|
735
|
-
| |
|
736
|
-
2009-02-25 Michael Granger <ged@FaerieMUD.org>
|
737
|
-
|
738
|
-
o | * lib/pluginfactory.rb:
|
739
|
-
| | Incrementing library version.
|
740
|
-
| | [9b895e2121be]
|
741
|
-
| |
|
742
|
-
o | * lib/pluginfactory.rb, spec/lib/helpers.rb,
|
743
|
-
| | spec/pluginfactory_spec.rb:
|
744
|
-
| | * Fixes for Ruby 1.9.1.
|
745
|
-
| | * Replace home-grown logger stuff with Logger library
|
746
|
-
| | [a57e9e1fffc4]
|
747
|
-
| |
|
748
|
-
2009-02-23 Michael Granger <ged@FaerieMUD.org>
|
749
|
-
|
750
|
-
o | * Rakefile, project.yml, spec/pluginfactory_spec.rb, utils.rb:
|
751
|
-
| | Start of fixes for 1.9.1.
|
752
|
-
| | [493ad8b8049e]
|
753
|
-
| |
|
754
|
-
2008-08-13 Michael Granger <ged@FaerieMUD.org>
|
755
|
-
|
756
|
-
o | * Updating tags on new files.
|
757
|
-
| | [072932f35fa2]
|
758
|
-
| |
|
759
|
-
o | * rake/helpers.rb, rake/publishing.rb, rake/svn.rb,
|
760
|
-
| | rake/verifytask.rb:
|
761
|
-
| | Removing old rake tasklib dir
|
762
|
-
| | [4ab11fe73be4]
|
763
|
-
| |
|
764
|
-
o | * LICENSE, README, Rakefile, project.yml:
|
765
|
-
| | Converting to the new build system
|
766
|
-
| | [19b42b3c37f3]
|
767
|
-
| |
|
768
|
-
2008-03-26 Michael Granger <ged@FaerieMUD.org>
|
769
|
-
|
770
|
-
o | * Rakefile, rake/publishing.rb, rake/svn.rb:
|
771
|
-
| | * More packaging/publishing fixes.
|
772
|
-
| | [7125b6003515]
|
773
|
-
| |
|
774
|
-
2008-03-25 Michael Granger <ged@FaerieMUD.org>
|
775
|
-
|
776
|
-
o | * Rakefile, rake/publishing.rb:
|
777
|
-
| | * Fixed announcement-sending task to use SMTP+SSL via a monkeypatch
|
778
|
-
| | to net/smtp. (Maybe package it up and upstream later?)
|
779
|
-
| | [fed1ea53a934]
|
780
|
-
| |
|
781
|
-
o | * .cvsignore, .gemspec, LICENSE, MANIFEST, README, Rakefile,
|
782
|
-
| | docs/.cvsignore, docs/CATALOG, docs/makedocs.rb,
|
783
|
-
| | experiments/logger_output.rb, install.rb, lib/pluginfactory.rb,
|
784
|
-
| | makedist.rb, rake/helpers.rb, rake/publishing.rb, rake/svn.rb,
|
785
|
-
| | spec/pluginfactory_spec.rb:
|
786
|
-
| | * Packaging and publication tasks updated.
|
787
|
-
| | * Updated documentation.
|
788
|
-
| | [ebb431bd3e59]
|
789
|
-
| |
|
790
|
-
2007-07-27 Michael Granger <ged@FaerieMUD.org>
|
791
|
-
|
792
|
-
o | * test.rb:
|
793
|
-
| | Removed test runner script
|
794
|
-
| | [4d967ef2f111]
|
795
|
-
| |
|
796
|
-
o | * COPYRIGHT, LICENSE, Rakefile, lib/pluginfactory.rb, rake/helpers.rb,
|
797
|
-
| | rake/svn.rb, rake/verifytask.rb, spec/pluginfactory_spec.rb,
|
798
|
-
| | spec/spec.opts, test.rb, tests/dir/deepsubofmybase.rb,
|
799
|
-
| | tests/mybase.rb, tests/othersub.rb, tests/subofmybase.rb:
|
800
|
-
| | Converted test::unit tests to RSpec
|
801
|
-
| | [d930322d7257]
|
802
|
-
| |
|
803
|
-
2007-03-13 Michael Granger <ged@FaerieMUD.org>
|
804
|
-
|
805
|
-
o | * makedist.rb:
|
806
|
-
| | Bumping project-version and fixing makedist problems.
|
807
|
-
| | [59907aabffde]
|
808
|
-
| |
|
809
|
-
o | * lib/pluginfactory.rb:
|
810
|
-
| | * Log list of candidate subdirs
|
811
|
-
| | [00893950cf25]
|
812
|
-
| |
|
813
|
-
2007-02-22 Michael Granger <ged@FaerieMUD.org>
|
814
|
-
|
815
|
-
o | * lib/pluginfactory.rb:
|
816
|
-
| | * Support #derivative_dirs method as well as the camelCased variant.
|
817
|
-
| | [4c56f048a182]
|
818
|
-
| |
|
819
|
-
2006-07-01 Michael Granger <ged@FaerieMUD.org>
|
820
|
-
|
821
|
-
o | * docs/makedocs.rb, lib/pluginfactory.rb, test.rb:
|
822
|
-
| | * Converted camelCased methods to under_barred ones.
|
823
|
-
| | * Fixed tests.
|
824
|
-
| | [6fffbf9b5bd2]
|
825
|
-
| |
|
826
|
-
2005-03-05 Michael Granger <ged@FaerieMUD.org>
|
827
|
-
|
828
|
-
o | * Incremented project version attribute
|
829
|
-
| | [e8daaf813d26]
|
830
|
-
| |
|
831
|
-
o | * makedist.rb:
|
832
|
-
| | Merged changes from project-utils version
|
833
|
-
| | [b83ace0e5210]
|
834
|
-
| |
|
835
|
-
o | * lib/pluginfactory.rb:
|
836
|
-
| | - Made load failures raise FactoryErrors as intended instead of
|
837
|
-
| | RuntimeErrors.
|
838
|
-
| | [ee1c6ed5d684]
|
839
|
-
| |
|
840
|
-
2004-11-21 Michael Granger <ged@FaerieMUD.org>
|
841
|
-
|
842
|
-
o | * install.rb, utils.rb:
|
843
|
-
| | -- Updated project-utils files
|
844
|
-
| | [105ee41be6fa]
|
845
|
-
| |
|
846
|
-
o | * .gemspec, MANIFEST:
|
847
|
-
| | -- Gemified
|
848
|
-
| | -- Fixed missing utils.rb in MANIFEST
|
849
|
-
| | -- Added project-spec properties to the root dir.
|
850
|
-
| | [70a3e789a5f9]
|
851
|
-
| |
|
852
|
-
2004-09-08 Michael Granger <ged@FaerieMUD.org>
|
853
|
-
|
854
|
-
o | * docs/makedocs.rb, install.rb, makedist.rb, utils.rb:
|
855
|
-
| | - Hmmm... that didn't work. Copying over new versions of the util
|
856
|
-
| | scripts until I figure out how the hell to do what I want.
|
857
|
-
| | [ebb9633f9b07]
|
858
|
-
| |
|
859
|
-
o | * docs/makedocs.rb, install.rb, makedist.rb, utils.rb:
|
860
|
-
| | - Replacing with versions from project-utils (experimental -- may
|
861
|
-
| | just have to re-check them in)
|
862
|
-
| | [1d04712bdf3d]
|
863
|
-
| |
|
864
|
-
2004-08-24 Michael Granger <ged@FaerieMUD.org>
|
865
|
-
|
866
|
-
o | * - Added a very important property
|
867
|
-
| | [9505e5d0166b]
|
868
|
-
| |
|
869
|
-
o | * lib/pluginfactory.rb:
|
870
|
-
| | - Added keywords property to lib/pluginfactory.rb
|
871
|
-
| | [ecae4f4680ad]
|
872
|
-
| |
|
873
|
-
o | * install.rb:
|
874
|
-
| | - Fixed String =~ String warning
|
875
|
-
| | [12cd465fc2b9]
|
876
|
-
| |
|
877
|
-
o | * install.rb:
|
878
|
-
| | - Added bangheader
|
879
|
-
| | [5ec386741575]
|
880
|
-
| |
|
881
|
-
o | * test.rb:
|
882
|
-
| | - Easyified bangheader
|
883
|
-
| | [63e34128e0f0]
|
884
|
-
| |
|
885
|
-
2004-03-10 Michael Granger <ged@FaerieMUD.org>
|
886
|
-
|
887
|
-
o | * ChangeLog:
|
888
|
-
| | Updated for tag release_0_01
|
889
|
-
| | [fced8642d1b0]
|
890
|
-
| |
|
891
|
-
o | * .cvsignore, .irbrc, ChangeLog, MANIFEST, docs/.cvsignore,
|
892
|
-
| | docs/CATALOG, docs/makedocs.rb, makedist.rb, utils.rb:
|
893
|
-
| | Initial checkin.
|
894
|
-
| | [0658f49ae563]
|
895
|
-
| |
|
896
|
-
2004-03-08 Michael Granger <ged@FaerieMUD.org>
|
897
|
-
|
898
|
-
o | * tests/dir/deepsubofmybase.rb, tests/othersub.rb:
|
899
|
-
| | - Fixed class/file agreement.
|
900
|
-
| | [63964459cf6e]
|
901
|
-
| |
|
902
|
-
o | * tests/mybase.rb:
|
903
|
-
| | - Fixed derivativeDirs method.
|
904
|
-
| | [ecb82dc312e7]
|
905
|
-
| |
|
906
|
-
o | * lib/pluginfactory.rb:
|
907
|
-
| | - Documentation additions
|
908
|
-
| |
|
909
|
-
| | - Refactored path-search code
|
910
|
-
| | [0938213db300]
|
911
|
-
| |
|
912
|
-
o | * test.rb:
|
913
|
-
| | - Added a hook into -d that turns on logging.
|
914
|
-
| | [a5caa49b677b]
|
915
|
-
| |
|
916
|
-
2004-03-08 Martin Chase <stillflame@FaerieMUD.org>
|
917
|
-
|
918
|
-
o | * README:
|
919
|
-
| | no, this is not using the default install.rb installation process
|
920
|
-
| | [48a6ad672ee6]
|
921
|
-
| |
|
922
|
-
o | * lib/pluginfactory.rb:
|
923
|
-
| | FactoryError now inherits from RuntimeError
|
924
|
-
| | [3bbead1f4ca4]
|
925
|
-
| |
|
926
|
-
o | * test.rb:
|
927
|
-
| | filling in
|
928
|
-
| | [b71b4d89f826]
|
929
|
-
| |
|
930
|
-
o | * tests/dir/deepsubofmybase.rb, tests/mybase.rb, tests/othersub.rb,
|
931
|
-
| | tests/subofmybase.rb:
|
932
|
-
| | initial import
|
933
|
-
| | [6f21a73f4bfe]
|
934
|
-
| |
|
935
|
-
2004-03-07 Martin Chase <stillflame@FaerieMUD.org>
|
936
|
-
|
937
|
-
o | * README:
|
938
|
-
| | reformatted
|
939
|
-
| | [6770707b0e32]
|
940
|
-
| |
|
941
|
-
o | * install.rb:
|
942
|
-
| | filled in
|
943
|
-
| | [81aca5b501d9]
|
944
|
-
| |
|
945
|
-
o | * COPYRIGHT, README:
|
946
|
-
| | filled in
|
947
|
-
| | [f375b7c3e339]
|
948
|
-
| |
|
949
|
-
o | * lib/pluginfactory.rb:
|
950
|
-
| | cleaned out ties to other modules
|
951
|
-
| | [1d68afc9193f]
|
952
|
-
| |
|
953
|
-
o | * lib/factory.rb, lib/pluginfactory.rb:
|
954
|
-
| | renaming
|
955
|
-
| | [4d3aae37f6aa]
|
956
|
-
| |
|
957
|
-
2004-03-07 unknown <unknown>
|
958
|
-
|
959
|
-
+---o * This commit was manufactured by cvs2svn to create branch
|
960
|
-
| | 'FaerieMUDConsortium'.
|
961
|
-
| | [ba53aba840f3] <FaerieMUDConsortium>
|
962
|
-
| |
|
963
|
-
2004-03-07 Martin Chase <stillflame@FaerieMUD.org>
|
964
|
-
|
965
|
-
o | * COPYRIGHT, README, install.rb, lib/factory.rb, test.rb:
|
966
|
-
|/ Initial revision
|
967
|
-
| [4c07d530c1b5]
|
968
|
-
|
|
969
|
-
2004-03-07 unknown <unknown>
|
970
|
-
|
971
|
-
o * New repository initialized by cvs2svn.
|
972
|
-
[d0ff88878464]
|
data/Manifest.txt
DELETED