2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# File 'lib/booty.rb', line 2
def self.call(input)
map = {
'is' => 'be', 'big' => 'vast',
'friend' => 'matey', 'my' => 'me',
'say' => 'cry', 'small' => 'puny',
'cheat' => 'hornswaggle', 'everyone' => 'all hands',
'isn\'t' => 'be not', 'the' => 'tha',
'are' => 'be', 'to' => 't\'',
'of' => 'o\'', 'am' => 'be',
'you' => 'ya', 'yes' => 'aye',
'kill' => 'keelhaul', 'you' => 'ye',
'no' => 'nay', 'never' => 'nary',
'i\'m' => 'i be', 'you\'re' => 'you be',
'girl' => 'lass', 'woman' => 'wench',
'hello' => 'ahoy', 'beer' => 'grog',
'quickly' => 'smartly', 'do' => 'd\'',
'your' => 'yer', 'for' => 'fer',
'go' => 'sail', 'we' => 'our jolly crew',
'and' => 'n\'', 'good' => 'jolly good',
'yeah' => 'aye', 'that\'s' => 'that be',
'over' => 'o\'er', 'yah' => 'aye',
'hand' => 'hook', 'leg' => 'peg',
'eye' => 'eye-patch', 'flag' => 'jolly roger',
'dick' => 'plank', 'penis' => 'plank',
'fuck' => 'curse', 'shit' => 'shite',
'treasure' => 'booty', 'butt' => 'booty',
'really' => 'verily', 'leg' => 'peg',
'them' => '\'em', 'house' => 'shanty',
'home' => 'shanty', 'quickly' => 'smartly',
'posted' => 'tacked to the yardarm',
'address' => 'port o\' call', 'work' => 'brig',
'invalid' => 'sunk', 'sorry' => 'yarr',
'hey' => 'ahoy', 'boss' => 'admiral',
'manager' => 'admiral', 'captain' => 'Cap\'n',
'friends' => 'shipmates', 'people' => 'scallywags',
'earlier' => 'afore', 'women' => 'wenches',
'wife' => 'lady', 'girls' => 'lassies',
'interstate'=> 'high seas', 'highway' => 'ocean',
'car' => 'boat', 'truck' => 'schooner',
'suv' => 'ship', 'airplane' => 'flying machine',
'machine' => 'contraption', 'driving' => 'sailing',
}
fill = [
'avast', 'splice the mainbrace',
'shiver me timbers', 'ahoy',
'arrrrr', 'arrgh',
'yo ho ho', 'yarrr',
'eh', 'arrrghhh',
'where\'s me rum?', 'walk tha plank',
'arrr', 'ahoy matey',
'surrender yer booty', 'prepare to be boarded',
'hoist the mizzen', 'blow me down',
'swap the poop deck', 'ye landlubber',
'bring \'er alongside', 'hang \'im from the yardarm',
'blow the man down', 'let go and haul',
'heave to', 'take no prisoners',
'belay that', 'me bucko',
'lock \'im in irons', 'and a bottle \'o rum',
'and donae spare the whip', 'pass the grog',
'and swab the deck', 'fire the cannon',
'sleep with t\' fishes',
]
punct = ['!', '.', '!!']
words = Array.new()
input = input.split(/ /)
input.each do|a|
words.push(a)
end
words.each_index {|w|
if map.has_key?(words[w])
words[w] = map[words[w]]
end
}
sentence = words.join(" ")
if rand(5) + 1 == 1
sentence = fill[rand(fill.length)] << punct[rand(punct.length)] << " #{sentence}"
elsif rand(5) + 1 == 1
sentence = "#{sentence} " << fill[rand(fill.length)] << punct[rand(punct.length)]
end
return sentence
end
|