Mac OSX 10.10.2 Ruby 2.2.0
I'm going through the "One Month Rails" course, and I'm stalling on the part where I need to add bootstrap to the project. I've tried tons of solutions recommended, but nothing seems to work for me.
Here is the error I keep getting:
Gem::RemoteFetcher::FetchError: Errno::ETIMEDOUT: Operation timed out
- connect(2) for "rubygems.global.ssl.fastly.net" port 80
(http://rubygems.org/gems/autoprefixer-rails-5.2.0.gem)
An error occurred while installing autoprefixer-rails
(5.2.0), and Bundler cannot continue.
Make sure that `gem install autoprefixer-rails -v '5.2.0'`
succeeds before bundling.
Things that have failed:
- Changing https to http does not work
- Bundle update does not work
- Restarting the computer does not work
- Restarting the Terminal does not work
Please help!
Have you tried to install
autoprefixer-rails
gem using this command :gem install autoprefixer-rails -v '5.2.0'
? After that trybundle install
again.