diff --git a/README.md b/README.md index eff7785..888aa0c 100755 --- a/README.md +++ b/README.md @@ -43,6 +43,12 @@ Python dependencies (kuso-python plugin) * jedi * epc +Ruby dependencies (kuso-ruby plugin) +------------------------------------ + * rb-readline + * Rake + * Bundle + HTML dependencies ----------------- * tidy diff --git a/TODO.org b/TODO.org index d838d5a..cb48dd3 100644 --- a/TODO.org +++ b/TODO.org @@ -6,3 +6,6 @@ * New Plugings ** TODO Add hs-minor-mode to the plugin mojor mode load hook ** TODO add the custom snippets path to yasnippet load path + +* Release +** TODO remove '-dev' suffix from executable filename diff --git a/install.sh b/install.sh index da31b17..27c9c07 100755 --- a/install.sh +++ b/install.sh @@ -80,7 +80,7 @@ while [ "$condition" == "1" ] ; do dotemacs=~/.kuso_dev repo=~/.kuso.d_dev condition="0" - executable=kuso-dev + executable=kuso fi if [ "$standalone" == "n" ] @@ -88,8 +88,7 @@ while [ "$condition" == "1" ] ; do dotemacs=~/.emacs repo=~/.emacs.d condition="0" - - executable=emacs-dev + executable=kuso fi done @@ -127,7 +126,7 @@ fi if [ "$standalone" == "" -o "$standalone" == "y" ] then info "Creating a link in globe PATH . . ." - sudo ln -s $repo/$executable /usr/bin/$executable + sudo ln -s $repo/$executable /usr/bin/$executable-dev chmod +x $repo/$executable fi @@ -147,4 +146,4 @@ sed "s,--REPO--,$repo,mg" -i $dotemacs # `which emacs` --batch -l $dotemacs #fi -echo -e "\nNow run `kuso` and have fun ;)" +echo -e "\nNow run 'kuso' and have fun ;)"