Skip to content

Commit 2287695

Browse files
committed
Add CONTRIBUTING.md.
1 parent 3acac4e commit 2287695

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

CONTRIBUTING.md

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Contributing to Mito
2+
3+
Mito is an open source project and we appreciate your help!
4+
5+
## Reporting bugs
6+
7+
Please [open an issue](https://github.com/fukamachi/mito/issues/new) at GitHub.
8+
9+
Good reports must include these informations:
10+
11+
- The full backtrace with your error
12+
- Minimum steps to reproduce it
13+
- Names and versions you are using: OS, Common Lisp implementation, RDBMS (MySQL, PostgreSQL or SQLite3), ASDF and Quicklisp dist
14+
15+
You can get informations about your environment by this code:
16+
17+
```common-lisp
18+
(flet ((put (k v &rest vs)
19+
(format t "~&~A: ~A~{ ~A~}~%" k v vs)))
20+
(put "Machine" (software-type) (software-version))
21+
(put "Lisp" (lisp-implementation-type) (lisp-implementation-version)
22+
#+(and sbcl (not sb-thread)) "(without threads)")
23+
(put "ASDF" (asdf:asdf-version))
24+
(let ((qlversion (ql:dist-version "quicklisp")))
25+
(put "Quicklisp" qlversion
26+
(if (string= (car (first (ql:available-dist-versions "quicklisp")))
27+
qlversion)
28+
"(latest)"
29+
"(update available)"))))
30+
;-> Machine: Darwin 15.2.0
31+
; Lisp: SBCL 1.3.1
32+
; ASDF: 3.1.5
33+
; Quicklisp: 2015-10-31 (latest)
34+
;=> NIL
35+
```

0 commit comments

Comments
 (0)