Closed (fixed)
Project:
Barracuda
Version:
6.x-2.x-dev
Component:
Other Services
Priority:
Minor
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
26 Nov 2013 at 23:39 UTC
Updated:
23 Dec 2013 at 16:30 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
Anonymous (not verified) commentedI have the same issue on two fresh installs. Seems to work for me (have'nt explored all features).
Run the following command "gem query"
Should see this output:
Peace,
Michael Clendening
Comment #2
omega8cc commented"Please note that any bug report or support request failing to follow the guidelines will be ignored and closed without any answer."
Comment #3
mrP commentedConfirmed and can be easily duped. This is a ruby version issue as a dependent gem (celluloid see Celluloid Supported Platforms). Current default installs only include ruby 1.8.
ruby1.9.1-dev libruby1.9.1 ruby1.9.1will get you your necessary ruby environment. @omega8 -- my thinking is to add ruby 1.9 to a default install, but i'll defer to your preference.Logs attached for a fresh Debian Wheezy BOA-2.1.3 install.
Comment #4
omega8cc commentedThanks for the patch, however, this test:
_RUBY_VERSION = `ruby -e 'print RUBY_VERSION'`will never work properly on Squeeze, because
rubyis not symlinked there to eitherruby1.8orruby1.9.1.Also the lshell config would need a PATH fix.
Comment #5
omega8cc commentedIn fact. it is not really a bug, so changing the title.
Comment #6
niccolox commentedam on Precise, should of mentioned that..
Comment #7
mrP commentedgood point,
! -e "/usr/lib/ruby/1.9.1/rubygems.rb"should be a better check.the failed installation of the toolkit gem prevents the further install/update of susy, compass-rgbapng, sass-globbing, and bundler which seems quite buggy.
Comment #8
omega8cc commentedThanks! One more correction, though:
+ if [ ! -e "/usr/local/bin/compass" ] && [ -x "/var/lib/gems/1.9.1/bin/compass" ] ; thenThese symlinks will never get updated if they already exist.
Comment #9
mrP commentedanother good catch, thanks!
i also spotted another squeeze specific issue for gem1.8 -> gem1.9.1
Comment #10
mrP commentedwith corrected variable squeeze check
Comment #11
mrP commentedanother revision with better checking for fix_compass_path
Comment #12
omega8cc commentedCommitted in http://drupalcode.org/project/barracuda.git/commit/90df331
Thanks!