Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François-René Rideau
reader-interception
Commits
0a56d857
Commit
0a56d857
authored
May 26, 2015
by
Francois-Rene Rideau
Browse files
1.0.0: update .asd files, bless as release.
parent
47bfd219
Changes
2
Hide whitespace changes
Inline
Side-by-side
reader-interception-test.asd
View file @
0a56d857
;;; -*- Mode: Lisp ; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
(
asdf:defsystem
:reader-interception-test
:depends-on
(
:reader-interception
:fare-utils
:hu.dwim.stefil
)
:components
((
:file
"reader-interception-test"
)))
(
defsystem
"reader-interception-test"
:version
"1.0.0"
:description
"tests for reader-interception"
:author
"Francois-Rene Rideau"
:license
"MIT"
:depends-on
(
"reader-interception"
"fare-utils"
"hu.dwim.stefil"
)
:components
((
:file
"reader-interception-test"
))
:perform
(
test-op
(
o
c
)
(
symbol-call
:reader-interception-test
:test-suite
)))
reader-interception.asd
View file @
0a56d857
;;; -*- Mode: Lisp ; Base: 10 ; Syntax: ANSI-Common-Lisp -*-
(
defsystem
:reader-interception
(
defsystem
"reader-interception"
:version
"1.0.0"
:description
"Intercept the reader to replace CL syntax with your own"
:components
((
:file
"reader-interception"
)))
(
defmethod
perform
((
op
test-op
)
(
system
(
eql
(
find-system
:reader-interception
))))
(
asdf:load-system
:reader-interception-test
)
(
funcall
(
asdf::find-symbol*
:test-suite
:reader-interception-test
)))
:author
"Francois-Rene Rideau"
:license
"MIT"
:components
((
:file
"reader-interception"
))
:in-order-to
((
test-op
(
test-op
"reader-interception-test"
))))
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment