Skip to content

Commit

Permalink
Problems with project file. Now everything works and it's shorter!
Browse files Browse the repository at this point in the history
  • Loading branch information
ericnormand committed Aug 12, 2011
1 parent 433ccc2 commit 1c75616
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/uberdoc.html
Original file line number Diff line number Diff line change
Expand Up @@ -2529,7 +2529,7 @@
})
</script><title>squarepeg -- Marginalia</title></head><body><table><tr><td class="docs"><div class="header"><h1 class="project-name">squarepeg</h1><h2 class="project-version">0.6.0</h2><br /><p>squarepeg is a PEG parser written in Clojure. It can
parse any sequence of data types, including lists and vectors.</p>
</div><div class="dependencies"><h3>dependencies</h3><table><tr><td class="dep-name">org.clojure/clojure</td><td class="dotted"><hr /></td><td class="dep-version">[1.2.0,)</td></tr></table></div><div class="dependencies"><h3>dev dependencies</h3><table><tr><td class="dep-name">leiningen/lein-swank</td><td class="dotted"><hr /></td><td class="dep-version">[1.1.0,)</td></tr><tr><td class="dep-name">swank-clojure</td><td class="dotted"><hr /></td><td class="dep-version">[1.2.0,)</td></tr><tr><td class="dep-name">lein-marginalia</td><td class="dotted"><hr /></td><td class="dep-version">0.6.0</td></tr></table></div></td><td class="codes" style="text-align: center; vertical-align: middle;color: #666;padding-right:20px"><br /><br /><br />(this space intentionally left almost blank)</td></tr><tr><td class="docs"><div class="toc"><a name="toc"><h3>namespaces</h3></a><ul><li><a href="#squarepeg">squarepeg</a></li><li><a href="#squarepeg.examples">squarepeg.examples</a></li><li><a href="#squarepeg.example-genclass">squarepeg.example-genclass</a></li></ul></div></td><td class="codes">&nbsp;</td></tr><tr><td class="docs"><div class="docs-header"><a class="anchor" href="#squarepeg" name="squarepeg"><h1 class="project-name">squarepeg</h1><a class="toc-link" href="#toc">toc</a></a></div></td><td class="codes" /></tr><tr><td class="docs"><p>Copyright (c) Eric Normand. All rights reserved.</p>
</div><div class="dependencies"><h3>dependencies</h3><table><tr><td class="dep-name">org.clojure/clojure</td><td class="dotted"><hr /></td><td class="dep-version">1.2.1</td></tr></table></div><div class="dependencies"><h3>dev dependencies</h3><table><tr><td class="dep-name">swank-clojure</td><td class="dotted"><hr /></td><td class="dep-version">1.2.0</td></tr><tr><td class="dep-name">lein-marginalia</td><td class="dotted"><hr /></td><td class="dep-version">0.6.0</td></tr></table></div></td><td class="codes" style="text-align: center; vertical-align: middle;color: #666;padding-right:20px"><br /><br /><br />(this space intentionally left almost blank)</td></tr><tr><td class="docs"><div class="toc"><a name="toc"><h3>namespaces</h3></a><ul><li><a href="#squarepeg">squarepeg</a></li><li><a href="#squarepeg.examples">squarepeg.examples</a></li><li><a href="#squarepeg.example-genclass">squarepeg.example-genclass</a></li></ul></div></td><td class="codes">&nbsp;</td></tr><tr><td class="docs"><div class="docs-header"><a class="anchor" href="#squarepeg" name="squarepeg"><h1 class="project-name">squarepeg</h1><a class="toc-link" href="#toc">toc</a></a></div></td><td class="codes" /></tr><tr><td class="docs"><p>Copyright (c) Eric Normand. All rights reserved.</p>

<p>The use and distribution terms for this software are covered by the
Eclipse Public License 1.0 <a href="http://opensource.org/licenses/eclipse-1.0.php">1</a> which can be found in the file
Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
;; [1]: http://opensource.org/licenses/eclipse-1.0.php
;;
;; You must not remove this notice, or any other, from this software.

(defproject squarepeg "0.6.0"
:description "squarepeg is a PEG parser written in Clojure. It can
parse any sequence of data types, including lists and vectors."

:dependencies [[org.clojure/clojure "[1.2.1]"]]
:dependencies [[org.clojure/clojure "1.2.1"]]

:dev-dependencies [[leiningen/lein-swank "[1.1.0,)"]
[swank-clojure "[1.2.0,)"]
:dev-dependencies [[swank-clojure "1.3.2"]
[lein-marginalia "0.6.0"]]

:aot [squarepeg.example-genclass])
1 change: 0 additions & 1 deletion test/squarepeg/test/combinators.clj
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@
(is (thrown? Exception (r6 [1 3 2])))
(defrule r7 1 #{(fn [b c] 0)})
(is (= 0 (r7 [1])))
(is (thrown? RuntimeException (eval '(defrule r8 #{(fn [b c] 0)}))))
(defrule r9
"abc" #{(fn [b c] 0)}
"xyz" #{(fn [b c] 1)})
Expand Down

0 comments on commit 1c75616

Please sign in to comment.