1 Star 0 Fork 0

common-lisp / clack

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
CONTRIBUTING.md 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
Eitaro Fukamachi 提交于 2015-12-16 15:41 . Add CONTRIBUTING.md.

Contributing to Clack

Clack is an open source project and we appreciate your help!

Reporting bugs

Please open an issue at GitHub.

Good reports must include these informations:

  • The full backtrace with your error
  • Minimum steps to reproduce it
  • Names and versions you are using: OS, Common Lisp implementation, ASDF and Quicklisp dist

You can get informations about your environment by this code:

(flet ((put (k v &rest vs)
         (format t "~&~A: ~A~{ ~A~}~%" k v vs)))
  (put "Machine" (software-type) (software-version))
  (put "Lisp" (lisp-implementation-type) (lisp-implementation-version)
       #+(and sbcl (not sb-thread)) "(without threads)")
  (put "ASDF" (asdf:asdf-version))
  (let ((qlversion (ql:dist-version "quicklisp")))
    (put "Quicklisp" qlversion
         (if (string= (car (first (ql:available-dist-versions "quicklisp")))
                      qlversion)
             "(latest)"
             "(update available)"))))
;-> Machine: Darwin 15.2.0
;   Lisp: SBCL 1.3.1
;   ASDF: 3.1.5
;   Quicklisp: 2015-10-31 (latest)
;=> NIL
Common Lisp
1
https://gitee.com/common-lisp/clack.git
git@gitee.com:common-lisp/clack.git
common-lisp
clack
clack
master

搜索帮助