I'm new to Ruby and i'm working on a code for a server. The code is a half year old. In the meanwhile Chrome updated versions to version 14.
So here is my code:
supported_browsers = /Chrome\/[3-9]|Firefox\/[3-9]|\sMSIE\s|Konqueror\/[4-9]|Midori|Minefield|Shiretoko|IceCat|Opera\/9.|\sAppleWebKit/
As you can see Chrome 3-9 but now when i try to change it to:
supported_browsers = /Chrome\/[3-15]|Firefox\/[3-9]|\sMSIE\s|Konqueror\/[4-9]|Midori|Minefield|Shiretoko|IceCat|Opera\/9.|\sAppleWebKit/
I get a syntax error. Help me figure out what's wrong.