changeset 4699:cd658f881a6a

<elliott> ` rm bin/{node,ello}
author HackBot
date Sun, 27 Jul 2014 14:43:27 +0000
parents 048bd6bcbb7d
children e626cb545dd7
files bin/ello bin/node
diffstat 2 files changed, 0 insertions(+), 31 deletions(-) [+]
line wrap: on
line diff
--- a/bin/ello	Sat Jul 26 02:46:37 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,31 +0,0 @@
-#!/usr/bin/env node
-// Generated by CoffeeScript 1.6.2
-(function() {
-  var consonant_then_o, ell_manglable, ends_with_consonant, ends_with_consonant_then_vowel, name, starts_with_o;
-
-  name = process.argv[2];
-
-  if (!(name != null ? name.length : void 0)) {
-    console.log('Usage: ello <name>');
-    process.exit();
-  }
-
-  consonant_then_o = /(.*)([bcdfghjklmnpqrstvwxz])([o0].*)/i;
-
-  ends_with_consonant = /[bcdfghjklmnpqrstvwxz]$/i;
-
-  ends_with_consonant_then_vowel = /(.*[bcdfghjklmnpqrstvwxz])[aeiouy]+$/i;
-
-  starts_with_o = /[o0]/i;
-
-  ell_manglable = /(.*)(el+[aeiouy]+)(.*)/i;
-
-  console.log(consonant_then_o.test(name) ? name.replace(consonant_then_o, function(match, before, consonant, rest) {
-    return before + consonant + 'ell' + rest;
-  }) : ell_manglable.test(name) ? name.replace(ell_manglable, function(match, before, middle, rest) {
-    return before + 'ello' + rest;
-  }) : starts_with_o.test(name) ? 'hell' + name : ends_with_consonant_then_vowel.test(name) ? name.replace(ends_with_consonant_then_vowel, function(match, before) {
-    return before + 'ello';
-  }) : ends_with_consonant.test(name) ? name + 'ello' : "Hello, " + name + "!");
-
-}).call(this);
\ No newline at end of file
Binary file bin/node has changed