autumn 3.1.8

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.
Files changed (111) hide show
  1. data/AUTHORS +11 -0
  2. data/CHANGELOG +567 -0
  3. data/MANIFEST +110 -0
  4. data/README +1114 -0
  5. data/README.textile +1153 -0
  6. data/Rakefile +75 -0
  7. data/autumn.gemspec +44 -0
  8. data/bin/autumn +11 -0
  9. data/lib/autumn.rb +8 -0
  10. data/lib/autumn/authentication.rb +238 -0
  11. data/lib/autumn/channel_leaf.rb +107 -0
  12. data/lib/autumn/coder.rb +166 -0
  13. data/lib/autumn/console_boot.rb +10 -0
  14. data/lib/autumn/ctcp.rb +250 -0
  15. data/lib/autumn/daemon.rb +207 -0
  16. data/lib/autumn/datamapper_hacks.rb +290 -0
  17. data/lib/autumn/foliater.rb +231 -0
  18. data/lib/autumn/formatting.rb +236 -0
  19. data/lib/autumn/generator.rb +231 -0
  20. data/lib/autumn/genesis.rb +190 -0
  21. data/lib/autumn/inheritable_attributes.rb +162 -0
  22. data/lib/autumn/leaf.rb +738 -0
  23. data/lib/autumn/log_facade.rb +49 -0
  24. data/lib/autumn/misc.rb +87 -0
  25. data/lib/autumn/resources/daemons/Anothernet.yml +3 -0
  26. data/lib/autumn/resources/daemons/AustHex.yml +29 -0
  27. data/lib/autumn/resources/daemons/Bahamut.yml +67 -0
  28. data/lib/autumn/resources/daemons/Dancer.yml +3 -0
  29. data/lib/autumn/resources/daemons/GameSurge.yml +3 -0
  30. data/lib/autumn/resources/daemons/IRCnet.yml +3 -0
  31. data/lib/autumn/resources/daemons/Ithildin.yml +7 -0
  32. data/lib/autumn/resources/daemons/KineIRCd.yml +56 -0
  33. data/lib/autumn/resources/daemons/PTlink.yml +6 -0
  34. data/lib/autumn/resources/daemons/QuakeNet.yml +20 -0
  35. data/lib/autumn/resources/daemons/RFC1459.yml +158 -0
  36. data/lib/autumn/resources/daemons/RFC2811.yml +16 -0
  37. data/lib/autumn/resources/daemons/RFC2812.yml +36 -0
  38. data/lib/autumn/resources/daemons/RatBox.yml +25 -0
  39. data/lib/autumn/resources/daemons/Ultimate.yml +24 -0
  40. data/lib/autumn/resources/daemons/Undernet.yml +6 -0
  41. data/lib/autumn/resources/daemons/Unreal.yml +110 -0
  42. data/lib/autumn/resources/daemons/_Other.yml +7 -0
  43. data/lib/autumn/resources/daemons/aircd.yml +33 -0
  44. data/lib/autumn/resources/daemons/bdq-ircd.yml +3 -0
  45. data/lib/autumn/resources/daemons/hybrid.yml +38 -0
  46. data/lib/autumn/resources/daemons/ircu.yml +67 -0
  47. data/lib/autumn/resources/daemons/tr-ircd.yml +8 -0
  48. data/lib/autumn/script.rb +74 -0
  49. data/lib/autumn/speciator.rb +165 -0
  50. data/lib/autumn/stem.rb +919 -0
  51. data/lib/autumn/stem_facade.rb +176 -0
  52. data/lib/autumn/tool/bin.rb +301 -0
  53. data/lib/autumn/tool/create.rb +48 -0
  54. data/lib/autumn/tool/project_creator.rb +110 -0
  55. data/lib/autumn/version.rb +3 -0
  56. data/lib/skel/Rakefile +163 -0
  57. data/lib/skel/config/global.yml +2 -0
  58. data/lib/skel/config/seasons/testing/database.yml +4 -0
  59. data/lib/skel/config/seasons/testing/leaves.yml +9 -0
  60. data/lib/skel/config/seasons/testing/season.yml +2 -0
  61. data/lib/skel/config/seasons/testing/stems.yml +10 -0
  62. data/lib/skel/leaves/administrator/README +20 -0
  63. data/lib/skel/leaves/administrator/controller.rb +67 -0
  64. data/lib/skel/leaves/administrator/views/autumn.txt.erb +1 -0
  65. data/lib/skel/leaves/administrator/views/reload.txt.erb +11 -0
  66. data/lib/skel/leaves/insulter/README +17 -0
  67. data/lib/skel/leaves/insulter/controller.rb +65 -0
  68. data/lib/skel/leaves/insulter/views/about.txt.erb +1 -0
  69. data/lib/skel/leaves/insulter/views/help.txt.erb +1 -0
  70. data/lib/skel/leaves/insulter/views/insult.txt.erb +1 -0
  71. data/lib/skel/leaves/scorekeeper/README +34 -0
  72. data/lib/skel/leaves/scorekeeper/config.yml +2 -0
  73. data/lib/skel/leaves/scorekeeper/controller.rb +104 -0
  74. data/lib/skel/leaves/scorekeeper/helpers/general.rb +64 -0
  75. data/lib/skel/leaves/scorekeeper/models/channel.rb +12 -0
  76. data/lib/skel/leaves/scorekeeper/models/person.rb +14 -0
  77. data/lib/skel/leaves/scorekeeper/models/pseudonym.rb +11 -0
  78. data/lib/skel/leaves/scorekeeper/models/score.rb +14 -0
  79. data/lib/skel/leaves/scorekeeper/tasks/stats.rake +17 -0
  80. data/lib/skel/leaves/scorekeeper/views/about.txt.erb +1 -0
  81. data/lib/skel/leaves/scorekeeper/views/change.txt.erb +5 -0
  82. data/lib/skel/leaves/scorekeeper/views/history.txt.erb +11 -0
  83. data/lib/skel/leaves/scorekeeper/views/points.txt.erb +5 -0
  84. data/lib/skel/leaves/scorekeeper/views/usage.txt.erb +1 -0
  85. data/lib/skel/log/README +1 -0
  86. data/lib/skel/script/console +28 -0
  87. data/lib/skel/script/destroy +48 -0
  88. data/lib/skel/script/generate +48 -0
  89. data/lib/skel/shared/README +1 -0
  90. data/lib/skel/tmp/README +1 -0
  91. data/spec/authentication_spec.rb +328 -0
  92. data/spec/channel_leaf_spec.rb +142 -0
  93. data/spec/coder_spec.rb +146 -0
  94. data/spec/ctcp_spec.rb +222 -0
  95. data/spec/daemon_spec.rb +202 -0
  96. data/spec/datamapper_hacks_spec.rb +164 -0
  97. data/tasks/authors.rake +30 -0
  98. data/tasks/changelog.rake +18 -0
  99. data/tasks/copyright.rake +21 -0
  100. data/tasks/doc.rake +7 -0
  101. data/tasks/gem.rake +23 -0
  102. data/tasks/gem_installer.rake +76 -0
  103. data/tasks/install_dependencies.rake +6 -0
  104. data/tasks/manifest.rake +4 -0
  105. data/tasks/rcov.rake +23 -0
  106. data/tasks/release.rake +52 -0
  107. data/tasks/reversion.rake +8 -0
  108. data/tasks/setup.rake +24 -0
  109. data/tasks/spec.rake +7 -0
  110. data/tasks/yard.rake +4 -0
  111. metadata +188 -0
data/AUTHORS ADDED
@@ -0,0 +1,11 @@
1
+ Following persons have contributed to autumn.
2
+ (Sorted by number of submitted patches, then alphabetically)
3
+
4
+ 113 Tim Morgan <riscfuture@gmail.com>
5
+ 27 TJ Vanderpoel <bougy.man@gmail.com>
6
+ 3 Dale Campbell <dale@save-state.net>
7
+ 1 bterlson <btthalion@gmail.com>
8
+ 1 comboy <kacper.ciesla@gmail.com>
9
+ 1 Kevin Berry <KevinBerry@nrs.us>
10
+ 1 Mark Coates <mark.coates@gmail.com>
11
+ 1 root <root@www.timothymorgan.info>
@@ -0,0 +1,567 @@
1
+ [17403cc | Sun May 03 17:01:31 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
2
+
3
+ * added AUTHORS as std release file
4
+
5
+ [6e3ec5c | Sun May 03 17:01:11 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
6
+
7
+ * Version 3.1.8 fixes nag warning about resetting Autumn::ROOT
8
+
9
+ [dd5f58e | Sun May 03 16:32:34 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
10
+
11
+ * Version 3.1.7
12
+
13
+ [c9ca0ce | Sun May 03 16:31:13 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
14
+
15
+ * clarified autumn command documentation
16
+
17
+ [31deab9 | Sun May 03 16:27:06 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
18
+
19
+ * fixed look of READMEs
20
+
21
+ [305c00a | Sun May 03 16:21:31 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
22
+
23
+ * Version 3.1.6
24
+
25
+ [5d61bfc | Sun May 03 16:20:42 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
26
+
27
+ * updated readme to show autumn binary usage
28
+
29
+ [dc4e6a8 | Sun May 03 15:58:06 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
30
+
31
+ * 3.1.5 adds working specs
32
+
33
+ [333d984 | Sun May 03 15:57:09 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
34
+
35
+ * got specs working, added spec task as default in Rakefile
36
+
37
+ [be2662e | Sun May 03 15:32:10 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
38
+
39
+ * Version 3.1.4
40
+
41
+ [d099756 | Sun May 03 15:31:30 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
42
+
43
+ * added more complete release task and added authors generation to gemspec. Pulled Rakefile in from the http://github.com/riscfuture/autumn specs branch
44
+
45
+ [908c032 | Sun May 03 14:57:53 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
46
+
47
+ * fixed usage typos and deprecated info
48
+
49
+ [50769ee | Sun May 03 14:47:53 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
50
+
51
+ * moved main rdoc task to root Rakefile, changed requires in authentication_spec. TODO: how are these spec run?
52
+
53
+ [35f95df | Sun May 03 14:39:44 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
54
+
55
+ * changed to normal versioning, updated misc files
56
+
57
+ [dc6b8e5 | Sun May 03 14:30:23 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
58
+
59
+ * updated AUTHORS
60
+
61
+ [6b83411 | Sun May 03 14:18:08 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
62
+
63
+ * updated gemspec, changelog, manifest, authors
64
+
65
+ [16bf894 | Sun May 03 14:16:23 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
66
+
67
+ * moved start/stop/restart/status into the autumn bin, cleaning out script/
68
+
69
+ [322c058 | Sun May 03 12:53:54 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
70
+
71
+ * added start|stop|restart|status to bin.rb
72
+
73
+ [8b907c2 | Sun May 03 12:29:08 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
74
+
75
+ * activated post_process on project creation
76
+
77
+ [f31139f | Sun May 03 12:22:00 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
78
+
79
+ * fixed load paths in ./script/server
80
+
81
+ [53fd98c | Sun May 03 12:19:54 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
82
+
83
+ * added readme in directories so then will not be empty
84
+
85
+ [fb72063 | Sun May 03 12:13:39 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
86
+
87
+ * fixed creator, defaulting to sqlite for testing season, and freenode/#autumn
88
+
89
+ [aaa40bb | Sun May 03 11:23:41 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
90
+
91
+ * moved version.rb into its own file (for easy reversioning)
92
+
93
+ [a67bccd | Sun May 03 11:21:09 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
94
+
95
+ * added CHANGELOG, MANIFEST, gemspec, and AUTHORS file (gem builds now)
96
+
97
+ [6bbfa4f | Sun May 03 10:37:07 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
98
+
99
+ * added autumn binary and tools for creating new project
100
+
101
+ [ad03663 | Sun May 03 10:07:23 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
102
+
103
+ * moved prototype to lib/skel and pulled in specs from specs branch
104
+
105
+ [4292982 | Sat May 02 16:33:29 UTC 2009] Kevin Berry <KevinBerry@nrs.us>
106
+
107
+ * Add gem tasks (from ramaze tree), and move Rakefile into the proto (since it is more appropriate to a deployed application)
108
+
109
+ [977ad7b | Fri May 01 01:29:53 UTC 2009] TJ Vanderpoel <bougy.man@gmail.com>
110
+
111
+ * reworked lib to get ready for gemming. changed paths to get correct library loading
112
+
113
+ [52e18a5 | Sun Mar 29 00:38:18 UTC 2009] Tim Morgan <riscfuture@gmail.com>
114
+
115
+ * Convert yaml string to regex
116
+
117
+ [9d588fc | Sun Mar 29 00:33:51 UTC 2009] Tim Morgan <riscfuture@gmail.com>
118
+
119
+ * Custom nick regexes
120
+
121
+ [e3bb5c3 | Sun Mar 29 00:23:57 UTC 2009] Mark Coates <mark.coates@gmail.com>
122
+
123
+ * Taking out hard-coded '!'; replacing with options[:command_prefix]
124
+
125
+ [9526cd3 | Wed Jan 21 20:55:52 UTC 2009] Tim Morgan <riscfuture@gmail.com>
126
+
127
+ * Whoops, bugfix
128
+
129
+ [ccae5af | Tue Jan 20 19:59:17 UTC 2009] Tim Morgan <riscfuture@gmail.com>
130
+
131
+ * Optimized DB query a bit
132
+
133
+ [0298fce | Tue Jan 20 03:25:27 UTC 2009] root <root@www.timothymorgan.info>
134
+
135
+ * All directories referenced from AL_ROOT
136
+
137
+ [70d9116 | Thu Jan 15 05:10:01 UTC 2009] Tim Morgan <riscfuture@gmail.com>
138
+
139
+ * Bugfix for d26328bfb38f0f849f293cfa359e51dc2989f106
140
+
141
+ [39b6cd8 | Thu Jan 15 04:57:52 UTC 2009] Tim Morgan <riscfuture@gmail.com>
142
+
143
+ * Now parses more server messages
144
+
145
+ [af71808 | Thu Jan 15 04:57:18 UTC 2009] Tim Morgan <riscfuture@gmail.com>
146
+
147
+ * Bugfix for authentication on unprotected methods
148
+
149
+ [6a294b8 | Thu Jan 15 04:56:39 UTC 2009] Tim Morgan <riscfuture@gmail.com>
150
+
151
+ * Facets and gems updates
152
+
153
+ [ce4d1d0 | Mon Jan 12 10:36:33 UTC 2009] comboy <kacper.ciesla@gmail.com>
154
+
155
+ * "$: <<" insteoad of "Dir.chdir"
156
+
157
+ Changing current working directory may be very confusing, especially when
158
+ working with some other libs.
159
+
160
+ Signed-off-by: Tim Morgan <riscfuture@gmail.com>
161
+
162
+ [d26328b | Sat Sep 20 12:10:42 UTC 2008] bterlson <btthalion@gmail.com>
163
+
164
+ * Fix crash bug caused by a command with only a semi-colon for its parameters (eg: ":bterlson!n=bterlson@xx.xx.xx.xx QUIT :").
165
+
166
+ Signed-off-by: Tim Morgan <riscfuture@gmail.com>
167
+
168
+ [cd59f55 | Fri Dec 12 03:23:02 UTC 2008] Tim Morgan <riscfuture@gmail.com>
169
+
170
+ * Bugfix and improvement for Anise support
171
+
172
+ [0d20430 | Fri Dec 12 03:22:41 UTC 2008] Tim Morgan <riscfuture@gmail.com>
173
+
174
+ * script/console documentation
175
+
176
+ [49fe9a4 | Fri Dec 12 02:15:28 UTC 2008] Tim Morgan <riscfuture@gmail.com>
177
+
178
+ * Facets 2.5, DataMapper 0.9.8
179
+
180
+ [d5ef219 | Wed Nov 19 19:23:03 UTC 2008] Tim Morgan <riscfuture@gmail.com>
181
+
182
+ * For some reason I needed to do this to get it to work?
183
+
184
+ [18cb672 | Thu Oct 16 01:26:42 UTC 2008] Tim Morgan <riscfuture@gmail.com>
185
+
186
+ * DataMapper 0.9.6
187
+
188
+ [d71a23e | Wed Sep 03 17:16:58 UTC 2008] Tim Morgan <riscfuture@gmail.com>
189
+
190
+ * Finished DataMapper hacks spec
191
+
192
+ [770dc2c | Mon Oct 06 16:34:18 UTC 2008] Tim Morgan <riscfuture@gmail.com>
193
+
194
+ * Facets 2.4.5
195
+
196
+ [331c618 | Mon Sep 08 21:45:26 UTC 2008] Tim Morgan <riscfuture@gmail.com>
197
+
198
+ * Added throttling support (preliminary)
199
+
200
+ [fe4e65f | Mon Sep 08 20:27:49 UTC 2008] Tim Morgan <riscfuture@gmail.com>
201
+
202
+ * Bugfix for new facets with script/*
203
+
204
+ [793ddc4 | Fri Sep 05 20:06:17 UTC 2008] Tim Morgan <riscfuture@gmail.com>
205
+
206
+ * Facets 2.4.4 compatibility
207
+
208
+ [a50d402 | Sat Aug 30 06:10:36 UTC 2008] Tim Morgan <riscfuture@gmail.com>
209
+
210
+ * Using DataMapper 0.9.5
211
+
212
+ [a4f3d7d | Fri Aug 22 18:53:45 UTC 2008] Tim Morgan <riscfuture@gmail.com>
213
+
214
+ * Suppressing unnecessary docs
215
+
216
+ [1e58f99 | Fri Aug 22 02:23:36 UTC 2008] Tim Morgan <riscfuture@gmail.com>
217
+
218
+ * DataMapper 0.9.4 compatibility
219
+
220
+ [f338aab | Wed Aug 20 20:15:39 UTC 2008] Tim Morgan <riscfuture@gmail.com>
221
+
222
+ * Bugfix for new Facets
223
+
224
+ [fa46a07 | Wed Aug 20 20:15:23 UTC 2008] Tim Morgan <riscfuture@gmail.com>
225
+
226
+ * Bugfix for AL_ROOT in script/console
227
+
228
+ [edd8050 | Mon Aug 11 19:07:13 UTC 2008] Tim Morgan <riscfuture@gmail.com>
229
+
230
+ * Sends channel password on startup join (mgbp's fix) and also on rejoin after kick
231
+
232
+ [856b156 | Tue Jul 29 18:56:30 UTC 2008] Tim Morgan <riscfuture@gmail.com>
233
+
234
+ * Requiring DataMapper 0.9.2 support until I can find out why 0.9.3 doesn't work
235
+
236
+ [151b42e | Sun Jul 27 02:31:29 UTC 2008] Tim Morgan <riscfuture@gmail.com>
237
+
238
+ * Improvements for DataMapper migration rake task
239
+
240
+ [388292b | Sun Jul 27 01:58:42 UTC 2008] Tim Morgan <riscfuture@gmail.com>
241
+
242
+ * Added script/console
243
+
244
+ [e4c68c5 | Sun Jul 27 01:04:17 UTC 2008] Tim Morgan <riscfuture@gmail.com>
245
+
246
+ * Improvements to leaf hot-reloading: Now reloads all leaves by default; and you can name a specific leaf to reload
247
+
248
+ [a2e1d7a | Sun Jul 27 00:43:47 UTC 2008] Tim Morgan <riscfuture@gmail.com>
249
+
250
+ * Scorekeeper has open scoring by default now
251
+
252
+ [20764d0 | Fri Jul 25 17:48:35 UTC 2008] Tim Morgan <riscfuture@gmail.com>
253
+
254
+ * No longer requiring *_command methods to return responses
255
+
256
+ [b99d832 | Wed Jul 23 21:29:03 UTC 2008] Tim Morgan <riscfuture@gmail.com>
257
+
258
+ * Fixes for default daemon and daemon choosing
259
+
260
+ [e28fece | Wed Jul 23 21:19:33 UTC 2008] Tim Morgan <riscfuture@gmail.com>
261
+
262
+ * Bugfix for !commands and !quit
263
+
264
+ [761b1dc | Tue Jul 22 21:15:47 UTC 2008] Tim Morgan <riscfuture@gmail.com>
265
+
266
+ * Indentation fixes
267
+
268
+ [879b397 | Tue Jul 22 20:52:46 UTC 2008] Tim Morgan <riscfuture@gmail.com>
269
+
270
+ * mailto: is redundant in textile
271
+
272
+ [e5437ff | Mon Jul 21 21:42:05 UTC 2008] Tim Morgan <riscfuture@gmail.com>
273
+
274
+ * Possible bugfix for when render is called at the end of a method
275
+
276
+ [3072462 | Wed Jul 16 20:01:45 UTC 2008] Tim Morgan <riscfuture@gmail.com>
277
+
278
+ * Now chooses the correct view for aliased commands that return strings
279
+
280
+ [0c8fee9 | Wed Jul 16 04:09:17 UTC 2008] Tim Morgan <riscfuture@gmail.com>
281
+
282
+ * Tweaked ops auth docs
283
+
284
+ [0815f08 | Wed Jul 16 03:49:23 UTC 2008] Tim Morgan <riscfuture@gmail.com>
285
+
286
+ * Bugfixes for ForgetfulQueue
287
+
288
+ [f42b2ba | Wed Jul 16 02:35:10 UTC 2008] Tim Morgan <riscfuture@gmail.com>
289
+
290
+ * Added Leaf#alias_command method
291
+
292
+ [9b5e3cc | Wed Jul 16 02:31:43 UTC 2008] Tim Morgan <riscfuture@gmail.com>
293
+
294
+ * Bugfix for encoding/decoding CTCP messages
295
+
296
+ [0bde0a2 | Wed Jul 16 00:32:39 UTC 2008] Tim Morgan <riscfuture@gmail.com>
297
+
298
+ * Fixed intro to include info on setting up the DB schema
299
+
300
+ [74c31b4 | Tue Jul 15 21:36:51 UTC 2008] Tim Morgan <riscfuture@gmail.com>
301
+
302
+ * Doc updates for new auth module
303
+
304
+ [ea12698 | Tue Jul 15 21:10:50 UTC 2008] Tim Morgan <riscfuture@gmail.com>
305
+
306
+ * Fixed hostname-based authentication
307
+
308
+ [3735bc0 | Tue Jul 15 21:03:10 UTC 2008] Tim Morgan <riscfuture@gmail.com>
309
+
310
+ * Bugfix for sets in Ruby 1.8.6
311
+
312
+ [5d4924b | Tue Jul 15 20:59:26 UTC 2008] Tim Morgan <riscfuture@gmail.com>
313
+
314
+ * Script/generate updates for new auth module
315
+
316
+ [2ff6d71 | Fri Jul 11 08:19:36 UTC 2008] Tim Morgan <riscfuture@gmail.com>
317
+
318
+ * Authentication module mostly finished
319
+
320
+ [84df8a9 | Thu Jul 10 22:38:48 UTC 2008] Tim Morgan <riscfuture@gmail.com>
321
+
322
+ * Coder now rejects empty variable names
323
+
324
+ [0403b40 | Wed Jul 09 23:42:59 UTC 2008] Tim Morgan <riscfuture@gmail.com>
325
+
326
+ * ChannelLeaf now listens for invites to channels its stem is not a part of
327
+
328
+ [108f0d9 | Wed Jul 09 23:28:50 UTC 2008] Tim Morgan <riscfuture@gmail.com>
329
+
330
+ * Yet another bugfix in normalized_channel_name
331
+
332
+ [69b1adc | Wed Jul 09 20:12:00 UTC 2008] Tim Morgan <riscfuture@gmail.com>
333
+
334
+ * Empty doc directory
335
+
336
+ [01dba80 | Tue Jul 08 23:52:42 UTC 2008] Tim Morgan <riscfuture@gmail.com>
337
+
338
+ * More bugfixes for case-insensitive channels
339
+
340
+ [e691cd3 | Tue Jul 08 23:18:56 UTC 2008] Tim Morgan <riscfuture@gmail.com>
341
+
342
+ * Bugfix for switch from Arrays to Sets
343
+
344
+ [65f6c47 | Tue Jul 08 22:44:33 UTC 2008] Tim Morgan <riscfuture@gmail.com>
345
+
346
+ * Using Sets instead of Arrays where appropriate
347
+
348
+ [f215f4f | Tue Jul 08 20:59:22 UTC 2008] Tim Morgan <riscfuture@gmail.com>
349
+
350
+ * Just discovered an important consideration; documenting it
351
+
352
+ [a558bd4 | Tue Jul 08 08:07:55 UTC 2008] Tim Morgan <riscfuture@gmail.com>
353
+
354
+ * Added empty directories the correct way
355
+
356
+ [bc49540 | Sun Jul 06 16:57:35 UTC 2008] Tim Morgan <riscfuture@gmail.com>
357
+
358
+ * More doc updates, filename changes
359
+
360
+ [0d2d62f | Sat Jul 05 06:41:02 UTC 2008] Tim Morgan <riscfuture@gmail.com>
361
+
362
+ * More documentation updates for Autumn 3
363
+
364
+ [1bf60b4 | Sat Jul 05 06:03:57 UTC 2008] Tim Morgan <riscfuture@gmail.com>
365
+
366
+ * Documentation updates
367
+
368
+ [1b8a9f3 | Sat Jul 05 04:14:18 UTC 2008] Tim Morgan <riscfuture@gmail.com>
369
+
370
+ * Removed default DM database since it seems to be no longer necessary; small Scorekeeper change
371
+
372
+ [1555539 | Sat Jul 05 03:20:51 UTC 2008] Tim Morgan <riscfuture@gmail.com>
373
+
374
+ * Added leaf-level :root option; scorekeeper fix
375
+
376
+ [46ef8f7 | Sat Jul 05 01:54:48 UTC 2008] Tim Morgan <riscfuture@gmail.com>
377
+
378
+ * Forcing a shared directory by including a README
379
+
380
+ [e4247a3 | Sat Jul 05 01:38:18 UTC 2008] Tim Morgan <riscfuture@gmail.com>
381
+
382
+ * Added README to auto-generated leaves
383
+
384
+ [3ef38e5 | Sat Jul 05 01:26:03 UTC 2008] Tim Morgan <riscfuture@gmail.com>
385
+
386
+ * Incremented version to 2.0.4
387
+
388
+ [d1777ac | Sat Jul 05 01:23:40 UTC 2008] Tim Morgan <riscfuture@gmail.com>
389
+
390
+ * Rakefile updates; better leaf documentation
391
+
392
+ [30d84bd | Sat Jul 05 00:58:25 UTC 2008] Tim Morgan <riscfuture@gmail.com>
393
+
394
+ * Documentation updates
395
+
396
+ [1d4193d | Fri Jul 04 23:37:13 UTC 2008] Tim Morgan <riscfuture@gmail.com>
397
+
398
+ * Supports hot-reloading
399
+
400
+ [519e377 | Fri Jul 04 09:07:02 UTC 2008] Tim Morgan <riscfuture@gmail.com>
401
+
402
+ * Bugfix for render views and reloading
403
+
404
+ [6fd30be | Fri Jul 04 09:00:36 UTC 2008] Tim Morgan <riscfuture@gmail.com>
405
+
406
+ * Added \!commands command
407
+
408
+ [06bded0 | Fri Jul 04 08:55:52 UTC 2008] Tim Morgan <riscfuture@gmail.com>
409
+
410
+ * Made leaves.yml file optiona
411
+
412
+ [f185a31 | Fri Jul 04 08:40:08 UTC 2008] Tim Morgan <riscfuture@gmail.com>
413
+
414
+ * Doc updates for Autumn 3.0
415
+
416
+ [51d14eb | Fri Jul 04 07:13:36 UTC 2008] Tim Morgan <riscfuture@gmail.com>
417
+
418
+ * Added backwards compatibility for commands w/o views
419
+
420
+ [a2ff42d | Fri Jul 04 06:52:24 UTC 2008] Tim Morgan <riscfuture@gmail.com>
421
+
422
+ * More Ruby 1.9/1.8 fixes
423
+
424
+ [e6dbfd8 | Fri Jul 04 06:43:39 UTC 2008] Tim Morgan <riscfuture@gmail.com>
425
+
426
+ * Added non-complicated example bot
427
+
428
+ [c2948bd | Fri Jul 04 06:42:37 UTC 2008] Tim Morgan <riscfuture@gmail.com>
429
+
430
+ * More Ruby 1.9 fixes
431
+
432
+ [4e50e1f | Fri Jul 04 06:41:58 UTC 2008] Tim Morgan <riscfuture@gmail.com>
433
+
434
+ * Ruby 1.9 compat fixes; added
435
+
436
+ [6fb9401 | Fri Jul 04 06:32:56 UTC 2008] Tim Morgan <riscfuture@gmail.com>
437
+
438
+ * Bugfix for script/generator leaf controller class names
439
+
440
+ [04853d5 | Fri Jul 04 06:30:54 UTC 2008] Tim Morgan <riscfuture@gmail.com>
441
+
442
+ * Bugfix for load_shared_code
443
+
444
+ [c48352c | Fri Jul 04 06:02:50 UTC 2008] Tim Morgan <riscfuture@gmail.com>
445
+
446
+ * Added git support to scripts, updated for 3.0 dir layout
447
+
448
+ [c8ca929 | Fri Jul 04 05:29:43 UTC 2008] Tim Morgan <riscfuture@gmail.com>
449
+
450
+ * Added support for shared code
451
+
452
+ [e33f921 | Fri Jul 04 05:25:48 UTC 2008] Tim Morgan <riscfuture@gmail.com>
453
+
454
+ * Added leaf-global config.yml file
455
+
456
+ [e881418 | Fri Jul 04 03:52:32 UTC 2008] Tim Morgan <riscfuture@gmail.com>
457
+
458
+ * Using arbitrary log levels in season.yml
459
+
460
+ [f138a42 | Fri Jul 04 03:31:57 UTC 2008] Tim Morgan <riscfuture@gmail.com>
461
+
462
+ * Bugfix for Facets 2.4; logging of errors in synced stem methods
463
+
464
+ [e172d8a | Fri Jul 04 02:58:57 UTC 2008] Tim Morgan <riscfuture@gmail.com>
465
+
466
+ * Got Scorekeeper all nice and working now
467
+
468
+ [9414ede | Fri Jul 04 00:29:55 UTC 2008] Tim Morgan <riscfuture@gmail.com>
469
+
470
+ * Got Scorekeeper basics working + task improvements
471
+
472
+ [3228a68 | Thu Jul 03 23:53:00 UTC 2008] Tim Morgan <riscfuture@gmail.com>
473
+
474
+ * Got rake db:migrate working with current DataMapper
475
+
476
+ [b038f3e | Thu Jul 03 22:59:52 UTC 2008] Tim Morgan <riscfuture@gmail.com>
477
+
478
+ * Support database config strings
479
+
480
+ [03e390c | Thu Jul 03 22:55:08 UTC 2008] Tim Morgan <riscfuture@gmail.com>
481
+
482
+ * Bugfix in generator
483
+
484
+ [b3dfbf4 | Thu Jul 03 22:54:06 UTC 2008] Tim Morgan <riscfuture@gmail.com>
485
+
486
+ * Facets 2.4.1 updates
487
+
488
+ [e94b3fb | Thu Jul 03 22:41:34 UTC 2008] Tim Morgan <riscfuture@gmail.com>
489
+
490
+ * Bugfix in Leaf#database method
491
+
492
+ [2dc6c82 | Thu Jul 03 22:41:15 UTC 2008] Tim Morgan <riscfuture@gmail.com>
493
+
494
+ * Bugfixes for newer DataMapper and Facets
495
+
496
+ [a0e1e32 | Thu Jul 03 22:23:41 UTC 2008] Tim Morgan <riscfuture@gmail.com>
497
+
498
+ * Updated Rakefile for new file layout
499
+
500
+ [d5069e2 | Thu Jul 03 18:46:49 UTC 2008] Tim Morgan <riscfuture@gmail.com>
501
+
502
+ * Textile fixes
503
+
504
+ [c6d61e5 | Thu Jul 03 18:35:09 UTC 2008] Tim Morgan <riscfuture@gmail.com>
505
+
506
+ * Doc updates for Github and in general
507
+
508
+ [171ac47 | Mon Jun 30 01:41:38 UTC 2008] Tim Morgan <riscfuture@gmail.com>
509
+
510
+ * Bugfix for case-insenstive servers, and some inspect methods
511
+
512
+ [5ff327a | Mon Jun 30 01:06:59 UTC 2008] Tim Morgan <riscfuture@gmail.com>
513
+
514
+ * Bugfixes to make sample task work
515
+
516
+ [1230610 | Sun Jun 29 17:29:50 UTC 2008] Tim Morgan <riscfuture@gmail.com>
517
+
518
+ * Working example Rake task
519
+
520
+ [a4ac37d | Sun Jun 29 17:25:10 UTC 2008] Tim Morgan <riscfuture@gmail.com>
521
+
522
+ * Small improvements to shorten up Oshuma's code
523
+
524
+ [7c1d4ae | Sun Jun 29 05:50:17 UTC 2008] Dale Campbell <dale@save-state.net>
525
+
526
+ * Small comment update.
527
+
528
+ [6d750e1 | Sun Jun 29 00:06:43 UTC 2008] Dale Campbell <dale@save-state.net>
529
+
530
+ * Custom bot Rake tasks.
531
+
532
+ [ae1786e | Sat Jun 28 23:08:08 UTC 2008] Dale Campbell <dale@save-state.net>
533
+
534
+ * Adding placeholder directories.
535
+
536
+ [a9448d5 | Sat Jun 28 02:45:50 UTC 2008] Tim Morgan <riscfuture@gmail.com>
537
+
538
+ * Removed testing bot
539
+
540
+ [826547c | Sat Jun 28 02:43:09 UTC 2008] Tim Morgan <riscfuture@gmail.com>
541
+
542
+ * Added gitignore file
543
+
544
+ [cc31830 | Sat Jun 28 02:42:18 UTC 2008] Tim Morgan <riscfuture@gmail.com>
545
+
546
+ * Removing log file
547
+
548
+ [e6a58d8 | Sat Jun 28 02:40:40 UTC 2008] Tim Morgan <riscfuture@gmail.com>
549
+
550
+ * Checking in what I have so far for autumn3
551
+
552
+ [859127a | Sat Jun 28 02:20:22 UTC 2008] Tim Morgan <riscfuture@gmail.com>
553
+
554
+ * Fix for command prefixes that are special regex characters
555
+
556
+ [2f14448 | Sat Jun 28 02:18:23 UTC 2008] Tim Morgan <riscfuture@gmail.com>
557
+
558
+ * Doc fix
559
+
560
+ [c516201 | Sat Jun 28 02:00:06 UTC 2008] Tim Morgan <riscfuture@gmail.com>
561
+
562
+ * Added vhost feature
563
+
564
+ [e10fae9 | Fri Jun 27 23:30:04 UTC 2008] Tim Morgan <riscfuture@gmail.com>
565
+
566
+ * Copy from SVN repo
567
+