ruby - Installing Octopress on windows 7 using Yari-Dependencies not loading when bundle install is executed -


when install octopress many use rvm switch between ruby versions. however, rvm not work window users scott muc created yari after following this , that, overcame yari not found issue restarting windows power shell , making sure path pointing correct ruby installation under yari folder. following commands ran fine:

git clone git://github.com/imathis/octopress.git octopress cd octopress ruby --version  # reports ruby 1.9.3 yari gem install bundler 

the bundle install command starts complaining can't find gems install. after detective work, can see gemfile under octopress adding gems install them manually 1 one (ugh). list seems long. hope ruby or octopress expert can become hero today :-( can share knowledge , start blogging.

i took shot of bottom part of console. have added each gem 1 one.thanks yari , taking look.

enter image description here

and on , on till finally... enter image description here

not sure if yari related modified line 205 of httpresponse.rb file to: if chunked? || @header['content-length'] || @status == 304 || @status == 204. turns off bunch of annoying warnings slow down rake preview command , causes need endless refresh. sensitive in chrome ff had better response time---

i have same problem here, problem certificate (yari problem?):

gem::remotefetcher::fetcherror: ssl_connect returned=1 errno=0 state=sslv3 read server certificate b: certificate verify failed (https://rubygems.org/gems/compa ss-0.12.2.gem) 

you can change file gemfile of octopress without https , works

source "http://rubygems.org"  group :development   gem 'rake', '~> 0.9'   gem 'jekyll', '~> 0.12'   gem 'rdiscount', '~> 2.0.7'   gem 'pygments.rb', '~> 0.3.4'   gem 'redcloth', '~> 4.2.9'   gem 'haml', '~> 3.1.7'   gem 'compass', '~> 0.12.2'   gem 'sass', '~> 3.2'   gem 'sass-globbing', '~> 1.0.0'   gem 'rubypants', '~> 0.2.0'   gem 'rb-fsevent', '~> 0.9'   gem 'stringex', '~> 1.4.0'   gem 'liquid', '~> 2.3.0'   gem 'directory_watcher', '1.4.1' end  gem 'sinatra', '~> 1.4.2' 

more info: http://railsapps.github.io/openssl-certificate-verify-failed.html


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -