[#73707] [Ruby trunk Misc#12004] Code of Conduct — hanmac@...
Issue #12004 has been updated by Hans Mackowiak.
3 messages
2016/02/05
[#73730] [Ruby trunk Feature#12034] RegExp does not respect file encoding directive — nobu@...
Issue #12034 has been updated by Nobuyoshi Nakada.
3 messages
2016/02/07
[#73746] [Ruby trunk Feature#12034] RegExp does not respect file encoding directive — nobu@...
Issue #12034 has been updated by Nobuyoshi Nakada.
3 messages
2016/02/09
[#73919] [Ruby trunk Feature#11262] Make more objects behave like "Functions" — Ruby-Lang@...
Issue #11262 has been updated by J旦rg W Mittag.
3 messages
2016/02/22
[#74019] [Ruby trunk Bug#12103][Rejected] ruby process hangs while executing regular expression. — duerst@...
Issue #12103 has been updated by Martin D端rst.
3 messages
2016/02/27
[ruby-core:73953] [Ruby trunk Bug#12066] Ruby creates Wrong .Bat files
From:
usa@...
Date:
2016-02-23 16:01:05 UTC
List:
ruby-core #73953
Issue #12066 has been updated by Usaku NAKAMURA. Backport changed from 2.1: REQUIRED, 2.2: REQUIRED, 2.3: DONTNEED to 2.1: DONTNEED, 2.2: REQUIRED, 2.3: DONTNEED ---------------------------------------- Bug #12066: Ruby creates Wrong .Bat files https://bugs.ruby-lang.org/issues/12066#change-57102 * Author: Kevin Marti * Status: Closed * Priority: Normal * Assignee: Tomoyuki Chikanaga * ruby -v: ruby 2.2.4p230 (2015-12-16 revision 53155) [x64-mingw32] * Backport: 2.1: DONTNEED, 2.2: REQUIRED, 2.3: DONTNEED ---------------------------------------- After i downloaded the newest version of Ruby and installed SASS, i tried to run SASS from the command line. This gave me following error: Der Befehl **"""C:\Program"** ist entweder falsch geschrieben oder konnte nicht gefunden werden. (In German, but important part is the bold one.) it says command not found... So i debugged the sass.bat file and saw that there is a " too much. I modified the file from: @ECHO OFF IF NOT "%~f0" == "~f0" GOTO :WinNT @**"**"C:\Program Files\Ruby22-x64\bin\ruby.exe" "C:/Program Files/Ruby22-x64/bin/sass" %1 %2 %3 %4 %5 %6 %7 %8 %9 GOTO :EOF :WinNT @**"**"C:\Program Files\Ruby22-x64\bin\ruby.exe" "%~dpn0" %* to: @ECHO OFF IF NOT "%~f0" == "~f0" GOTO :WinNT @"C:\Program Files\Ruby22-x64\bin\ruby.exe" "C:/Program Files/Ruby22-x64/bin/sass" %1 %2 %3 %4 %5 %6 %7 %8 %9 GOTO :EOF :WinNT @"C:\Program Files\Ruby22-x64\bin\ruby.exe" "%~dpn0" %* Now it works fine. To mention is, that i installed ruby under C:\Program Files and not in the root directly. So i think the .Bat-Creator is making something strange while writing the file. I hope you can fix it, so other Peoble dont have to modify every additional bat file. -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>