Skip to content

Commit

Permalink
Initialize a leiningen project
Browse files Browse the repository at this point in the history
  • Loading branch information
skanev committed Mar 2, 2013
0 parents commit aa6fcdd
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/target
/lib
/classes
/checkouts
pom.xml
pom.xml.asc
*.jar
*.class
.lein-deps-sum
.lein-failures
.lein-plugins
.lein-repl-history
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# lectures

A Clojure library designed to ... well, that part is up to you.

## Usage

FIXME

## License

Copyright © 2013 FIXME

Distributed under the Eclipse Public License, the same as Clojure.
3 changes: 3 additions & 0 deletions doc/intro.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Introduction to lectures

TODO: write [great documentation](http://jacobian.org/writing/great-documentation/what-to-write/)
6 changes: 6 additions & 0 deletions project.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(defproject lectures "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.4.0"]])
6 changes: 6 additions & 0 deletions src/lectures/core.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(ns lectures.core)

(defn foo
"I don't do a whole lot."
[x]
(println x "Hello, World!"))
7 changes: 7 additions & 0 deletions test/lectures/core_test.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
(ns lectures.core-test
(:use clojure.test
lectures.core))

(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))

0 comments on commit aa6fcdd

Please sign in to comment.