First I tried RegEx in irb:
$ irb irb(main):001:0> /(?:"|')(?<title>[^"']+)?(?:"|')\s+(?:"|')(?<alt>[^"']+)?(?:"|')/ => /(?:"|')(?<title>[^"']+)?(?:"|')\s+(?:"|')(?<alt>[^"']+)?(?:"|')/ irb(main):002:0>
I have no errors, but then I found out that my default ruby ββversion on the server was 1.8.7.
I selected ruby-1.9.3-p551 from rvm and made it active.
I have done the following:
rvm use ruby-1.9.3-p551 bundle install bundle exec rake generate
This resolved the error for me.
source share