This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+__rvm_parse_args:715> [[ -n 4.3.11 ]] | |
+__rvm_parse_args:744> [[ -z '' && -n '' ]] | |
+__rvm_parse_args:746> [[ 0 -eq 1 || -n '' ]] | |
+__rvm_parse_args:20> [[ -n install ]] | |
+__rvm_parse_args:22> rvm_token=install | |
+__rvm_parse_args:24> (( 3 > 0 )) | |
+__rvm_parse_args:26> next_token=1.9.3 | |
+__rvm_parse_args:27> shift | |
+__rvm_parse_args:32> case install ([[:alnum:]]*|@*) | |
+__rvm_parse_args:36> case install (use) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_docker_procs() | |
{ | |
local procs | |
procs="$(docker ps -q)" | |
COMPREPLY=( $(compgen -W "${procs}" -- ${cur}) ) | |
} | |
_docker_imgs() | |
{ | |
local repos tags imgs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Doc/Makefile.in b/Doc/Makefile.in | |
index dacbd51..69b7b04 100644 | |
--- a/Doc/Makefile.in | |
+++ b/Doc/Makefile.in | |
@@ -66,8 +66,8 @@ Zsh/mod_sched.yo Zsh/mod_socket.yo \ | |
Zsh/mod_stat.yo Zsh/mod_system.yo Zsh/mod_tcp.yo \ | |
Zsh/mod_termcap.yo Zsh/mod_terminfo.yo \ | |
Zsh/mod_zftp.yo Zsh/mod_zle.yo Zsh/mod_zleparameter.yo \ | |
-Zsh/mod_zprof.yo Zsh/mod_zpty.yo Zsh/mod_zselect.yo \ | |
-Zsh/mod_zutil.yo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Zsh5Installed < Requirement | |
fatal true | |
satisfy :build_env => false do | |
which('zsh') && `zsh --version|awk '{print $2}'|cut -d. -f1`.to_i == 5 | |
end | |
def message; <<-EOS.undent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/configure b/src/configure | |
index 26f1b4e..ca368d5 100755 | |
--- a/src/configure | |
+++ b/src/configure | |
@@ -6404,7 +6406,7 @@ $as_echo_n "checking Ruby rbconfig... " >&6; } | |
$as_echo "$ruby_rbconfig" >&6; } | |
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking Ruby header files" >&5 | |
$as_echo_n "checking Ruby header files... " >&6; } | |
- rubyhdrdir=`$vi_cv_path_ruby -r mkmf -e "print $ruby_rbconfig::CONFIG['rubyhdrdir'] || $ruby_rbconfig::CONFIG['archdir'] || \\$hdrdir" 2>/dev/null` | |
+ rubyhdrdir=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG['rubyhdrdir'] || $ruby_rbconfig::CONFIG['archdir']" 2>/dev/null` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/auto/configure b/src/auto/configure | |
index 4fd7b82..08af7f3 100755 | |
--- a/src/auto/configure | |
+++ b/src/auto/configure | |
@@ -7184,7 +7186,7 @@ echo $ECHO_N "checking Ruby rbconfig... $ECHO_C" >&6; } | |
echo "${ECHO_T}$ruby_rbconfig" >&6; } | |
{ echo "$as_me:$LINENO: checking Ruby header files" >&5 | |
echo $ECHO_N "checking Ruby header files... $ECHO_C" >&6; } | |
- rubyhdrdir=`$vi_cv_path_ruby -r mkmf -e "print $ruby_rbconfig::CONFIG['rubyhdrdir'] || $ruby_rbconfig::CONFIG['archdir'] || \\$hdrdir" 2>/dev/null` | |
+ rubyhdrdir=`$vi_cv_path_ruby -r rbconfig -e "print $ruby_rbconfig::CONFIG['rubyhdrdir'] || $ruby_rbconfig::CONFIG['archdir']" 2>/dev/null` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 92c9748e0ccb src/config.h.in | |
--- a/src/config.h.in Sun Oct 06 17:46:56 2013 +0200 | |
+++ b/src/config.h.in Sun Oct 13 23:11:37 2013 +0200 | |
@@ -442,3 +442,6 @@ | |
/* Define if you want Cygwin to use the WIN32 clipboard, not compatible with X11*/ | |
#undef FEAT_CYGWIN_WIN32_CLIPBOARD | |
+ | |
+/* Define if we have AvailabilityMacros.h on Mac OS X */ | |
+#undef HAVE_AVAILABILITYMACROS_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
tmp/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** vim/src/os_unix.c Thu Oct 24 11:50:44 2013 | |
--- vim-local/src/os_unix.c Thu Oct 24 13:25:03 2013 | |
*************** | |
*** 804,809 **** | |
--- 804,815 ---- | |
* completely full. | |
*/ | |
+ #if defined(__APPLE__) && \ | |
+ defined(__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__) && \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/pom.xml b/pom.xml | |
index 0ee28a9..320c0c1 100644 | |
--- a/pom.xml | |
+++ b/pom.xml | |
@@ -49,9 +49,9 @@ | |
</dependency> | |
<dependency> | |
- <groupId>org.jvnet.hudson.plugins</groupId> | |
+ <groupId>org.jenkins-ci.plugins</groupId> |
OlderNewer