https://github.com/aki2o/caskxy.git
git clone 'git://github.com/aki2o/caskxy.git'
This is a extension of Emacs that controls Cask in Emacs.
Moreover, you can use Cask in Windows by using this extension.
2014/03/21 It's available by using melpa.
2014/03/21 It's available. But, master branch only.
(auto-install-from-url "https://raw.github.com/aki2o/caskxy/master/caskxy.el")
Download caskxy.el and put it on your load-path.
- In this case, you need to install each of the following dependency.
The following application is required. - Unix Shell Environment (e.g. Cygwin) - curl
Python is no need.
clone cask repository to $HOME/.cask
$ cd $HOME
$ git clone https://github.com/cask/cask.git .cask
download cask-cli.el of contrib to any location
$ curl -o ~/.emacs.d/cask-cli.el https://raw.github.com/aki2o/caskxy/master/contrib/cask-cli.el
set caskxy/cask-cli-path
.
(setq caskxy/cask-cli-path "~/.emacs.d/cask-cli.el")
do M-x caskxy/do-cask-command
and select “upgrade”. (It's equal to eval the following sexp.)
(caskxy/do-cask-command "upgrade")
(require 'caskxy)
;; Make config suit for you. About the config item, see Customization or eval the following sexp.
;; (customize-group "caskxy")
Use the following commands.
- caskxy/set-emacs-runtime
- caskxy/set-cask-file
- caskxy/set-tester-backend
For checking current condition, M-x caskxy/show-condition
.
M-x caskxy/do-cask-command
and select “install” means cask install
on shell.
M-x caskxy/run-test
.
If you want to use other test function, Use caskxy/add-tester-backend
.
About already defined test function, M-x caskxy/set-tester-backend
.
Enjoy!!!