Cant run middleman Mac project in windows

Hi , I have this project i started on my mac, now i wanna work on my pc.

But it said gems where not installed, i did, bundle install.

But it keeps asking for gems that are not installed ? this are the errors, ( I have already installed some gems individually )

Gem::RemoteFetcher::FetchError: SSL_connect returned=1 errno=0 state=SSLv3 rea
server certificate B: certificate verify failed (https://rubygems.org/gems/spr
kets-2.12.3.gem)
An error occurred while installing sprockets (2.12.3), and Bundler cannot
continue.
Make sure that `gem install sprockets -v '2.12.3'` succeeds before bundling.

What can i do so that Itinstalls all gems and, is there a process to follow to open mac projects on windows ?

Thankx!

hello @thisisGiorgio
Have you tried to follow what the terminal said to you ?

well, i mean that is the thing…bundle should install all gems… if i do gem install sprockets -v ‘2.12.3’, there will be a next gem needed to be installed…

normally bundle should do them all right ?

Yes but sometimes we encounter the gravity law

Try to search the stdout of

bundle exec gem install sprockets -v '2.12.3'

I can’t help you more i work on mac and linux system.

You may get a similar error if you are on windows and behind a corporate netnanny like websense which decrypts https in a man-in-the-middle-attack manner.

Changing the source https://rubygems.org' line at the top of your Gemfile to source http://rubygems.org' could go around this issue, but at the cost of loss of trusted connection between you and the gem source.

This is risky. Use at your own risk.

Also, see: http://www.confreaks.com/videos/1243-aloharuby2012-hacking-with-gems

OK, thanks! I think i will just work on my ubuntu machine. thanks