From owner-freebsd-ruby@FreeBSD.ORG Fri Nov 11 22:21:08 2011 Return-Path: Delivered-To: ruby@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D348C106566C for ; Fri, 11 Nov 2011 22:21:08 +0000 (UTC) (envelope-from astounding@gmail.com) Received: from mail-qw0-f47.google.com (mail-qw0-f47.google.com [209.85.216.47]) by mx1.freebsd.org (Postfix) with ESMTP id 97FD48FC0A for ; Fri, 11 Nov 2011 22:21:08 +0000 (UTC) Received: by qabj40 with SMTP id j40so4673457qab.13 for ; Fri, 11 Nov 2011 14:21:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=OefLCQVdihHyFWgwUHnW91ALUbl0f5z/FGpK37lBs8o=; b=rRWHtDLGchN4PGV/Kv4tJxkPqUpcuJLdUmjw/Uwn6Uo24XF3vgp9x1DESpwk9yaNaX /Bwx1VNEXkQEC+4yCU2khPIzGh34JgBdQrcFVCsgK1Jrx/3nepjYR2T2BSgqHT/QrRhZ TYhjyrj3n5WGKO0xWtubsJP1xJVd7q7GWcGyA= MIME-Version: 1.0 Received: by 10.224.177.68 with SMTP id bh4mr10405970qab.48.1321048506211; Fri, 11 Nov 2011 13:55:06 -0800 (PST) Received: by 10.224.28.141 with HTTP; Fri, 11 Nov 2011 13:55:06 -0800 (PST) Date: Fri, 11 Nov 2011 14:55:06 -0700 Message-ID: From: "Aaron D. Gifford" To: ruby@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: What changed? (gem command missing in 1.9) X-BeenThere: freebsd-ruby@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD-specific Ruby discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2011 22:21:08 -0000 Hi, I've been using RUBY_DEFAULT_VER=1.9 in my /etc/make.conf for months now successfully to ensure that gem, ri, irb, ruby, etc. were correctly symlinked in /usr/local/bin/ to the *19 commands. However today upon building the /usr/ports/lang/ruby19 port and installing it afresh, I discovered that the other *19 commands are there EXCEPT for the gem command: user@host:/usr/local/bin$ ls -ld *19 -rwxr-xr-x 2 root wheel 4401 Nov 11 14:48 erb19 -rwxr-xr-x 2 root wheel 322 Nov 11 14:48 irb19 -rwxr-xr-x 2 root wheel 701 Nov 11 14:48 rdoc19 -rwxr-xr-x 2 root wheel 77 Nov 11 14:48 ri19 -rwxr-xr-x 2 root wheel 5448 Nov 11 14:48 ruby19 -rwxr-xr-x 2 root wheel 251 Nov 11 14:48 testrb19 user@host:/usr/local/bin$ ls -l erb irb rdoc ri ruby testrb gem ls: gem: No such file or directory -rwxr-xr-x 2 root wheel 4401 Nov 11 14:48 erb -rwxr-xr-x 2 root wheel 322 Nov 11 14:48 irb -rwxr-xr-x 2 root wheel 701 Nov 11 14:48 rdoc -rwxr-xr-x 2 root wheel 77 Nov 11 14:48 ri -rwxr-xr-x 2 root wheel 5448 Nov 11 14:48 ruby -rwxr-xr-x 2 root wheel 251 Nov 11 14:48 testrb What happened? What changed? Where did the gem command go? Is there a new environment variable I need while building the port now? Puzzled and confused, Aaron out.