flyrb 1.0.0.a

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/History.txt +5 -0
  2. data/Manifest.txt +7 -0
  3. data/README +362 -0
  4. data/bin/amazon +16 -0
  5. data/bin/google +7 -0
  6. data/bin/pastie +7 -0
  7. data/flyrb.gemspec +22 -0
  8. data/html/andreas00.css +449 -0
  9. data/html/authorship.html +86 -0
  10. data/html/bg.gif +0 -0
  11. data/html/front.jpg +0 -0
  12. data/html/index.html +81 -0
  13. data/html/menubg.gif +0 -0
  14. data/html/menubg2.gif +0 -0
  15. data/html/test.jpg +0 -0
  16. data/html/usage.html +304 -0
  17. data/lib/flyrb/amazon_upload_shortcut.rb +25 -0
  18. data/lib/flyrb/clipboard.rb +52 -0
  19. data/lib/flyrb/command_history.rb +110 -0
  20. data/lib/flyrb/convertable_to_file.rb +34 -0
  21. data/lib/flyrb/equipper.rb +71 -0
  22. data/lib/flyrb/google.rb +33 -0
  23. data/lib/flyrb/hash_math.rb +13 -0
  24. data/lib/flyrb/interactive_editor.rb +78 -0
  25. data/lib/flyrb/irb_options.rb +3 -0
  26. data/lib/flyrb/irb_verbosity_control.rb +30 -0
  27. data/lib/flyrb/is_an.rb +4 -0
  28. data/lib/flyrb/language_greps.rb +28 -0
  29. data/lib/flyrb/not.rb +15 -0
  30. data/lib/flyrb/pastie.rb +34 -0
  31. data/lib/flyrb/pipe.rb +24 -0
  32. data/lib/flyrb/rails_finder_shortcut.rb +18 -0
  33. data/lib/flyrb/rails_verbosity_control.rb +8 -0
  34. data/lib/flyrb/string_to_proc.rb +72 -0
  35. data/lib/flyrb/symbol_to_proc.rb +30 -0
  36. data/lib/flyrb/wirble.rb +83 -0
  37. data/lib/flyrb/with.rb +21 -0
  38. data/lib/flyrb.rb +22 -0
  39. data/spec/convertable_to_file_spec.rb +31 -0
  40. data/spec/equipper_spec.rb +70 -0
  41. data/spec/flyrb_spec.rb +4 -0
  42. data/spec/hash_math_spec.rb +17 -0
  43. data/spec/interactive_editor_spec.rb +146 -0
  44. data/spec/language_greps_spec.rb +9 -0
  45. data/spec/pastie_spec.rb +92 -0
  46. data/spec/pipe_spec.rb +30 -0
  47. data/spec/spec_helper.rb +8 -0
  48. data/spec/string_to_proc_spec.rb +41 -0
  49. metadata +143 -0
@@ -0,0 +1,449 @@
1
+ /* andreas00 - an open source xhtml/css website layout by Andreas Viklund - http://andreasviklund.com . Free to use for any purpose as long as the proper credits are given to the original author.
2
+ Version: 1.1 (Apr 20, 2006) */
3
+
4
+ /***** Body and main container *****/
5
+
6
+ body {
7
+ margin:0 auto;
8
+ padding:0;
9
+ font:76% Verdana,Tahoma,Arial,sans-serif;
10
+ background:#eaeaea url(bg.gif) top center repeat-y;
11
+ color:#3a3a3a;
12
+ }
13
+
14
+ #wrap {
15
+ background-color:#ffffff;
16
+ color:#303030;
17
+ margin:0 auto;
18
+ padding:1px 5px;
19
+ width:760px;
20
+ }
21
+
22
+ /***** Header *****/
23
+
24
+ #header {
25
+ color:#505050;
26
+ background:#ffffff url(http://s3.amazonaws.com/giles/the_tao_of_bondage_vigilantes.jpg) bottom left no-repeat;
27
+ height:250px;
28
+ margin:0 0 10px 0;
29
+ padding:0;
30
+ }
31
+
32
+ #header h1 {
33
+ font-size:2.5em;
34
+ font-weight:normal;
35
+ letter-spacing:-2px;
36
+ margin:0 0 4px 15px;
37
+ padding:15px 0 0 0;
38
+ }
39
+
40
+ #header h1 a,#header h1 a:hover {
41
+ padding:0;
42
+ }
43
+
44
+ #header p {
45
+ font-size:1.1em;
46
+ letter-spacing:-1px;
47
+ margin:0 0 20px 15px;
48
+ padding:0 0 0 3px;
49
+ }
50
+
51
+ /***** Left sidebar *****/
52
+
53
+ #avmenu {
54
+ clear:left;
55
+ float:left;
56
+ width:150px;
57
+ margin:0 0 10px 0;
58
+ padding:0;
59
+ }
60
+
61
+ #avmenu ul {
62
+ list-style:none;
63
+ width:150px;
64
+ margin:0 0 20px 0;
65
+ padding:0;
66
+ }
67
+
68
+ #avmenu li {
69
+ margin-bottom:5px;
70
+ }
71
+
72
+ #avmenu li a {
73
+ font-weight:bold;
74
+ height:20px;
75
+ text-decoration:none;
76
+ color:#505050;
77
+ display:block;
78
+ padding:6px 0 0 10px;
79
+ background:#f4f4f4 url(menubg.gif) bottom left repeat-x;
80
+ border-top:1px solid #d8d8d8;
81
+ border-right:1px solid #d8d8d8;
82
+ border-bottom:1px solid #d8d8d8;
83
+ border-left:4px solid #cccccc;
84
+ }
85
+
86
+ #avmenu li a:hover, #avmenu li a.current {
87
+ background:#eaeaea url(menubg2.gif) bottom left repeat-x;
88
+ color:#505050;
89
+ border-top:1px solid #b0b0b0;
90
+ border-right:1px solid #b0b0b0;
91
+ border-bottom:1px solid #b0b0b0;
92
+ border-left:4px solid #505050;
93
+ }
94
+
95
+ #avmenu ul ul {
96
+ margin:5px 0 5px 15px;
97
+ font-size:0.9em;
98
+ width:135px;
99
+ }
100
+
101
+ #avmenu ul ul a {
102
+ height:16px;
103
+ margin:0;
104
+ padding:4px 0 0 8px;
105
+ }
106
+
107
+ #avmenu h2 {
108
+ font-size:1.5em;
109
+ font-weight:normal;
110
+ line-height:1.8em;
111
+ }
112
+
113
+ /***** Right sidebar *****/
114
+
115
+ #extras {
116
+ float:right;
117
+ width:130px;
118
+ margin:0 0 10px 0;
119
+ padding:0;
120
+ font-size:0.9em;
121
+ }
122
+
123
+ #extras p, #extras ul {
124
+ margin:0 0 1.5em 0;
125
+ line-height:1.3em;
126
+ padding:0;
127
+ }
128
+
129
+ #extras a {
130
+ font-weight:bold;
131
+ }
132
+
133
+ #extras li {
134
+ list-style:none;
135
+ margin:0 0 6px 0;
136
+ padding:0;
137
+ }
138
+
139
+ #extras h2 {
140
+ font-size:1.6em;
141
+ font-weight:normal;
142
+ margin:0 0 6px 0;
143
+ ;
144
+ letter-spacing:-1px;
145
+ }
146
+
147
+ /***** Main content *****/
148
+
149
+ #content {
150
+ margin:10px 140px 10px 160px;
151
+ padding:0;
152
+ line-height:1.5em;
153
+ text-align:left;
154
+ }
155
+
156
+ #contentwide {
157
+ margin:10px 0 10px 160px;
158
+ padding:0;
159
+ line-height:1.5em;
160
+ text-align:left;
161
+ }
162
+
163
+ #contentfull {
164
+ margin:10px 10px 10px 10px;
165
+ padding:2px 0 0 0;
166
+ line-height:1.5em;
167
+ text-align:left;
168
+ }
169
+
170
+ #content h2, #contentwide h2, #contentfull h2 {
171
+ font-size:1.8em;
172
+ font-weight:normal;
173
+ margin:8px 0 10px 0px;
174
+ padding:0;
175
+ padding-left: 10px;
176
+ line-height:1.8em;
177
+ background-color: #440055;
178
+ color: white;
179
+ }
180
+
181
+ #content h3, #contentwide h3, #contentfull h3 {
182
+ line-height:1.8em;
183
+ background-color: black;
184
+ color: white;
185
+ font-size:1.5em;
186
+ font-weight:normal;
187
+ margin:6px 0 6px 0;
188
+ padding:0;
189
+ padding-left: 10px;
190
+ }
191
+
192
+ #content img, #contentwide img, #contentfull img {
193
+ padding:1px;
194
+ display:inline;
195
+ background:#cccccc;
196
+ color:#303030;
197
+ border:4px solid #f0f0f0;
198
+ }
199
+
200
+ #content a, #contentwide a, #contentfull a {
201
+ }
202
+
203
+ #content ul, #content ol,
204
+ #contentwide ul, #contentwide ol,
205
+ #contentfull ul, #contentfull ol {
206
+ margin:0 0 16px 20px;
207
+ padding:0;
208
+ }
209
+
210
+ #content ul ul, #content ol ol,
211
+ #contentwide ul ul, #contentwide ol ol,
212
+ #contentfull ul ul, #contentfull ol ol {
213
+ margin:2px 0 2px 20px;
214
+ }
215
+
216
+ #content li, #contentwide li, #contentfull li {
217
+ margin:0 0 2px 10px;
218
+ padding:0 0 0 4px;
219
+ }
220
+
221
+ /***** Footer *****/
222
+
223
+ #footer {
224
+ clear:both;
225
+ margin:0 auto;
226
+ padding:8px 0;
227
+ border-top:2px solid #dadada;
228
+ width:760px;
229
+ text-align:center;
230
+ color:#808080;
231
+ background-color:#ffffff;
232
+ font-size:0.9em;
233
+ }
234
+
235
+ #footer p {
236
+ padding:0;
237
+ margin:0;
238
+ }
239
+
240
+ #footer a {
241
+ color:#808080;
242
+ background-color:inherit;
243
+ text-decoration:none;
244
+ }
245
+
246
+ #footer a:hover {
247
+ text-decoration:underline;
248
+ }
249
+
250
+ /***** Various tags *****/
251
+
252
+ a {
253
+ text-decoration:none;
254
+ color:#505050;
255
+ background-color:inherit;
256
+ }
257
+
258
+ a:hover {
259
+ text-decoration:underline;
260
+ color:#286ea0;
261
+ background-color:inherit;
262
+ }
263
+
264
+ a img {
265
+ border:0;
266
+ }
267
+
268
+ p {
269
+ margin:0 0 16px 0;
270
+ }
271
+
272
+ blockquote {
273
+ border-top:1px solid #d8d8d8;
274
+ border-right:1px solid #d8d8d8;
275
+ border-bottom:1px solid #d8d8d8;
276
+ border-left:4px solid #cccccc;
277
+ margin:16px;
278
+ padding:7px 7px 7px 11px;
279
+ background:#f4f4f4 url(menubg.gif) bottom left repeat-x;
280
+ color:#505050;
281
+ }
282
+
283
+ blockquote p {
284
+ font-size:1.1em;
285
+ line-height:1.3em;
286
+ margin:0;
287
+ }
288
+
289
+ /***** Table styles *****/
290
+
291
+ table {
292
+ margin:0 0 16px 0;
293
+ padding:0;
294
+ line-height:1.3em;
295
+ border-collapse:collapse;
296
+ border:1px solid #d8d8d8;
297
+ }
298
+
299
+ caption {
300
+ text-align:left;
301
+ font-size:1.5em;
302
+ font-weight:normal;
303
+ margin:0;
304
+ padding:6px 0 8px 0;
305
+ }
306
+
307
+ th {
308
+ padding:7px;
309
+ text-align:left;
310
+ background:#eaeaea url(menubg2.gif) bottom left repeat-x;
311
+ color:#505050;
312
+ }
313
+
314
+ td {
315
+ padding:7px;
316
+ font-size:0.9em;
317
+ text-align:left;
318
+ background:#f4f4f4 url(menubg.gif) bottom left repeat-x;
319
+ color:#303030;
320
+ }
321
+
322
+ /***** Form styles *****/
323
+
324
+ .button {
325
+ border-top:1px solid #d8d8d8;
326
+ border-right:1px solid #d8d8d8;
327
+ border-bottom:1px solid #d8d8d8;
328
+ border-left:4px solid #cccccc;
329
+ margin:0 0 15px 0;
330
+ padding:7px 7px 7px 11px;
331
+ background:#f4f4f4 url(menubg.gif) bottom left repeat-x;
332
+ color:#505050;
333
+ font-weight:bold;
334
+ width:120px;
335
+ }
336
+
337
+ input, textarea {
338
+ border:1px solid #cccccc;
339
+ font-family:Verdana,Tahoma,Arial,Sans-Serif;
340
+ font-size:1em;
341
+ margin:0;
342
+ padding:4px;
343
+ }
344
+
345
+ label {
346
+ margin:2px;
347
+ }
348
+
349
+ input {
350
+ width:200px;
351
+ }
352
+
353
+ textarea {
354
+ width:400px;
355
+ }
356
+
357
+ /***** Search box *****/
358
+
359
+ #searchbox {
360
+ padding:0;
361
+ margin:6px 0 16px 0;
362
+ }
363
+
364
+ #searchform {
365
+ background:#ffffff;
366
+ border:1px solid #cccccc;
367
+ color:#505050;
368
+ font-size:0.9em;
369
+ padding:4px;
370
+ width:116px;
371
+ }
372
+
373
+ #searchbox label {
374
+ display:none;
375
+ }
376
+
377
+ /***** Various classes *****/
378
+
379
+ .left {
380
+ margin:10px 10px 5px 0;
381
+ float:left;
382
+ }
383
+
384
+ .right {
385
+ margin:10px 0 5px 10px;
386
+ float:right;
387
+ }
388
+
389
+ .announce {
390
+ margin:10px 0 10px 0;
391
+ padding:10px 10px 5px 10px;
392
+ width:105px;
393
+ color:#505050;
394
+ background:#f4f4f4 url(menubg.gif) bottom left repeat-x;
395
+ border-top:1px solid #d8d8d8;
396
+ border-right:1px solid #d8d8d8;
397
+ border-bottom:1px solid #d8d8d8;
398
+ border-left:4px solid #cccccc;
399
+ line-height:1.3em;
400
+ }
401
+
402
+ .announce a {
403
+ font-weight:bold;
404
+ }
405
+
406
+ .announce p {
407
+ font-size:0.9em;
408
+ }
409
+
410
+ .announce h2 {
411
+ margin:0 0 10px 0;
412
+ padding:0;
413
+ }
414
+
415
+ #avmenu .announce {
416
+ width:125px;
417
+ }
418
+
419
+ .textright {
420
+ text-align:right;
421
+ margin:-10px 0 4px 0;
422
+ }
423
+
424
+ .center {
425
+ text-align:center;
426
+ }
427
+
428
+ .small {
429
+ font-size:0.8em;
430
+ }
431
+
432
+ .large {
433
+ font-size:1.3em;
434
+ }
435
+
436
+ .bold {
437
+ font-weight:bold;
438
+ }
439
+
440
+ .highlighted {
441
+ padding:3px;
442
+ background-color:#f0f0f0;
443
+ color:#303030;
444
+ border:1px solid #b0b0b0;
445
+ }
446
+
447
+ .hide {
448
+ display:none;
449
+ }
@@ -0,0 +1,86 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
6
+ <meta name="description" content="Baddest Ruby gem evar." />
7
+ <meta name="keywords" content="ruby, giles bowkett, batman, utility belt, gem, attack of the killer tomatoes" />
8
+ <meta name="author" content="Giles Bowkett / Original design: Andreas Viklund - http://andreasviklund.com/" />
9
+ <link rel="stylesheet" type="text/css" href="andreas00.css" media="screen,projection" />
10
+ <title>Flyrb: Authorship</title>
11
+ </head>
12
+
13
+ <body>
14
+ <div id="wrap">
15
+ <div id="header">
16
+ <h1><a href="http://utilitybelt.rubyforge.org">Flyrb</a></h1>
17
+ <p><strong>IRB tools, tricks, and techniques</strong></p>
18
+ </div>
19
+
20
+ <div id="avmenu">
21
+ <h2 class="hide">Site menu:</h2>
22
+ <ul>
23
+ <li><a href="index.html">Overview</a></li>
24
+ <li><a href="usage.html">Usage</a></li>
25
+ <li><a href="authorship.html">Authorship</a></li>
26
+ <li><a href="http://rubyforge.org/projects/utilitybelt/">RubyForge Project</a></li>
27
+ </ul>
28
+ </div>
29
+
30
+ <div id="contentwide">
31
+ <h2>Copyright And Authorship</h2>
32
+ <h3>COMMUNITY EFFORT</h3>
33
+
34
+ <p>The majority of this code was written by other people and compiled, nicked, nabbed, herded, gathered, copied, or pilfered by me (Giles Bowkett). Check the links in the copyright notice for more detail. Thanks also to Bob Hutchison, Avdi Grimm, Marcus Derencius, Markus Prinz, Ben Bleything, Reginald Braithwaite-Lee, and Robert Berger for bug fixes, new features, documentation, and bug reports.</p>
35
+
36
+ <h3>LICENSE</h3>
37
+
38
+ <pre>
39
+ (The MIT License)
40
+
41
+ Copyright (c) 2006-2007 <a href="http://gilesbowkett.blogspot.com/" title="Giles Bowkett">Giles Bowkett</a>
42
+ Portions Copyright (c) 2006-2007 <a href="http://blog.bleything.net/2007/7/30/announcing-shell-style-history-for-irb-the-fixed-edition" title="bleything.blog(:stuff) Announcing Shell-Style History for irb, the fixed edition!">Ben Bleything</a>
43
+ Portions Copyright (c) 2006-2007 <a href="http://weblog.raganwald.com/2007/10/stringtoproc.html" title="String#to_proc">Reginald Braithwaite-Lee</a>
44
+ Portions Copyright (c) 2006-2007 <a href="http://gilesbowkett.blogspot.com/2007/10/use-vi-or-any-text-editor-from-within.html" title="Giles Bowkett: Use vi (Or Any Text Editor) From Within irb">Gregory Brown</a>
45
+ Portions Copyright (c) 2006-2007 <a href="http://weblog.jamisbuck.org/2007/1/8/watching-activerecord-do-it-s-thing" title="the { buckblogs :here : Watching ActiveRecord Do Its Thing}">Jamis Buck</a>
46
+ Portions Copyright (c) 2006-2007 <a href="http://clarkware.com/cgi/blosxom/2007/09/03" title="Mike Clark's Weblog">Mike Clark</a>
47
+ Portions Copyright (c) 2006-2007 <a href="http://blog.jayfields.com/2007/08/ruby-adding-not-method-for-readability.html" title="Jay Fields Thoughts: Ruby: Adding a "not" method for readability">Jay Fields</a>
48
+ Portions Copyright (c) 2005 <a href="http://api.rubyonrails.org/classes/Symbol.html" title="Class: Symbol">David Heinemeier Hansson</a>
49
+ Portions Copyright (c) 2006-2007 <a href="http://groups.google.com/group/ruby-talk-google/browse_thread/thread/9c1febbe05513dc0" title="shutting irb up - ruby-talk-google | Google Groups">Ara T. Howard</a>
50
+ Portions Copyright (c) 2006-2007 <a href="http://gilesbowkett.blogspot.com/2006/12/smalltalk-cleverness-in-rails-revisited.html" title="Giles Bowkett: Smalltalk Cleverness in Rails, Revisited">Pat Maddox</a>
51
+ Portions Copyright (c) 2006-2007 <a href="http://amazon.rubyforge.org/" title="AWS::S3 - Ruby Library for Amazon Simple Storage Service (S3)">Marcel Molina, Jr.</a>
52
+ Portions Copyright (c) 2006-2007 <a href="http://groups.google.com/group/ruby-talk-google/browse_thread/thread/9c1febbe05513dc0" title="shutting irb up - ruby-talk-google | Google Groups">Rick DeNatale</a>
53
+ Portions Copyright (c) 2006-2007 <a href="http://project.ioni.st/post/1334" title="Projectionist: A tumblelog">Projectionist</a> (Marcel Molina? Chad Fowler?)
54
+ Portions Copyright (c) 2006-2007 <a href="http://aspn.activestate.com/ASPN/Mail/Message/ruby-talk/3573982" title="Re: "with" statement :: ASPN Mail Archive :: ruby-talk">Dan Yoder</a>
55
+
56
+ Permission is hereby granted, free of charge, to any person obtaining
57
+ a copy of this software and associated documentation files (the
58
+ 'Software'), to deal in the Software without restriction, including
59
+ without limitation the rights to use, copy, modify, merge, publish,
60
+ distribute, sublicense, and/or sell copies of the Software, and to
61
+ permit persons to whom the Software is furnished to do so, subject to
62
+ the following conditions:
63
+
64
+ The above copyright notice and this permission notice shall be
65
+ included in all copies or substantial portions of the Software.
66
+
67
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
68
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
69
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
70
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
71
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
72
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
73
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</pre>
74
+
75
+ <h3>THE BATMAN GRAPHIC</h3>
76
+
77
+ <p>Is that cool or what? I have no idea where I found it. (If you're the creator, a thousand apologies. I just hella dig it.)</p>
78
+
79
+ </div>
80
+
81
+ <div id="footer">
82
+ <p>Copyright &copy; 2007 Giles Bowkett | Design by <a href="http://andreasviklund.com">Andreas Viklund</a>.</p>
83
+ </div>
84
+ </div>
85
+ </body>
86
+ </html>
data/html/bg.gif ADDED
Binary file
data/html/front.jpg ADDED
Binary file
data/html/index.html ADDED
@@ -0,0 +1,81 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
6
+ <meta name="description" content="Baddest Ruby gem evar." />
7
+ <meta name="keywords" content="ruby, giles bowkett, batman, utility belt, gem, attack of the killer tomatoes" />
8
+ <meta name="author" content="Giles Bowkett / Original design: Andreas Viklund - http://andreasviklund.com/" />
9
+ <link rel="stylesheet" type="text/css" href="andreas00.css" media="screen,projection" />
10
+ <title>Flyrb</title>
11
+ </head>
12
+
13
+ <body>
14
+ <div id="wrap">
15
+ <div id="header">
16
+ <h1><a href="http://utilitybelt.rubyforge.org">Flyrb</a></h1>
17
+ <p><strong>IRB tools, tricks, and techniques</strong></p>
18
+ </div>
19
+
20
+ <div id="avmenu">
21
+ <h2 class="hide">Site menu:</h2>
22
+ <ul>
23
+ <li><a href="index.html">Overview</a></li>
24
+ <li><a href="usage.html">Usage</a></li>
25
+ <li><a href="authorship.html">Authorship</a></li>
26
+ <li><a href="http://rubyforge.org/projects/utilitybelt/">RubyForge Project</a></li>
27
+ </ul>
28
+
29
+ </div>
30
+
31
+ <div id="contentwide">
32
+ <h2>Installation And Overview</h2>
33
+
34
+ <p>Flyrb is a grab-bag of tricks, tools, techniques, trifles, and toys for IRB, including convenience methods, language patches, and useful extensions. It also includes a couple command-line widgets. Its primary inspirations were <a href="http://pablotron.org/software/wirble/" title="Pablotron: Wirble">an awesome gem called Wirble</a> and <a href="http://slash7.com/articles/2006/12/21/secrets-of-the-rails-console-ninjas" title="Slash7 with Amy Hoy - Secrets of the Rails Console Ninjas">a blog post by Amy Hoy called "Secrets Of The Rails Console Ninjas"</a>.</p>
35
+
36
+ <h3>INSTALL</h3>
37
+
38
+ <p>sudo gem install flyrb</p>
39
+
40
+ <h3>FEATURES</h3>
41
+
42
+ <ul>
43
+ <li>Interactively edit IRB code in your preferred text editor</li>
44
+ <li>Read from and write to OS X clipboard</li>
45
+ <li>Post your code to Pastie with one command (OS X only)</li>
46
+ <li>Kick-ass Unix-style history buffer</li>
47
+ <li>Write command history to file or vi</li>
48
+ <li>Grep classes and methods for strings</li>
49
+ <li>Verbosity controls for regular IRB and Rails console</li>
50
+ <li>Finder shortcuts for Rails console</li>
51
+ <li>Upload shortcut for Amazon S3</li>
52
+ <li>Command-line Amazon S3 upload script</li>
53
+ <li>Command-line Google shortcut (OS X only)</li>
54
+ <li>Auto-indentation</li>
55
+ <li>_ special variable (like Unix shell var !!)</li>
56
+ <li>Extremely basic themes for Wirble syntax coloring</li>
57
+ <li>Pascal/JavaScript-style "with" statement</li>
58
+ <li>String#to_proc</li>
59
+ <li>Add and subtract Hashes with + and -</li>
60
+ <li>Grammatically-correct is_an? method - no more "is_a? Array" statements</li>
61
+ <li>One-character exit command</li>
62
+ </ul>
63
+
64
+ <h3>REQUIREMENTS</h3>
65
+
66
+ <ul>
67
+ <li>ReadLine</li>
68
+ <li>Wirble</li>
69
+ <li>Amazon S3</li>
70
+ <li>Platform</li>
71
+ <li>Some features require OS X</li>
72
+ </ul>
73
+
74
+ </div>
75
+
76
+ <div id="footer">
77
+ <p>Copyright &copy; 2007 Giles Bowkett | Design by <a href="http://andreasviklund.com">Andreas Viklund</a>.</p>
78
+ </div>
79
+ </div>
80
+ </body>
81
+ </html>
data/html/menubg.gif ADDED
Binary file
data/html/menubg2.gif ADDED
Binary file
data/html/test.jpg ADDED
Binary file