I had a Ruby on Rails app that used to work. I hadn\'t used it in a month or so, but then tried starting it up today with rails s
and got the following error—in fa
I got the same error with jquery-rails 2.0.3:
Invalid gemspec in [C:/Ruby187/lib/ruby/gems/1.8/specifications/jquery-rails-2.0.3.gemspec]: invalid date format in specification: "2012-08-16 00:00:00.000000000Z"
To fix that, I have edited the file C:/Ruby187/lib/ruby/gems/1.8/specifications/jquery-rails-2.0.3.gemspec and change the line containing:
s.date = %q{2012-08-16 00:00:00.000000000Z}
to
s.date = %q{2012-08-16}
then it works again.