On Thu, Jan 17, 2013 at 11:02:40PM -0800, RV wrote: > > I am trying to install ruote with bundler. I get this error. > > Fetching git://github.com/jmettraux/ruote.git > Unfortunately, a fatal error has occurred. Please see the Bundler > troubleshooting documentation at http://bit.ly/bundler-issues. Thanks! > C:/Ruby193/lib/ruby/gems/1.9.1/gems/bundler-1.2.3/lib/bundler/source.rb:582:in > ``': No such file or directory - git clone > "git://github.com/jmettraux/ruote.git" > "C:/Ruby193/lib/ruby/gems/1.9.1/cache/bundler/git/ruote-328ff7d4702b753a6aac9fdd65ec2408c8be5455" > --bare --no-hardlinks (Errno::ENOENT) > from > C:/Ruby193/lib/ruby/gems/1.9.1/gems/bundler-1.2.3/lib/bundler/source.rb:582:in > `git' from > > (...) > > Gemfile reads > gem "ruote", :git => "git://github.com/jmettraux/ruote.git"
Hello Hervé, welcome to the ruote mailing list. Sorry for the late answer, the Google Groups notifications are a bit random these days. I tried this: ---8<--- $ uname -a Darwin sanma.local 10.8.0 Darwin Kernel Version 10.8.0: Tue Jun 7 16:33:36 PDT 2011; root:xnu-1504.15.3~1/RELEASE_I386 i386 $ ruby -v ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-darwin10.8.0] $ bundle -v Bundler version 1.2.3 $ cat Gemfile gem "ruote", :git => "git://github.com/jmettraux/ruote.git" $ bundle install Updating git://github.com/jmettraux/ruote.git Using blankslate (2.1.2.4) Using tins (0.6.0) Using file-tail (1.0.12) Using parslet (1.4.0) Using sexp_processor (3.2.0) Using ruby_parser (2.3.1) Using ruby2ruby (1.3.1) Using rufus-json (1.0.2) Using rufus-cloche (1.0.2) Using rufus-dollar (1.0.4) Using rufus-mnemo (1.2.3) Using tzinfo (0.3.35) Using rufus-scheduler (2.0.17) Using rufus-treechecker (1.0.8) Using sourcify (0.5.0) Using ruote (2.3.1) from git://github.com/jmettraux/ruote.git (at master) Using bundler (1.2.3) Your bundle is complete! Use `bundle show [gemname]` to see where a bundled gem is installed. --->8--- Granted, it's not Windows like in your case... What is the result on your machine with this Gemfile: ---8<--- gem "rails", :git => "git://github.com/rails/rails.git" --->8--- ? I googled a bit: https://www.google.com/search?ie=UTF-8&oe=UTF-8&sourceid=navclient&q=bundle+r+windows+No+such+file+or+directory+-+git+clone#hl=en&tbo=d&sclient=psy-ab&q=bundler+windows+No+such+file+or+directory+-+git+clone&oq=bundler+windows+No+such+file+or+directory+-+git+clone&gs_l=serp.3...2524.2524.0.2932.1.1.0.0.0.0.134.134.0j1.1.0.les%3B..0.0...1c.1.s3ONRMFr6Dc&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&bvm=bv.41248874,d.dGY&fp=24b126b35605e78a&biw=1240&bih=1074 Here is an interesting result: http://stackoverflow.com/questions/5021904/rails-3-install-a-branched-gem-from-github Do you have git installed on your Windows machine? Best regards, -- John Mettraux - http://lambda.io/jmettraux -- you received this message because you are subscribed to the "ruote users" group. to post : send email to [email protected] to unsubscribe : send email to [email protected] more options : http://groups.google.com/group/openwferu-users?hl=en
