From 24f1b018c68271931fe770472ce44da93a04e7c9 Mon Sep 17 00:00:00 2001 From: gmarik Date: Mon, 20 Feb 2012 13:33:49 -0600 Subject: [PATCH 1/3] LICENSE.txt - closes #141 --- LICENSE.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..003904d --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,7 @@ +Copyright (C) 2010 http://github.com/gmarik + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. From a910b88797ffd140771e367b5ce4e4d31ec68b9e Mon Sep 17 00:00:00 2001 From: gmarik Date: Mon, 20 Feb 2012 13:41:35 -0600 Subject: [PATCH 2/3] rename LICENSE.txt to LICENSE-MIT.txt --- LICENSE.txt => LICENSE-MIT.txt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LICENSE.txt => LICENSE-MIT.txt (100%) diff --git a/LICENSE.txt b/LICENSE-MIT.txt similarity index 100% rename from LICENSE.txt rename to LICENSE-MIT.txt From 03ed2bd39e37c5ff035c05197af81558eb5d8a89 Mon Sep 17 00:00:00 2001 From: gmarik Date: Mon, 5 Mar 2012 13:11:21 -0600 Subject: [PATCH 3/3] get rid of unused testing code --- test/vimrc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/test/vimrc b/test/vimrc index bb1451d..c52a05b 100644 --- a/test/vimrc +++ b/test/vimrc @@ -69,13 +69,3 @@ set wildignore+=*/.git/* " set wildignore+=*/doc/* au VimEnter * BundleInstall - -func! s:assert_bundles() abort - for b in g:bundles - if (!isdirectory(b.path().'/.git/')) - throw b.name.' not installed' - endif - endfor -endf - -call s:assert_bundles()