temporary fix for quotes in package descriptions

This commit is contained in:
Donald Curtis 2012-04-09 11:36:36 -05:00
parent e3598bccbd
commit c53dba1222

View file

@ -17,7 +17,7 @@
<%
def parse str
# credit to: http://stackoverflow.com/q/3128406/154508
tokens = str.scan(/#{Regexp.escape("(")}|#{Regexp.escape(")")}|[a-zA-Z0-9\-\_\+]+/)
tokens = str.scan(/#{Regexp.escape("(")}|#{Regexp.escape(")")}|[a-zA-Z0-9\'\-\_\+]+/)
stack = [[]]