hangry 0.0.12 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. data/README.md +1 -0
  2. data/lib/hangry.rb +1 -0
  3. data/lib/hangry/data_vocabulary_recipe_parser.rb +4 -0
  4. data/lib/hangry/hrecipe_parser.rb +20 -6
  5. data/lib/hangry/recipe_parser.rb +3 -1
  6. data/lib/hangry/schema_org_recipe_parser.rb +4 -0
  7. data/lib/hangry/version.rb +1 -1
  8. data/spec/fixtures/{bbc.co.uk.html → hrecipe/bbc.co.uk.html} +0 -0
  9. data/spec/fixtures/{bigoven.html → hrecipe/bigoven.html} +0 -0
  10. data/spec/fixtures/hrecipe/campbellskitchen.com.html +1970 -0
  11. data/spec/fixtures/{cooking.com.html → hrecipe/cooking.com.html} +0 -0
  12. data/spec/fixtures/{cooks.com.html → hrecipe/cooks.com.html} +0 -0
  13. data/spec/fixtures/hrecipe/drinksmixer.com.html +604 -0
  14. data/spec/fixtures/{epicurious.html → hrecipe/epicurious.html} +0 -0
  15. data/spec/fixtures/hrecipe/grouprecipes.com.html +982 -0
  16. data/spec/fixtures/hrecipe/homecooking.about.com.html +326 -0
  17. data/spec/fixtures/hrecipe/jamieoliver.com.html +868 -0
  18. data/spec/fixtures/hrecipe/mrfood.com.html +4642 -0
  19. data/spec/fixtures/hrecipe/southernfood.about.com.html +328 -0
  20. data/spec/fixtures/{tasteofhome.com.html → hrecipe/tasteofhome.com.html} +0 -0
  21. data/spec/fixtures/{allrecipes.html → schema_org/allrecipes.html} +0 -0
  22. data/spec/fixtures/{betty_crocker.html → schema_org/betty_crocker.html} +0 -0
  23. data/spec/fixtures/{copykat.com.html → schema_org/copykat.com.html} +0 -0
  24. data/spec/fixtures/{chow.com.html → schema_org/data-vocabulary_org/chow.com.html} +0 -0
  25. data/spec/fixtures/{myrecipes.com.html → schema_org/data-vocabulary_org/myrecipes.com.html} +0 -0
  26. data/spec/fixtures/{saveur.com.html → schema_org/data-vocabulary_org/saveur.com.html} +0 -0
  27. data/spec/fixtures/{tarladalal.com.html → schema_org/data-vocabulary_org/tarladalal.com.html} +0 -0
  28. data/spec/fixtures/{taste.com.au.html → schema_org/data-vocabulary_org/taste.com.au.html} +0 -0
  29. data/spec/fixtures/{eatingwell.com.html → schema_org/eatingwell.com.html} +0 -0
  30. data/spec/fixtures/{food.com.html → schema_org/food.com.html} +0 -0
  31. data/spec/fixtures/{food_network_schema_org.html → schema_org/food_network_schema_org.html} +0 -0
  32. data/spec/fixtures/{food_network_with_blank_ingredients.html → schema_org/food_network_with_blank_ingredients.html} +0 -0
  33. data/spec/fixtures/{foodandwine.com.html → schema_org/foodandwine.com.html} +0 -0
  34. data/spec/fixtures/{heart.org.html → schema_org/heart.org.html} +0 -0
  35. data/spec/fixtures/{pillsbury.com.html → schema_org/pillsbury.com.html} +0 -0
  36. data/spec/hangry_spec.rb +1 -0
  37. data/spec/real_examples/{bbc_co_uk_spec.rb → hrecipe/bbc_co_uk_spec.rb} +2 -1
  38. data/spec/real_examples/{big_oven_spec.rb → hrecipe/big_oven_spec.rb} +2 -1
  39. data/spec/real_examples/hrecipe/campbells_kitchen_com_spec.rb +63 -0
  40. data/spec/real_examples/{cooking_com_spec.rb → hrecipe/cooking_com_spec.rb} +3 -2
  41. data/spec/real_examples/{cooks_com_spec.rb → hrecipe/cooks_com_spec.rb} +2 -1
  42. data/spec/real_examples/hrecipe/drinks_mixer_com_spec.rb +57 -0
  43. data/spec/real_examples/{epicurious_spec.rb → hrecipe/epicurious_spec.rb} +2 -1
  44. data/spec/real_examples/hrecipe/group_recipes_com_spec.rb +65 -0
  45. data/spec/real_examples/hrecipe/home_cooking_food_com_spec.rb +79 -0
  46. data/spec/real_examples/hrecipe/jamie_oliver_com_spec.rb +61 -0
  47. data/spec/real_examples/hrecipe/mr_food_com_spec.rb +55 -0
  48. data/spec/real_examples/hrecipe/southern_food_about_com_spec.rb +64 -0
  49. data/spec/real_examples/{taste_of_home_spec.rb → hrecipe/taste_of_home_spec.rb} +4 -3
  50. data/spec/real_examples/{all_recipes_spec.rb → schema_org/all_recipes_spec.rb} +2 -1
  51. data/spec/real_examples/{betty_crocker_spec.rb → schema_org/betty_crocker_spec.rb} +2 -1
  52. data/spec/real_examples/{copykat_spec.rb → schema_org/copykat_spec.rb} +2 -1
  53. data/spec/real_examples/{chow_com_spec.rb → schema_org/data-vocabulary_org/chow_com_spec.rb} +2 -1
  54. data/spec/real_examples/{myrecipes_com_spec.rb → schema_org/data-vocabulary_org/myrecipes_com_spec.rb} +2 -1
  55. data/spec/real_examples/{saveur_com_spec.rb → schema_org/data-vocabulary_org/saveur_com_spec.rb} +2 -1
  56. data/spec/real_examples/{tarladalal_com_spec.rb → schema_org/data-vocabulary_org/tarladalal_com_spec.rb} +2 -1
  57. data/spec/real_examples/{taste_com_au_spec.rb → schema_org/data-vocabulary_org/taste_com_au_spec.rb} +2 -1
  58. data/spec/real_examples/{eating_well_spec.rb → schema_org/eating_well_spec.rb} +3 -2
  59. data/spec/real_examples/{food_and_wine_spec.rb → schema_org/food_and_wine_spec.rb} +2 -1
  60. data/spec/real_examples/{food_com_spec.rb → schema_org/food_com_spec.rb} +2 -1
  61. data/spec/real_examples/{food_network_spec.rb → schema_org/food_network_spec.rb} +4 -2
  62. data/spec/real_examples/{heart_org_spec.rb → schema_org/heart_org_spec.rb} +2 -1
  63. data/spec/real_examples/{pillsbury_spec.rb → schema_org/pillsbury_spec.rb} +2 -1
  64. metadata +124 -96
@@ -0,0 +1,604 @@
1
+ <!DOCTYPE HTML>
2
+ <html>
3
+ <head>
4
+ <title>Tom Collins recipe</title>
5
+ <meta content="tom collins, tom, collins, gin, lemon juice, superfine sugar, club soda, maraschino cherry, orange, drink recipe, drink, recipe, alcoholic drink recipe, cocktail recipe, cocktail, mixed drink, martini" name="keywords">
6
+ <meta content="A delicious recipe for Tom Collins, with gin, lemon juice, superfine sugar, club soda, maraschino cherry and orange. Also lists similar drink recipes." name="description">
7
+ <!-- BEGIN TRIGGER SCRIPT -->
8
+ <script language="JavaScript" type="text/javascript" src="http://cdn.triggertag.gorillanation.com/js/triggertag.js"></script>
9
+ <script language="JavaScript" type="text/javascript">getTrigger('7064');</script>
10
+ <!-- END TRIGGER SCRIPT -->
11
+ <script type="text/javascript">var _sf_startpt=(new Date()).getTime()</script>
12
+ <script type='text/javascript' src='http://partner.googleadservices.com/gampad/google_service.js'></script>
13
+ <script type='text/javascript'>
14
+ GS_googleAddAdSenseService("ca-pub-1304704158939332");
15
+ GS_googleEnableAllServices();
16
+ </script>
17
+ <script type='text/javascript'>
18
+ GA_googleUseIframeRendering();
19
+ </script><script type="text/javascript">
20
+ if(document.location.protocol=='http:'){
21
+ var Tynt=Tynt||[];Tynt.push('d27gKKT4Wr3678adbi-bnq');Tynt.i={"st":true};
22
+ (function(){var s=document.createElement('script');s.async="async";s.type="text/javascript";s.src='http://tcr.tynt.com/ti.js';var h=document.getElementsByTagName('script')[0];h.parentNode.insertBefore(s,h);})();
23
+ }
24
+ </script><script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script> <script type="text/javascript">
25
+ (function() {
26
+ var useSSL = 'https:' == document.location.protocol,
27
+ src = (useSSL ? 'https:' : 'http:') + '//www.googletagservices.com/tag/js/gpt.js';
28
+ document.write('<scr' + 'ipt src="' + src + '"></scr' + 'ipt>');
29
+ })();
30
+ </script>
31
+ <script type='text/javascript'>
32
+ googletag.defineOutOfPageSlot("/8352/drinksmixer", "adtag-reskin").setTargeting("oop", "reskin").addService(googletag.pubads());
33
+ googletag.defineOutOfPageSlot("/8352/drinksmixer", "adtag-sliver").setTargeting("oop", "sliver").addService(googletag.pubads());
34
+ googletag.defineOutOfPageSlot("/8352/drinksmixer", "adtag-interstitial").setTargeting("oop", "interstitial").addService(googletag.pubads());
35
+ googletag.defineOutOfPageSlot("/8352/drinksmixer", "adtag-catfish").setTargeting("oop", "catfish").addService(googletag.pubads());
36
+ googletag.defineSlot("/8352/drinksmixer", [728,90], "adtag-728x90").addService(googletag.pubads());
37
+ googletag.defineSlot("/8352/drinksmixer", [[300,250],[300,600]], "adtag-300x250").addService(googletag.pubads());
38
+
39
+ googletag.pubads().setTargeting("site", "drinksmixer");
40
+ googletag.pubads().setTargeting("ct", "articles");
41
+
42
+ googletag.pubads().enableSingleRequest();
43
+ googletag.pubads().enableSyncRendering();
44
+
45
+ googletag.enableServices();
46
+ </script><script type="text/javascript" src="http://cdn.drinksmixer.com/js/main.js"></script>
47
+ <link rel="stylesheet" href="http://cdn.drinksmixer.com/style-up.css">
48
+ <meta property="og:image" content="http://www.drinksmixer.com/i/facebook.png" />
49
+ <meta property="og:type" content="drink" />
50
+ <meta property="fb:admins" content="100000399936875"/>
51
+ <meta property="fb:page_id" content="116452988388680" />
52
+ <meta name="google-site-verification" content="HaOOE2JHgYSOD40mbj3naMc2416Cqa-k_-nsIYvhbtM" />
53
+ </head>
54
+ <body>
55
+ <div class="wrapper">
56
+ <div class="co">
57
+ <div class="m1">
58
+ <div class="min">
59
+ <script type="text/javascript" src="/js/vtip.js"></script>
60
+ <div>
61
+ <div class="pm" style="margin-top:20px;"><a href="/cat/1/">Cocktails</a> > <a href="/cat/13/">Long drinks</a> > <a href="/cat/127/">by base-ingredient</a> > <a href="/cat/135/">gin-based</a></div>
62
+ </div>
63
+ <div style="padding-left:20px;" class="hrecipe">
64
+ <span class="item">
65
+ <h1 class="fn recipe_title">Tom Collins recipe</h1>
66
+ </span>
67
+ <div style="float:right;">
68
+ <div class="review hreview-aggregate recipeStats">
69
+ <div class="ratingsBox rating">
70
+ rating
71
+ <div>
72
+ <div style="font-size:36px; font-weight: bold;">9.4</div>
73
+ <div class="average" style="display: none">4.7</div>
74
+ <span content="10"></span><span class="count">766</span> votes
75
+ <div>
76
+ <form action="/recipes/r2s438/" method="post">
77
+ <input type="hidden" name="RecipeID" value="r2s438">
78
+ <select name="RateValue" onchange="this.form.submit();">
79
+ <option value="">Vote!
80
+ <option value="10">10
81
+ <option value="9">9
82
+ <option value="8">8
83
+ <option value="7">7
84
+ <option value="6">6
85
+ <option value="5">5
86
+ <option value="4">4
87
+ <option value="3">3
88
+ <option value="2">2
89
+ <option value="1">1
90
+ </select>
91
+ </form>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ </div>
96
+ <div class="likeBorder" >
97
+ <div id="fb-root"></div>
98
+ <script>
99
+ window.fbAsyncInit = function() {
100
+ FB.init({appId: '119039188124807', status: true, cookie: true,
101
+ xfbml: true});
102
+ };
103
+ (function() {
104
+ var e = document.createElement('script'); e.async = true;
105
+ e.src = document.location.protocol +
106
+ '//connect.facebook.net/en_US/all.js';
107
+ document.getElementById('fb-root').appendChild(e);
108
+ }());
109
+ </script>
110
+ <div style="margin: 5px 15px;">
111
+ <fb:like layout="box_count" show_faces="false" width="55" action="like" colorscheme="light"></fb:like>
112
+ </div>
113
+ <div style="margin: 5px 12px">
114
+ <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-via="drinksmixer">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
115
+ </div>
116
+ <script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script><script type="text/javascript">stLight.options({publisher:'fbed4499-b5ae-46e1-9fc8-151e6966fccb'});</script>
117
+ <div class="st_sharethis_button" style="padding-bottom: 1px;" displayText="Share"></div>
118
+ <div class="qrcode">
119
+ <img src="http://chart.apis.google.com/chart?chf=bg,s,E4E4E4&chs=80x80&cht=qr&chld=|0&chl=http://www.drinksmixer.com/drink2438.html?utm_source=qr&utm_campaign=qr&&utm_medium=qr" width="70" height="70" alt="QR" /><br />
120
+ Scan me to take me with you
121
+ <div id="tooltip_faq"><img src="../../i/question.png" alt="What is this?" class="vtip" title="Scan this QR code with your phone to get the mobile version of this recipe right into your hands. You might need some free software, but it's really easy to install and use! On Android, we recommend &ldquo;Barcode Scanner&ldquo; from the Google Market. On iPhone, we recommend &ldquo;Red Laser&ldquo; from the App Store." /></div>
122
+ </div>
123
+ </div>
124
+ <div>
125
+ <div class="recipeStats" style="background: #eee; color: #000;">
126
+ <div>serve in</div>
127
+ <div><a href="/glasses/6/"><img src="http://cdn.drinksmixer.com/i/g/6.gif" itemprop="photo" border="0" alt="Collins Glass" title="Collins Glass" /></a></div>
128
+ <div style="margin-bottom:10px;"><a href="/glasses/6/"></a></div>
129
+ <div>options</div>
130
+ <div>
131
+ <a href="/print/2438/"><img src="http://cdn.drinksmixer.com/i/print-this-drink-recipe-dt.png" border="0" alt="print this drink recipe" title="print this drink recipe" /></a>
132
+ <a href="/dusers/handbook/index.php?id=2438&d=1"><img src="http://cdn.drinksmixer.com/i/save-this-drink-recipe-dt.png" border="0" alt="save this drink recipe" title="save this drink recipe" /></a>
133
+ <a href="#comments-form"><img src="http://cdn.drinksmixer.com/i/comment-on-this-drink-recipe-dt.png" border="0" alt="comment on this drink recipe" title="comment on this drink recipe" /></a>
134
+ </div>
135
+ </div>
136
+ </div>
137
+ </div>
138
+ <script type="text/javascript">ScaleRecipe('2438',1);</script>
139
+ <div class="recipe_data">
140
+ <div class="ingredients"><span class="ingredient"><span class="amount">2 oz</span> <span class="name"><a href="/desc22.html">gin</a></span></span><br><span class="ingredient"><span class="amount">1 oz</span> <span class="name"><a href="/desc70.html">lemon juice</a></span></span><br><span class="ingredient"><span class="amount">1 tsp</span> <span class="name"><a href="/desc1152.html">superfine sugar</a></span></span><br><span class="ingredient"><span class="amount">3 oz</span> <span class="name"><a href="/desc74.html">club soda</a></span></span><br><span class="ingredient"><span class="amount">1 </span> <span class="name"><a href="/desc300.html">maraschino cherry</a></span></span><br><span class="ingredient"><span class="amount">1 slice</span> <span class="name"><a href="/desc97.html">orange</a></span></span><br></div>
141
+ </div>
142
+ <br>
143
+ <div class="RecipeDirections instructions">In a shaker half-filled with ice cubes, combine the gin, lemon juice, and sugar. Shake well. Strain into a collins glass almost filled with ice cubes. Add the club soda. Stir and garnish with the cherry and the orange slice.</div>
144
+ <div></div>
145
+ <br style="clear:both;" /><br />
146
+ <fb:like-box profile_id="116452988388680" width="513" connections="9" height ="182" stream="false" header="false"></fb:like-box>
147
+ <br /><br />
148
+ <div>
149
+ <fb:comments width="513" id="comments-form"></fb:comments>
150
+ <div style="margin-top:10px;"><span style="font-size:20px; color:#aaaaaa;">More comments</span></div>
151
+ <div class="c2">
152
+ <b>Tom Collins</b>
153
+ <p>posted by jobonster @ 03:54PM, 5/12/06</p>
154
+ <div>Good recipe, however, a bit too bitter.... something needs to be adjusted.</div>
155
+ </div>
156
+ <div class="c">
157
+ <b>Dinnybit</b>
158
+ <p>posted by dinnybit @ 07:01PM, 5/24/06</p>
159
+ <div>Makes a great drink, just added a little more sugar. Very refreshing for a summer cocktail.</div>
160
+ </div>
161
+ <div class="c2">
162
+ <b>Bitter</b>
163
+ <p>posted by moe @ 09:39PM, 5/28/06</p>
164
+ <div>Is missing grenadine 1 oz.</div>
165
+ </div>
166
+ <div class="c">
167
+ <b>Syrup, not sugar</b>
168
+ <p>posted by norwegian @ 07:33AM, 5/31/06</p>
169
+ <div>Um, we actually make it a bit different in Norway. We use something that we call "gommesirup" (sorry i caní‚´t find an english term for it, but it is not sirup because it is thinner). It is an alternative to very fine sugar, and can be used if you do not have superfine sugar at the moment (however you actually have to make it...).<br />
170
+ <br />
171
+ This is how to make it:<br />
172
+ 2 parts regular sugar, 1 part water. Warm up till the sugar is melted. Cool down and keep refrigated in a bottle.<br />
173
+ <br />
174
+ Of course since it is 2 part sugar, and 1 part water, i guess that you have to use 1/3 more in this drink.<br />
175
+ <br />
176
+ The pro side of using this liquid is that it mixes better. The con side is that you have to make it first. Make sure that you make enough for several drinks and keep refrigated for later use.
177
+ </div>
178
+ </div>
179
+ <div class="c2">
180
+ <b>Ask a Pro</b>
181
+ <p>posted by Greg Wible @ 10:53PM, 6/10/06</p>
182
+ <div>"gommesirup" is called simple syrup in the U.S. Bartenders use either "collins mix" from the Bar Boy or sweet & sour and one ounce of gin.</div>
183
+ </div>
184
+ <div class="c">
185
+ <b>Fire</b>
186
+ <p>posted by trety4y @ 12:44PM, 7/21/06</p>
187
+ <div>This drink fuels the fire in life.</div>
188
+ </div>
189
+ <div class="c2">
190
+ <b>Excellent</b>
191
+ <p>posted by Ray @ 04:18PM, 8/04/06</p>
192
+ <div>Very nice drink when I made it, maybe even one of my favorites. Not too strong and not too weak either. </div>
193
+ </div>
194
+ <div class="c">
195
+ <b>Need help</b>
196
+ <p>posted by Jessica in Charlotte, NC @ 08:49PM, 9/10/06</p>
197
+ <div>I love Tom Collins. It's always my drink of choice at any restaurant or bar. However, I tried the recipe myself from this site and it doesn't taste quite the same. Not near as good. Not quite sure what it is. How can I get the Tom Collins I order from the restaurant. That's the taste I want. When I make my own, it just tastes like lemon juice and gin. </div>
198
+ </div>
199
+ <div class="c2">
200
+ <b>Gin Fizz</b>
201
+ <p>posted by Gin Fizz @ 01:13PM, 9/15/06</p>
202
+ <div>In aus the way I have been taught is that this is the right recipe but when shaken it is called a gin fizz and when stirred it is a tom collins.</div>
203
+ </div>
204
+ <div class="c">
205
+ <b>Name</b>
206
+ <p>posted by mike @ 01:02PM, 10/01/06</p>
207
+ <div>In the UK it's just called its french name "gomme".</div>
208
+ </div>
209
+ <div class="c2">
210
+ <b>An addition...</b>
211
+ <p>posted by CraftBartender @ 02:02PM, 10/04/06</p>
212
+ <div>Hey Greg, <br />
213
+ <br />
214
+ How can you go and suggest using collins mix or sweet and sour? You should specificy... "bad bartenders use collins mix or sweet and sour." Good bartenders always use fresh ingredients.
215
+ </div>
216
+ </div>
217
+ <div class="c">
218
+ <b>Yum yum</b>
219
+ <p>posted by Barlot @ 09:23PM, 10/23/06</p>
220
+ <div>Ahhhhh!!!...so much better than water for a thirst quencher! I use 7Up instead of club soda and ooh YUMMY!!!</div>
221
+ </div>
222
+ <div class="c2">
223
+ <b>Ummmm - not so great</b>
224
+ <p>posted by JustBastet @ 05:40PM, 10/29/06</p>
225
+ <div>Maybe it's just not my thing. Guess I like my martini's but this drink didn't do much for me.</div>
226
+ </div>
227
+ <div class="c">
228
+ <b>re: syrup not sugar</b>
229
+ <p>posted by philboi @ 09:31PM, 11/29/06</p>
230
+ <div>Yeah, we use gomme syrup too in uk. We order it in premade though ;)</div>
231
+ </div>
232
+ <div class="c2">
233
+ <b>Grenadine</b>
234
+ <p>posted by Geoff @ 11:31AM, 12/12/06</p>
235
+ <div>I believe grenadine is called "New York Style" if I'm not mistaken, but is not used in a traditional Tom Collins.</div>
236
+ </div>
237
+ <div class="c">
238
+ <b>Grenadine</b>
239
+ <p>posted by Tippy @ 03:41PM, 12/17/06</p>
240
+ <div>I second the grenadine. I use just under 1 oz.</div>
241
+ </div>
242
+ <div class="c2">
243
+ <b>So delicious</b>
244
+ <p>posted by Yummy @ 04:17PM, 1/01/07</p>
245
+ <div>I like it alot its soooooo delicious.</div>
246
+ </div>
247
+ <div class="c">
248
+ <b>Forget the lemon juice</b>
249
+ <p>posted by Brendan @ 12:29PM, 1/21/07</p>
250
+ <div>I'm giving it a 10/10 because, well, it's a Tom Collins, and I'm a Tom Collins kind of guy! Try replacing the lemon juice with lime juice, that's the difference. A true Collins will use lime juice, not lemon.</div>
251
+ </div>
252
+ <div class="c2">
253
+ <b>TOMY C</b>
254
+ <p>posted by renox @ 04:59PM, 1/25/07</p>
255
+ <div>Favorite drink for the SUMMER.</div>
256
+ </div>
257
+ <div class="c">
258
+ <b>Tom collins with lime?</b>
259
+ <p>posted by missed the boat @ 01:21AM, 1/28/07</p>
260
+ <div>Here in the great white north (canada) tom collins usually are made with lime insted of lemon. A mix of fresh lime juice and simple syrup to make a simple bar lime mix, plus gin (bombay!!), plus soda water = THE tom collins</div>
261
+ </div>
262
+ <div class="c2">
263
+ <b>Tommy girl</b>
264
+ <p>posted by liss @ 10:01AM, 3/03/07</p>
265
+ <div>Tom Collins is always fab, if and only if, made properly. Its also a lady's drink. Remember ladies, the sweeter-the better! (Wink) I appreciate the grenadine suggestion! I'm a maraschino girl but either will do! Applaudes to the 7up idea!</div>
266
+ </div>
267
+ <div class="c">
268
+ <b>TOMY C</b>
269
+ <p>posted by renox @ 07:05PM, 3/07/07</p>
270
+ <div>This drink is my life.</div>
271
+ </div>
272
+ <div class="c2">
273
+ <b>Tom Collins</b>
274
+ <p>posted by George @ 09:12PM, 3/28/07</p>
275
+ <div>Perfect drink for lazy hot summer day. Lay down on a beach chair under the sun<br />
276
+ wear your sun glasses. Watch the nice chicks pass in front of you and instead of lemon use lime juice, powder sugar and mineral water, mix, drink and relax......ahhhhh!!!!<br />
277
+ <br />
278
+ That's life.......
279
+ </div>
280
+ </div>
281
+ <div class="c">
282
+ <b>A great summer beverage.</b>
283
+ <p>posted by Dan @ 02:45PM, 5/05/07</p>
284
+ <div>I have long loved the Tom Collins and it's good ol' buddy the Gin & Tonic.<br />
285
+ <br />
286
+ Here's how I make mine...<br />
287
+ <br />
288
+ 2oz Gin<br />
289
+ 1oz Lemon Juice (Freshly squeezed, baby)<br />
290
+ .5oz Simple Syrup<br />
291
+ Seltzer<br />
292
+ <br />
293
+ Combine gin, lemon juice and simple syrup in a shaker, shake, and strain into a collins glass filled with ice. Top with seltzer and briefly stir. Garnish with maraschino cherry/orange 'flag.'
294
+ </div>
295
+ </div>
296
+ <div class="c2">
297
+ <b>Tom Collins.</b>
298
+ <p>posted by Roddy,two @ 07:48PM, 5/16/07</p>
299
+ <div>I drank this when I was 17. Moved South. All these people knew was bourbon. Now, 45 years later, I am trying to find the Tom Collins of my youth. The closest that I have come to is Mike's Hard Lemonade. I remember Gin, lemon and Lime. Of course, the sugar is always powdered (confectioner's) sugar. No need to make a simple syrup. </div>
300
+ </div>
301
+ <div class="c">
302
+ <b>TOM COLLINS THATS ME!!!</b>
303
+ <p>posted by The one The only TOM COLLINS! @ 09:55AM, 6/11/07</p>
304
+ <div>I have yet to try a Tom Collins and my real name is "Tom collins" No middle names, and its jus tom :D<br />
305
+ <br />
306
+ I did have a litre of gin but didnt think to make them<br />
307
+ <br />
308
+ Suppose i am bit of a binger!
309
+ </div>
310
+ </div>
311
+ <div class="c2">
312
+ <b>Annie50</b>
313
+ <p>posted by Annie 50 @ 07:10PM, 6/24/07</p>
314
+ <div>Tried it today and had to have 2, could have gone for more but no fun drinking alone, I also used 7 up as ddin't have club soda on hand. Yummy! I sat on my patio and looked at the lake and felt like a million bucks.</div>
315
+ </div>
316
+ <div class="c">
317
+ <b>I like yours better</b>
318
+ <p>posted by WIlliam Rockford @ 07:16PM, 7/10/07</p>
319
+ <div>Most people above appear to like it sweeter. I prefer your recipe over the typical more sweet Collins with syrup. I hadn't had one in awhile. It is very refreshing, an excellent beverage.</div>
320
+ </div>
321
+ <div class="c2">
322
+ <b>No way</b>
323
+ <p>posted by Randeman @ 03:53PM, 7/12/07</p>
324
+ <div>No grenadine! Never, ever, EVER!</div>
325
+ </div>
326
+ <div class="c">
327
+ <b>Alot of Tom's</b>
328
+ <p>posted by Tom (not collins) @ 01:43PM, 7/17/07</p>
329
+ <div>When you have 1.75 Liters of Bombay Sapphire, you're bound to drink more Tom Collins and Gin and Tonics than you ought to. These are the most perfect drinks known to man!</div>
330
+ </div>
331
+ <div class="c2">
332
+ <b>Bombay Sapphire and Simple Syrup</b>
333
+ <p>posted by Justin @ 01:51PM, 7/21/07</p>
334
+ <div>Tom Collins is a great summer afternoon drink. Probably the most refreshing drink I know. I strongly disagree with the "lady's drink" comment. Gin is the drinker's drink and anything made with it is a man's drink in my opinion. <br />
335
+ <br />
336
+ To make the perfect Tom Collins, I use simple syrup instead of confectioner/superfine sugar. Very easy to make--2 pts sugar/1 pt boiling water and will store indefinitely in your fridge. I also recommend Bombay Sapphire gin. I use lemon juice although lime works well too. This is a drink where the ice really matters; probably the smaller cubes the better. (The smaller cubes provide greater surface area to cool the drink and keep the soda water fizzy.) I also recommend the orange/maraschino cherry garnish.
337
+ </div>
338
+ </div>
339
+ <div class="c">
340
+ <b>Party Tonight</b>
341
+ <p>posted by New York Babe @ 06:36AM, 8/02/07</p>
342
+ <div>I just Googled "Tom Collins" because I'm having a party tonight and wanted something special to offer my guests on this ( what will be a ) hot summer night - little did I know there was a strong following of TC fans out there in the world. I first enjoyed a TC in Florida overlooking the ocean. Someone made it for me and it was lucious! Can't wait for tonight! You're all invited!</div>
343
+ </div>
344
+ <div class="c2">
345
+ <b>Its a great drink....girls love it</b>
346
+ <p>posted by David @ 06:03PM, 9/22/07</p>
347
+ <div>That bitterness is easily fixed with 1 Oz of grenadine.</div>
348
+ </div>
349
+ <div class="c">
350
+ <b>7up</b>
351
+ <p>posted by bestdrink in the world @ 01:52AM, 11/04/07</p>
352
+ <div>I asked the bartender at a wedding dance how he makes it and he said that they use 7 up or sprite. It actually has no bitter taste to it i think, when you do it this way. Had about 8 to 10 of those got myself completely trashed from it.</div>
353
+ </div>
354
+ <div class="c2">
355
+ <b>tom collins</b>
356
+ <p>posted by sirlance @ 08:45PM, 11/04/07</p>
357
+ <div>1 small bottle 7up<br />
358
+ 1 oz lemon juice<br />
359
+ 2 oz gin<br />
360
+ 2 1/2 tsp superfine sugar<br />
361
+ 1 wedge lemon<br />
362
+ 2 maraschino cherrries<br />
363
+ <br />
364
+ Shake the crap out of sugar, gin and lemon juice. In large glass filled half with ice add crap you just shook add 7 up stir till bubbles are large and slimy looking throw on lemon wedge and cherries...voila chix love this drink
365
+ </div>
366
+ </div>
367
+ <div class="c">
368
+ <b>Shake the gin?</b>
369
+ <p>posted by Natho @ 09:21PM, 11/13/07</p>
370
+ <div>You shouldn't really be shaking gin.</div>
371
+ </div>
372
+ <div class="c2">
373
+ <b>Billionaires drink it</b>
374
+ <p>posted by Xander Crews @ 01:41AM, 1/04/08</p>
375
+ <div>And you should too! Definitely agree with the grenadine and citrus-pop ideas, though not at the same time - experiment and find what you like</div>
376
+ </div>
377
+ <div class="c">
378
+ <b>#1 Sizzurp</b>
379
+ <p>posted by Mace @ 09:59PM, 1/31/08</p>
380
+ <div>If you take the time to make the drink rite "no funkey over sweet syrups" its a great drink. Ill slap a bartender who trys to cheat this dank recipe with mother #$@%in syrup!</div>
381
+ </div>
382
+ </div>
383
+ <br>
384
+ <div class="fl">
385
+ <p class="pb1"><img src="http://cdn.drinksmixer.com/i/h/13.gif"></p>
386
+ </div>
387
+ <div class="more">most popular drinks in this category...</div>
388
+ <table id="cl" cellspacing="1" cellpadding="0" border="0" width="99%">
389
+ <tr>
390
+ <td width="50%">
391
+ <p class="l1a"><a href="/drink3779.html">Gin and Tonic</a><br><a href="/drink3758.html">Genuine Singapore Sling</a><br><a href="/drink437.html">Purple Rain</a><br><a href="/drink3789.html">Gin Fizz</a><br><a href="/drink5858.html">Pimm's Cup</a><br><a href="/drink440.html">Ramos Fizz</a><br><a href="/drink526.html">Singapore Sling</a><br><a href="/drink7454.html">Southside</a><br><a href="/drink1974.html">Singapore Sling #2</a><br><a href="/drink10582.html">Fog Horn</a><br><a href="/drink7159.html">Slow Gin and Tonic</a><br><a href="/drink3548.html">Flash Gordon</a><br><a href="/drink3792.html">Gin Rickey</a><br><a href="/drink11626.html">Gin and Juice</a><br><a href="/drink10917.html">A Curious Feeling</a><br><a href="/drink3608.html">French 75</a><br><a href="/drink3780.html">Gin Balalajka</a><br><a href="/drink7280.html">Bramble</a><br><a href="/drink7450.html">Sloe Gin Fizz</a><br><a href="/drink10452.html">Bombay Safari</a><br><a href="/drink1085.html">Batman</a><br><a href="/drink11050.html">God's Alabama Slammer</a><br><a href="/drink4155.html">Bahamas Highball</a><br><a href="/drink6440.html">Royal Gin Fizz</a><br><a href="/drink1723.html">Salty Dog</a><br></p>
392
+ </td>
393
+ <td valign="top" width="50%">
394
+ <p class="l1a"> <a href="/drink10267.html">JMO Sling</a><br><a href="/drink3788.html">Gin Fix</a><br><a href="/drink3943.html">Grappa Gimlet</a><br><a href="/drink7909.html">Queerwig</a><br><a href="/drink4078.html">Gin Lime Rickey</a><br><a href="/drink9167.html">Floradora Cooler</a><br><a href="/drink6247.html">Cockney Champagne</a><br><a href="/drink1402.html">Blue Moon</a><br><a href="/drink3171.html">Diamond Fizz</a><br><a href="/drink2068.html">Smurf-o-Tonic</a><br><a href="/drink3415.html">Alabama Fizz</a><br><a href="/drink8402.html">Champagne Fizz</a><br><a href="/drink447.html">Red Lion</a><br><a href="/drink3664.html">Fruit Pastille</a><br><a href="/drink5380.html">Mint Collins</a><br><a href="/drink5859.html">Pimm's Rangoon</a><br><a href="/drink4539.html">Jen's Mountain Gin</a><br><a href="/drink7316.html">Desert Healer</a><br><a href="/drink11427.html">Cotton Candy #3</a><br><a href="/drink6657.html">Fireworks</a><br><a href="/drink388.html">Midori Sun</a><br><a href="/drink2038.html">Slow Screw</a><br><a href="/drink5746.html">Panty Dropper</a><br><a href="/drink208.html">Born on the 4th of July</a><br><a href="/drink3775.html">Gin and Bitter Lemon</a><br></p>
395
+ </td>
396
+ </tr>
397
+ </table>
398
+ <br>
399
+ <hr noshade size="1" color="#C7C7C7">
400
+ <img src="http://cdn.drinksmixer.com/i/help.gif">
401
+ <div class="Rl1b">
402
+ <p class="p10">
403
+ For information on creating mixed drink recipes, bartending information, and measurements for alcoholic drinks,
404
+ visit our <a href="/guide/">Bartender Guide</a>.
405
+ </p>
406
+ </div>
407
+ <br>
408
+ <div class="Rl1b" style="width:100%;">
409
+ <p class="p10">also see...<br><a href="/cat/3245/">collins, collins drink recipes</a><br><a href="/cat/2031/">gin-based cocktail recipes</a><br><a href="/cat/135/">gin-based long drink recipes</a><br></p>
410
+ </div>
411
+ </div>
412
+ </div>
413
+ <div class="ft">
414
+ <p class="ft2">
415
+ <a href="http://www.drinksmixer.com">home</a> | <a href="/sitemap.php">sitemap</a> | <a href="/links/">links</a><script type="text/javascript">s_ft();</script>
416
+ </p>
417
+ <p>
418
+ <div class="sk-logo"><img src="http://cdn.sheknows.com/channel-logos/sheknows-food.png" /></div>
419
+ </p>
420
+ </div>
421
+ </div>
422
+ <div class="men">
423
+ <p class="pl4 menu_left"><img src="http://cdn.drinksmixer.com/i/h/23.gif"></p>
424
+ <p class="l"><a href="/cat/1/">Cocktails</a><br><a href="/cat/3/">Shots</a><br><a href="/cat/2/">Punches</a><br><a href="/cat/6/">Liqueurs</a><br><a href="/cat/8/">Non-Alcoholic</a><br><a href="/cat/4/">Beer & Ale</a><br><a href="/cat/7/">Coffee & Tea</a></p>
425
+ <br>
426
+ <p class="pl4 menu_left"><img src="http://cdn.drinksmixer.com/i/h/24.gif"></p>
427
+ <p class="l">
428
+ <a href="/glossary/">Glossary</a><br>
429
+ <a href="/guide/">Bartender guide</a><br>
430
+ <a href="/guide/1-4.php">Shaking/stirring</a><br>
431
+ <a href="/guide/2-1.php">Terminology</a><br>
432
+ <a href="/guide/1-4-1.php">Measurements</a><br>
433
+ <a href="/guide/1-3.php">Glassware</a><br>
434
+ <a href="/games/">Drinking games</a><br>
435
+ <a href="/downloads/">Get the widget</a><br>
436
+ <a href="/custom_bar/">Custom Bar</a><br>
437
+ </p>
438
+ <br>
439
+ <p class="pl4 menu_left"><img src="http://cdn.drinksmixer.com/i/h/25.gif"></p>
440
+ <p class="l">
441
+ <a href="/feedback/submit.php">Submit a recipe!</a><br>
442
+ </p>
443
+ <!-- request uri - /drink2438.html -->
444
+ </div>
445
+ <div class="side">
446
+ <div class="iside">
447
+ <div style="float:left">
448
+ <div id="adtag-300x250">
449
+ <script type="text/javascript">
450
+ googletag.display("adtag-300x250");
451
+ </script>
452
+ </div>
453
+ </div>
454
+ <br style="clear:both;" /><br /><br />
455
+ <p class="pb1"><img src="http://cdn.drinksmixer.com/i/h/10.gif"></p>
456
+ <p class="l2c">1. <a href="/drink6495.html">Russian Monster Tom Collins</a><br>2. <a href="/drink2437.html">Tom Collins ala Olsen</a><br></p>
457
+ <br>
458
+ <div class="Rmore">also see...</div>
459
+ <p class="l2c">1. <a href="/drink8516.html">Applejack Collins</a><br>2. <a href="/drink5105.html">B&B Collins</a><br>3. <a href="/drink5154.html">Bourbon Collins</a><br>4. <a href="/drink1579.html">Brandy Collins</a><br>5. <a href="/drink4051.html">Gables Collins</a><br>6. <a href="/drink4569.html">Jock Collins</a><br>7. <a href="/drink4581.html">John Collins</a><br>8. <a href="/drink4834.html">Lime Vodka Collins</a><br>9. <a href="/drink8189.html">Major Tom</a><br>10. <a href="/drink9639.html">Maraschino Collins</a><br>11. <a href="/drink5380.html">Mint Collins</a><br>12. <a href="/drink5803.html">Pedro Collins</a><br>13. <a href="/drink6460.html">Rum Collins</a><br>14. <a href="/drink2025.html">Sloe Gin Collins</a><br>15. <a href="/drink2328.html">Tequila Collins</a><br>16. <a href="/drink1425.html">Tom and Jerry</a><br>17. <a href="/drink2436.html">Tom and Jerry Punch</a><br>18. <a href="/drink6565.html">Vodka Collins</a><br></p>
460
+ <br>and the following drinks, with similar ingredients...<br><br>
461
+ <p class="l2c">1. <a href="/drink1p25o51.html">Albemarle Fizz</a><br>2. <a href="/drinkn1m2621.html">Apricot Collins</a><br>3. <a href="/drink8364.html">Apricot Fizz</a><br>4. <a href="/drink1550.html">Bourbon Sour</a><br>5. <a href="/drink1583.html">Brandy Fizz</a><br>6. <a href="/drink8402.html">Champagne Fizz</a><br>7. <a href="/drink8852.html">Chatham Cocktail</a><br>8. <a href="/drink3608.html">French 75</a><br>9. <a href="/drink3775.html">Gin and Bitter Lemon</a><br>10. <a href="/drink4074.html">Gin Cassis Fizz</a><br>11. <a href="/drink3784.html">Gin Cobbler</a><br>12. <a href="/drink3796.html">Gin Sour</a><br>13. <a href="/drink3800.html">Gin-Cassis Fizz</a><br>14. <a href="/drink4569.html">Jock Collins</a><br>15. <a href="/drink4581.html">John Collins</a><br>16. <a href="/drink16xy439.html">Phil Collins</a><br>17. <a href="/drink5888.html">Pink Cream Fizz</a><br>18. <a href="/drink6416.html">Root Beer Fizz</a><br>19. <a href="/drink8151.html">Tequila Fizz #2</a><br>20. <a href="/drink8282.html">Whiskey to Go</a><br></p>
462
+ <br><script src="http://widgets.twimg.com/j/2/widget.js"></script>
463
+ <script>
464
+ new TWTR.Widget({
465
+ version: 2,
466
+ type: 'search',
467
+ search: 'drinksmixer',
468
+ interval: 6000,
469
+ title: 'Get your message here... tweet about',
470
+ subject: 'DrinksMixer',
471
+ width: 'auto',
472
+ height: 300,
473
+ theme: {
474
+ shell: {
475
+ background: '#2f2f2f',
476
+ color: '#ffffff'
477
+ },
478
+ tweets: {
479
+ background: '#ffffff',
480
+ color: '#494A4A',
481
+ links: '#c03a00'
482
+ }
483
+ },
484
+ features: {
485
+ scrollbar: false,
486
+ loop: true,
487
+ live: true,
488
+ hashtags: true,
489
+ timestamp: true,
490
+ avatars: true,
491
+ toptweets: true,
492
+ behavior: 'default'
493
+ }
494
+ }).render().start();
495
+ </script>
496
+ </div>
497
+ </div>
498
+ <div class="nav" id="An4">
499
+ <p>
500
+ <a href="/">Home</a>
501
+ <a href="/search/">Search drinks</a>
502
+ <a href="/guide/">Bartender guide</a>
503
+ <a href="/glossary/">Glossary</a>
504
+ <a href="/games/" class="menu_last">Drinking games</a>
505
+ </p>
506
+ </div>
507
+ <script type="text/javascript">ss_a();</script>
508
+ <div class="alf"><font style="color:#FF8C47;">FIND A DRINK BY LETTER:</font> <a href="/cat/-/">#</a> <a href="/cat/a/">A</a> <a href="/cat/b/">B</a> <a href="/cat/c/">C</a> <a href="/cat/d/">D</a> <a href="/cat/e/">E</a> <a href="/cat/f/">F</a> <a href="/cat/g/">G</a> <a href="/cat/h/">H</a> <a href="/cat/i/">I</a> <a href="/cat/j/">J</a> <a href="/cat/k/">K</a> <a href="/cat/l/">L</a> <a href="/cat/m/">M</a> <a href="/cat/n/">N</a> <a href="/cat/o/">O</a> <a href="/cat/p/">P</a> <a href="/cat/q/">Q</a> <a href="/cat/r/">R</a> <a href="/cat/s/">S</a> <a href="/cat/t/">T</a> <a href="/cat/u/">U</a> <a href="/cat/v/">V</a> <a href="/cat/w/">W</a> <a href="/cat/x/">X</a> <a href="/cat/y/">Y</a> <a href="/cat/z/">Z</a></div>
509
+ <script language="javascript" type="text/javascript">
510
+ <!--
511
+ var cbBcSite = 'Drinksmixer.com';
512
+ var cbBcSiteUrl = 'http://www.drinksmixer.com';
513
+ var cbChannel = 'lifestyle';
514
+ var cbWidth = '973px';
515
+ -->
516
+ </script>
517
+ <div class="lo">
518
+ <div class="loi">
519
+ <div class="lo2">
520
+ <div class="logo"><a href="http://www.drinksmixer.com"><img src="http://cdn.drinksmixer.com/i/drinksmixer.png" title="Drink recipes" border="0"></a></div>
521
+ </div>
522
+ </div>
523
+ </div>
524
+ <script type="text/javascript">my('tbg4');</script>
525
+ <div class="ad">
526
+ <div class="banner" style="text-align:center; margin-left:auto; margin-right:auto;">
527
+ <div id="adtag-728x90">
528
+ <script type="text/javascript">
529
+ googletag.display("adtag-728x90");
530
+ </script>
531
+ </div>
532
+ </div>
533
+ </div>
534
+ <div class="clearfix"></div>
535
+ </div>
536
+ <script type="text/javascript">s_bot(1);</script>
537
+ <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
538
+ <script type="text/javascript">
539
+ _uacct = "UA-2290884-1";
540
+ urchinTracker();
541
+ </script>
542
+ <!-- Begin comScore Tag -->
543
+ <script>
544
+ document.write(unescape("%3Cscript src='" + (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js' %3E%3C/script%3E"));
545
+ </script>
546
+ <script>
547
+ COMSCORE.beacon({
548
+ c1:2,
549
+ c2:15476338,
550
+ c3:"",
551
+ c4:"",
552
+ c5:"",
553
+ c6:"",
554
+ c15:""
555
+ });
556
+ </script>
557
+ <noscript>
558
+ <img src="http://b.scorecardresearch.com/p?c1=2&c2=15476338&c3=&c4=&c5=&c6=&c15=&cj=1" />
559
+ </noscript>
560
+ <!-- End comScore Tag --> <script type="text/javascript">
561
+ var _sf_async_config={uid:8555,domain:"drinksmixer.com"};
562
+ (function(){
563
+ function loadChartbeat() {
564
+ window._sf_endpt=(new Date()).getTime();
565
+ var e = document.createElement('script');
566
+ e.setAttribute('language', 'javascript');
567
+ e.setAttribute('type', 'text/javascript');
568
+ e.setAttribute('src',
569
+ (("https:" == document.location.protocol) ? "https://s3.amazonaws.com/" : "http://") +
570
+ "static.chartbeat.com/js/chartbeat.js");
571
+ document.body.appendChild(e);
572
+ }
573
+ var oldonload = window.onload;
574
+ window.onload = (typeof window.onload != 'function') ?
575
+ loadChartbeat : function() { oldonload(); loadChartbeat(); };
576
+ })();
577
+ </script>
578
+ <div class="clearfix"></div>
579
+ </div>
580
+ <!-- start Vibrant Media IntelliTXT script section -->
581
+ <script type="text/javascript" src="http://drinksmixer.us.intellitxt.com/intellitxt/front.asp?ipid=49349"></script>
582
+ <!-- end Vibrant Media IntelliTXT script section -->
583
+ <div id="adtag-reskin">
584
+ <script type="text/javascript">
585
+ googletag.display("adtag-reskin");
586
+ </script>
587
+ </div>
588
+ <div id="adtag-sliver">
589
+ <script type="text/javascript">
590
+ googletag.display("adtag-sliver");
591
+ </script>
592
+ </div>
593
+ <div id="adtag-interstitial">
594
+ <script type="text/javascript">
595
+ googletag.display("adtag-interstitial");
596
+ </script>
597
+ </div>
598
+ <div id="adtag-catfish">
599
+ <script type="text/javascript">
600
+ googletag.display("adtag-catfish");
601
+ </script>
602
+ </div>
603
+ </body>
604
+ </html>