Skip to content

Commit

Permalink
Merge pull request #307 from rpbaptist/windows-install-troubleshooting
Browse files Browse the repository at this point in the history
Windows install troubleshooting
  • Loading branch information
vesan committed Oct 9, 2016
2 parents eb905f4 + 1165d57 commit 353d97a
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions _posts/2013-05-02-install.markdown
Expand Up @@ -171,10 +171,10 @@ gem -v
If it is lower than `2.2.3` you will need to manually update it:


First download the [ruby-gems-update gem](https://github.com/rubygems/rubygems/releases/download/v2.2.3/rubygems-update-2.2.3.gem). Move the file to `c:\\rubygems-update-2.2.3.gem` then run:
First download the [ruby-gems-update gem](https://rubygems.org/gems/rubygems-update-2.6.7.gem). Move the file to `c:\\rubygems-update-2.6.7.gem` then run:

{% highlight sh %}
gem install --local c:\\rubygems-update-2.2.3.gem
gem install --local c:\\rubygems-update-2.6.7.gem
update_rubygems --no-document
gem uninstall rubygems-update -x
{% endhighlight %}
Expand All @@ -185,8 +185,15 @@ Check your version of rubygems
gem -v
{% endhighlight %}

Make sure it is equal or higher than `2.2.3`. Re-run the command that was failing previously.
Make sure it is equal or higher than `2.6.7`. Re-run the command that was failing previously.

If you are still running into problems you can always find the latest version of rubygems online at [rubygems.org](https://rubygems.org/pages/download). If you click on **GEM** you will get the latest version.

### During bundle install

The `Gem::RemoteFetcher::FetchError: SSL_connect` can also occur during the `bundle install` stage when creating a new rails app.

The error will make mention of [bit.ly/ruby-ssl](http://bit.ly/ruby-ssl). What is relevant for Windows users at this point is [this GitHub gist](https://gist.github.com/867550). The described manual way has proven to be succesful to solve the `bundle install` error.

### 'x64_mingw' is not a valid platform` Error

Expand Down

0 comments on commit 353d97a

Please sign in to comment.