ruby - Error when creating new app with rails -
i installed rails on windows railsinstaller , when try create new application command e.g.
rails new blog
it creates lot of files after using turbolinks 2.2.2
returns error me:
bundler::gemspecerror: not read gem @ c:/railsinstaller/ruby1.9.3/lib/ruby/gems/1.9.1/cache/tzinfo-data-1.2014.3.gem. may corrupted.
how can solve problem?
it looks have corrupted gem file (maybe due network download issue).
go c:\railsinstaller\ruby1.9.3\lib\ruby\gems\1.9.1\cache\
, delete file called tzinfo-data-1.2014.3.gem
.
then run rails new blog
command again , should work.
Comments
Post a Comment