ver 2009.11.29 → 2009.12.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/AUTHORS +6 -0
  2. data/CHANGELOG +353 -1
  3. data/LICENSE +18 -0
  4. data/MANIFEST +11 -1
  5. data/Rakefile +2 -1
  6. data/bin/ver +3 -12
  7. data/config/detect.rb +1 -1
  8. data/config/keymap/diakonos.rb +181 -0
  9. data/config/keymap/emacs.rb +24 -24
  10. data/config/keymap/vim.rb +162 -127
  11. data/config/rc.rb +29 -14
  12. data/config/syntax/Nemerle.json +3 -3
  13. data/lib/ver.rb +88 -134
  14. data/lib/ver/entry.rb +5 -0
  15. data/lib/ver/exception_view.rb +97 -0
  16. data/lib/ver/hover_completion.rb +14 -7
  17. data/lib/ver/keymap.rb +30 -1
  18. data/lib/ver/layout.rb +20 -14
  19. data/lib/ver/methods.rb +6 -15
  20. data/lib/ver/methods/bookmark.rb +189 -0
  21. data/lib/ver/methods/completion.rb +2 -2
  22. data/lib/ver/methods/control.rb +109 -26
  23. data/lib/ver/methods/ctags.rb +28 -4
  24. data/lib/ver/methods/delete.rb +85 -4
  25. data/lib/ver/methods/insert.rb +73 -52
  26. data/lib/ver/methods/move.rb +122 -35
  27. data/lib/ver/methods/open.rb +4 -43
  28. data/lib/ver/methods/search.rb +46 -17
  29. data/lib/ver/methods/select.rb +121 -24
  30. data/lib/ver/methods/undo.rb +23 -0
  31. data/lib/ver/methods/views.rb +5 -0
  32. data/lib/ver/mode.rb +18 -17
  33. data/lib/ver/status.rb +2 -2
  34. data/lib/ver/status/context.rb +166 -0
  35. data/lib/ver/text.rb +43 -81
  36. data/lib/ver/text/index.rb +24 -7
  37. data/lib/ver/undo.rb +289 -0
  38. data/lib/ver/vendor/sized_array.rb +70 -0
  39. data/lib/ver/vendor/textpow.rb +6 -1
  40. data/lib/ver/version.rb +3 -0
  41. data/lib/ver/view.rb +11 -8
  42. data/lib/ver/view/list/grep.rb +15 -4
  43. data/lib/ver/view/term.rb +9 -3
  44. data/spec/helper.rb +94 -0
  45. data/ver.gemspec +9 -6
  46. metadata +25 -5
  47. data/spec/keymap.rb +0 -224
data/AUTHORS ADDED
@@ -0,0 +1,6 @@
1
+ Following persons have contributed to ver.
2
+ (Sorted by number of submitted patches, then alphabetically)
3
+
4
+ 687 Michael Fellinger <m.fellinger@gmail.com>
5
+ 27 Julian Langschaedel <meta.rb@gmail.com>
6
+ 1 lian <meta.rb@gmail.com>
data/CHANGELOG CHANGED
@@ -1,7 +1,359 @@
1
- [34796ca | 2009-11-28 15:29:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
1
+ [4286584 | 2009-12-14 04:00:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
2
+
3
+ * Version 2009.12.14
4
+
5
+ [6f4c711 | 2009-12-09 15:47:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
6
+
7
+ * Better not to raise but to return
8
+
9
+ [122c1f1 | 2009-12-09 15:40:05 UTC] Michael Fellinger <m.fellinger@gmail.com>
10
+
11
+ * Raise when parser doesn't move
12
+
13
+ [59b8f6e | 2009-12-09 15:11:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
14
+
15
+ * Fix broken regexps for nemerle
16
+
17
+ [48412a6 | 2009-12-09 15:03:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
18
+
19
+ * Put selection related code into correct module, fix block selections
20
+
21
+ [96f5845 | 2009-12-09 07:54:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
22
+
23
+ * Finally found the issue for tk::TextUpDownLine, implemented faster version in ruby
24
+
25
+ [5c4535e | 2009-12-09 06:34:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
26
+
27
+ * Make .tcl files default to Tcl
28
+
29
+ [ea17755 | 2009-12-09 06:26:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
30
+
31
+ * Respect count and shiftwidth option for <>
32
+
33
+ [1831ad2 | 2009-12-08 17:33:21 UTC] Julian Langschaedel <meta.rb@gmail.com>
34
+
35
+ * Adjust search_next
36
+
37
+ [22cd07f | 2009-12-08 17:31:44 UTC] Julian Langschaedel <meta.rb@gmail.com>
38
+
39
+ * Speed up previous_line/next_line
40
+
41
+ [274d831 | 2009-12-08 05:52:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
42
+
43
+ * Speed up previous_line/next_line, preparation for next step in refactor of status line
44
+
45
+ [88c3092 | 2009-12-08 05:51:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
46
+
47
+ * Speed up and improve refresh_selection
48
+
49
+ [95afc17 | 2009-12-05 12:31:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
50
+
51
+ * Add some more specs
52
+
53
+ [35d2b60 | 2009-12-05 08:02:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
54
+
55
+ * Only insert record separator if there's a record
56
+
57
+ [ab3f71d | 2009-12-04 08:50:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
58
+
59
+ * Proper arguments for some other movement methods
60
+
61
+ [1d3e24a | 2009-12-04 08:46:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
62
+
63
+ * First draft of how specs could be done
64
+
65
+ [280d15d | 2009-12-04 08:46:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
66
+
67
+ * Accept a block for VER.run, used for specs
68
+
69
+ [724d574 | 2009-12-04 08:46:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
70
+
71
+ * Improve some movement commands
72
+
73
+ [6dd483f | 2009-12-04 06:58:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
74
+
75
+ * Improve placement of hover completion
76
+
77
+ [bd1de42 | 2009-12-04 06:43:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
78
+
79
+ * Fix insert_selection
80
+
81
+ [230110c | 2009-12-04 06:36:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
82
+
83
+ * cleanup
84
+
85
+ [b288b95 | 2009-12-04 06:35:10 UTC] Michael Fellinger <m.fellinger@gmail.com>
86
+
87
+ * Make syntax_indent_file undo atomic
88
+
89
+ [9c4f3ae | 2009-12-04 06:34:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
90
+
91
+ * Avoid lots of useless re-highlighting and fix undo of replacements
92
+
93
+ [7817869 | 2009-12-04 06:18:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
94
+
95
+ * Option for incremental search speedup
96
+
97
+ [e596e87 | 2009-12-03 11:51:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
98
+
99
+ * Proper undo separation for some insert commands
100
+
101
+ [f982abc | 2009-12-03 11:30:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
102
+
103
+ * Fix invalid conversion of indices
104
+
105
+ [7ab2e44 | 2009-12-03 11:30:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
106
+
107
+ * Make the term a bit less crashy
108
+
109
+ [874e32e | 2009-12-03 10:38:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
110
+
111
+ * More cleanup regarding undo
112
+
113
+ [8557b62 | 2009-12-03 10:23:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
114
+
115
+ * Single out Status::Context
116
+
117
+ [d496067 | 2009-12-03 10:16:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
118
+
119
+ * cleanup
120
+
121
+ [30e3ac5 | 2009-12-03 10:12:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
122
+
123
+ * Implement undo/redo in ruby
124
+
125
+ [dc44ee1 | 2009-12-02 07:09:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
126
+
127
+ * Custom errors for undo/redo since ffi-tk ones aren't as pretty
128
+
129
+ [8e41e04 | 2009-12-02 07:08:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
130
+
131
+ * Under ncurses, Escape <Key> behaves like Alt-Key, map a few of those
132
+
133
+ [6dbc9c6 | 2009-12-02 07:07:24 UTC] Michael Fellinger <m.fellinger@gmail.com>
134
+
135
+ * This should allow selections to behave mostly as in diakonos
136
+
137
+ [e520bd9 | 2009-12-02 06:44:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
138
+
139
+ * Use new keymap syntax for diakonos
140
+
141
+ [ad06882 | 2009-12-02 06:44:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
142
+
143
+ * Change keymapping syntax to allow a bit more diakonos-like language
144
+
145
+ [c2ac3b7 | 2009-12-02 06:26:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
146
+
147
+ * Make mode arguments inheritable from keymap to cut down boilerplate
148
+
149
+ [e583f6b | 2009-12-02 06:11:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
150
+
151
+ * options.tabs really doesn't need user config
152
+
153
+ [91e6a01 | 2009-12-02 06:11:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
154
+
155
+ * Remove battery from standard statusline
156
+
157
+ [2d8e946 | 2009-12-02 06:08:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
158
+
159
+ * Make sure statusline doesn't fail when charging
160
+
161
+ [049e37e | 2009-11-28 15:29:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
2
162
 
3
163
  * Fix tasks and gemspec
4
164
 
165
+ [c3c842b | 2009-12-01 12:22:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
166
+
167
+ * Finally license
168
+
169
+ [6c8dad8 | 2009-12-01 12:21:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
170
+
171
+ * Try to improve repetition, just a prototype
172
+
173
+ [e7d19f9 | 2009-12-01 12:18:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
174
+
175
+ * Implement replace mode
176
+
177
+ [606ed97 | 2009-12-01 12:13:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
178
+
179
+ * Map C-t for diakonos
180
+
181
+ [a3d4e85 | 2009-12-01 12:13:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
182
+
183
+ * fix off-by-one error
184
+
185
+ [916a915 | 2009-12-01 11:49:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
186
+
187
+ * Finally implement something like vims repeating .; Add SizedArray
188
+
189
+ [9119a89 | 2009-12-01 11:12:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
190
+
191
+ * Finally added W and B movements
192
+
193
+ [f970f8a | 2009-12-01 10:59:30 UTC] Michael Fellinger <m.fellinger@gmail.com>
194
+
195
+ * Fix font option
196
+
197
+ [551114a | 2009-12-01 10:54:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
198
+
199
+ * Make passed options more important than the rc
200
+
201
+ [96ef651 | 2009-12-01 10:42:37 UTC] Michael Fellinger <m.fellinger@gmail.com>
202
+
203
+ * Refactor a bit so the rc.rb can influence forking
204
+
205
+ [d4da06b | 2009-12-01 10:20:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
206
+
207
+ * Improve statusline and add battery info
208
+
209
+ [e1aed2d | 2009-11-30 18:18:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
210
+
211
+ * Add stub option for statusline
212
+
213
+ [0408027 | 2009-11-30 18:17:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
214
+
215
+ * Some more stuff for diakonos keymap, better exec and switching buffers
216
+
217
+ [4971e89 | 2009-11-30 18:15:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
218
+
219
+ * Make a more or less advanced statusline syntax hack
220
+
221
+ [59349b6 | 2009-11-30 13:55:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
222
+
223
+ * Add exec_into_new and exec_into_void for diakonos
224
+
225
+ [537961b | 2009-11-30 07:59:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
226
+
227
+ * Some more reasonable ways to grep
228
+
229
+ [e8ffd9a | 2009-11-30 07:51:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
230
+
231
+ * Clear search for diakonos
232
+
233
+ [9ada101 | 2009-11-30 07:49:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
234
+
235
+ * Map some more stuff in diakonos keymap
236
+
237
+ [e3c6aa7 | 2009-11-30 07:36:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
238
+
239
+ * Incremental highlight when searching
240
+
241
+ [8d559d6 | 2009-11-30 07:20:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
242
+
243
+ * Add scrolling for diakonos
244
+
245
+ [8b2576d | 2009-11-30 07:13:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
246
+
247
+ * Fix ctag stack
248
+
249
+ [c7c4fc2 | 2009-11-30 07:09:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
250
+
251
+ * cleanup
252
+
253
+ [febbe25 | 2009-11-30 07:08:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
254
+
255
+ * VER.dump_options prototype
256
+
257
+ [7eb180d | 2009-11-30 07:08:36 UTC] Michael Fellinger <m.fellinger@gmail.com>
258
+
259
+ * Restructure bookmark code again
260
+
261
+ [e739f13 | 2009-11-30 07:04:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
262
+
263
+ * A ctags stack reusing the bookmark code
264
+
265
+ [e936e32 | 2009-11-30 07:03:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
266
+
267
+ * Extract Bookmarks into the methods file
268
+
269
+ [270fdf7 | 2009-11-30 06:57:23 UTC] Michael Fellinger <m.fellinger@gmail.com>
270
+
271
+ * Add bookmark keybinds as they are in vim
272
+
273
+ [03de119 | 2009-11-30 06:28:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
274
+
275
+ * cleanup
276
+
277
+ [a0ddfa9 | 2009-11-30 06:28:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
278
+
279
+ * Avoid exceptions by weird key sequences
280
+
281
+ [1d9aef7 | 2009-11-30 06:27:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
282
+
283
+ * Add support for bookmarks in diakonos keymap
284
+
285
+ [40db1e2 | 2009-11-29 05:37:46 UTC] Julian Langschaedel <meta.rb@gmail.com>
286
+
287
+ * Fix Text#font typo
288
+
289
+ [661272e | 2009-11-29 05:36:00 UTC] Julian Langschaedel <meta.rb@gmail.com>
290
+
291
+ * Drop height option at completion list
292
+
293
+ [aa2fe3b | 2009-11-29 13:07:49 UTC] Michael Fellinger <m.fellinger@gmail.com>
294
+
295
+ * Make emacs mapping functional again, add quit for diakonos
296
+
297
+ [7d3adff | 2009-11-29 12:56:39 UTC] Michael Fellinger <m.fellinger@gmail.com>
298
+
299
+ * Add incomplete diakonos keymap
300
+
301
+ [9b73951 | 2009-11-29 12:56:14 UTC] Michael Fellinger <m.fellinger@gmail.com>
302
+
303
+ * And another fix for status kill
304
+
305
+ [0baa71c | 2009-11-29 12:42:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
306
+
307
+ * finally found a proper quote in fortune
308
+
309
+ [57181de | 2009-11-29 12:33:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
310
+
311
+ * Extract the exception tree into own class
312
+
313
+ [388c91b | 2009-11-29 12:19:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
314
+
315
+ * Give VER::Entry a kill_motion method
316
+
317
+ [68501d5 | 2009-11-29 12:11:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
318
+
319
+ * Fix delete|kill line
320
+
321
+ [036ce7d | 2009-11-29 12:09:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
322
+
323
+ * Remove outdated spec for keymap, leaving us with zero...
324
+
325
+ [4281c18 | 2009-11-29 12:05:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
326
+
327
+ * Second form of Text#font, returns font if no options given
328
+
329
+ [54218b1 | 2009-11-29 12:05:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
330
+
331
+ * cleanup
332
+
333
+ [3a9da44 | 2009-11-29 12:03:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
334
+
335
+ * Use Text#options where possible, so a buffer can have local options
336
+
337
+ [5b9baf1 | 2009-11-29 11:57:57 UTC] Michael Fellinger <m.fellinger@gmail.com>
338
+
339
+ * Make distinction between killing and deleting like emacs, default to killing for most
340
+
341
+ [47e9ae8 | 2009-11-29 11:56:54 UTC] Michael Fellinger <m.fellinger@gmail.com>
342
+
343
+ * Make startup a bit faster by removing definition of unused console_entry
344
+
345
+ [0f2d412 | 2009-11-29 11:54:06 UTC] Michael Fellinger <m.fellinger@gmail.com>
346
+
347
+ * Options for comment
348
+
349
+ [8179b7d | 2009-11-29 11:43:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
350
+
351
+ * Options for scrollbars
352
+
353
+ [b4c624f | 2009-11-29 11:41:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
354
+
355
+ * Better (un)comment_selection
356
+
5
357
  [f96b0f1 | 2009-11-28 11:37:20 UTC] Michael Fellinger <m.fellinger@gmail.com>
6
358
 
7
359
  * Rescue error when opening non-existing file
data/LICENSE ADDED
@@ -0,0 +1,18 @@
1
+ Copyright (c) 2009 Michael Fellinger <m.fellinger@gmail.com>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to
5
+ deal in the Software without restriction, including without limitation the
6
+ rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
+ sell copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
16
+ THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
17
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
18
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/MANIFEST CHANGED
@@ -1,10 +1,13 @@
1
+ AUTHORS
1
2
  CHANGELOG
3
+ LICENSE
2
4
  MANIFEST
3
5
  README.textile
4
6
  Rakefile
5
7
  TODO
6
8
  bin/ver
7
9
  config/detect.rb
10
+ config/keymap/diakonos.rb
8
11
  config/keymap/emacs.rb
9
12
  config/keymap/vim.rb
10
13
  config/preferences/ANTLR.json
@@ -323,6 +326,7 @@ config/welcome
323
326
  help/index.verh
324
327
  lib/ver.rb
325
328
  lib/ver/entry.rb
329
+ lib/ver/exception_view.rb
326
330
  lib/ver/font.rb
327
331
  lib/ver/help.rb
328
332
  lib/ver/help/describe_key.rb
@@ -331,6 +335,7 @@ lib/ver/hover_completion.rb
331
335
  lib/ver/keymap.rb
332
336
  lib/ver/layout.rb
333
337
  lib/ver/methods.rb
338
+ lib/ver/methods/bookmark.rb
334
339
  lib/ver/methods/clipboard.rb
335
340
  lib/ver/methods/completion.rb
336
341
  lib/ver/methods/control.rb
@@ -345,11 +350,13 @@ lib/ver/methods/save.rb
345
350
  lib/ver/methods/search.rb
346
351
  lib/ver/methods/select.rb
347
352
  lib/ver/methods/shortcuts.rb
353
+ lib/ver/methods/undo.rb
348
354
  lib/ver/methods/views.rb
349
355
  lib/ver/mode.rb
350
356
  lib/ver/options.rb
351
357
  lib/ver/plist.rb
352
358
  lib/ver/status.rb
359
+ lib/ver/status/context.rb
353
360
  lib/ver/syntax.rb
354
361
  lib/ver/syntax/detector.rb
355
362
  lib/ver/syntax/processor.rb
@@ -357,10 +364,13 @@ lib/ver/text.rb
357
364
  lib/ver/text/index.rb
358
365
  lib/ver/theme.rb
359
366
  lib/ver/tooltip.rb
367
+ lib/ver/undo.rb
360
368
  lib/ver/vendor/binary_search.rb
361
369
  lib/ver/vendor/fuzzy_file_finder.rb
362
370
  lib/ver/vendor/levenshtein.rb
371
+ lib/ver/vendor/sized_array.rb
363
372
  lib/ver/vendor/textpow.rb
373
+ lib/ver/version.rb
364
374
  lib/ver/view.rb
365
375
  lib/ver/view/console.rb
366
376
  lib/ver/view/entry.rb
@@ -373,7 +383,7 @@ lib/ver/view/list/methods.rb
373
383
  lib/ver/view/list/syntax.rb
374
384
  lib/ver/view/list/theme.rb
375
385
  lib/ver/view/term.rb
376
- spec/keymap.rb
386
+ spec/helper.rb
377
387
  tasks/authors.rake
378
388
  tasks/bacon.rake
379
389
  tasks/changelog.rake