diff options
Diffstat (limited to 'shoshimacs.org')
-rw-r--r-- | shoshimacs.org | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shoshimacs.org b/shoshimacs.org index 554cc3d..9861162 100644 --- a/shoshimacs.org +++ b/shoshimacs.org @@ -910,6 +910,20 @@ an API token is stored in my ~.authinfo~ file. (message "Pasted to %s (on kill ring)" url)))) #+end_src +** restclient + +#+begin_src emacs-lisp + (defvar restclien-repo "https://github.com/pashky/restclient.el.git") + (defvar restclient-dir "~/src/restclient.el") + + (unless (file-directory-p restclient-dir) + (shell-command + (format "git clone %s %s" restclient-repo restclient-dir))) + + (add-to-list 'load-path restclient-dir) + (require 'restclient) +#+end_src + * UI :PROPERTIES: :header-args:emacs-lisp: :noweb-ref user-interface :noweb-sep "\n\n" :results silent |