This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class String | |
| def split_to_array | |
| encoding_options = { | |
| :invalid => :replace, # Replace invalid byte sequences | |
| :undef => :replace, # Replace anything not defined in ASCII | |
| :replace => ' ', # Use a blank for those replacements | |
| :universal_newline => true # Always break lines with \n | |
| } | |
| string = self.encode(Encoding.find('ASCII'), encoding_options) | |
| string = string.split("\n").delete_if {|x| x.empty?} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <strong><u><span style="font-size: large;">Ingredients:</span></u></strong><br /> | |
| <ul> | |
| <li>2 Granny Smith Apples (Peeled and Diced)</li> | |
| <li>Juice from 1/2 Lemon</li> | |
| <li>2 TBSP Splenda Brown Sugar</li> | |
| <li>1/2 tsp Cinnamon</li> | |
| <li>1/2 Cup Rolled Oats</li> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <strong><span style="font-size: large;">Ingredients:</span></strong><br /> | |
| <ul> | |
| <li>Ines Rosales Rosemary and Thyme Tortas</li> | |
| <li>Pizza Sauce (ready made in a jar)</li> | |
| <li>Roma Tomatoes</li> | |
| <li>Roasted Red Peppers </li> | |
| <li>Marinated Artichoke Hearts</li> | |
| <li>Olives (I used Pitted Spanish Manzanilla Olives)</li> | |
| <li>Daiya Vegan Mozzarella Cheese</li> | |
| </ul> |
NewerOlder