Giter Club home page Giter Club logo

Comments (10)

postmodern avatar postmodern commented on July 28, 2024

This can be done with:

RUBIES=({/usr/local,/opt,$HOME}/rubies/*)

from chruby.

postmodern avatar postmodern commented on July 28, 2024

Hmm nope:

   jruby-1.7.0
   rubinius-2.0.0-rc1
   ruby-1.9.3-p327
   ruby-2.0.0-preview2
   *
   *

from chruby.

postmodern avatar postmodern commented on July 28, 2024

Better solution from @havenwood:

RUBIES=$(for path in {/usr/local/rubies,/opt/rubies,$HOME/.rubies}/*; do echo $path; done)

from chruby.

postmodern avatar postmodern commented on July 28, 2024

or we could just append them to an empty Array:

RUBIES=()

for path in {/usr/local/rubies,/opt/rubies,$HOME/.rubies}/*; do
  [[ -x $path/bin/ruby ]] && RUBIES+=($path)
done

from chruby.

postmodern avatar postmodern commented on July 28, 2024

Arg, zsh strikes again:

>>> Running tests under /usr/bin/zsh ...
./share/chruby/chruby.sh:3: no matches found: /opt/rubies/*

from chruby.

postmodern avatar postmodern commented on July 28, 2024
for rubies in /usr/rubies /usr/local/rubies /opt/rubies "$HOME"/.rubies; do
    [[ -d "$rubies" ]] && RUBIES+=("$rubies"/*)
done

I removed the [[ -x $path/bin/ruby ]] check, since a user could set RUBIES to any list of directories and no error would be raised. Better to fail consistently.

from chruby.

havenwood avatar havenwood commented on July 28, 2024
for rubies in /opt/rubies /usr/rubies /usr/local/rubies "$HOME"/.rubies "$HOME"/.rvm/rubies "$HOME"/.rbfu/rubies "$HOME"/.rbenv/versions; do
  [[ -d "$rubies" ]] && RUBIES+=("$rubies"/*)
done

Too much to include migration directories as common directories? Would allow us to autodetect existing installed Rubies for users migrating to chruby.

from chruby.

postmodern avatar postmodern commented on July 28, 2024

I think that should be an explicit choice by the user. That way they don't forget about ~/.rvm/rubies or ~/.rbenv/versions while using chruby. Also, I'm guessing most users will rvm implode or rm -rf ~/.rbenv beforehand.

from chruby.

postmodern avatar postmodern commented on July 28, 2024

Merged into the 0.3.0.

from chruby.

postmodern avatar postmodern commented on July 28, 2024

This has been released in 0.3.0.

from chruby.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.