Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
812 views
in Technique[技术] by (71.8m points)

ruby on rails - Could not find thread_safe-0.3.0 in any of the sources

I get this error while running bundle install in a rails app,

I thought the latest version is 0.2.0...could anybody help me out on this?

bundle install
Fetching gem metadata from https://rubygems.org/..........
Fetching additional metadata from https://rubygems.org/..
Resolving dependencies...
Could not find thread_safe-0.3.0 in any of the sources
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I was experiencing the same problem.

The thread_safe gem version 0.3.0 has been yanked now from Ruby Gems: http://rubygems.org/gems/thread_safe/versions

So you might want to specify a different version in your Gemfile, or you can point the Gemfile directly to GitHub.

I solved the problem with this line in my Gemfile:

gem 'thread_safe', '0.2.0'

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...