commit 4ba01369d585178ac83ad147783f4be46705a1e7 Author: gered Date: Wed Apr 2 18:28:54 2014 -0400 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..79a263d --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +.DS_Store +/target +/classes +/checkouts +pom.xml +pom.xml.asc +*.jar +*.class +/.lein-* +/.nrepl-port +/*.project +/*.classpath +/.settings/ +*.iml +*.ipr +*.iws +/.idea/ \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8d9476f --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Gered King + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ca17c70 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +# clj-image2ascii + +Tools for turning images into ASCII equivalents. + +## Usage + +FIXME + +## License + +Distributed under the the MIT License. See LICENSE for more details. diff --git a/project.clj b/project.clj new file mode 100644 index 0000000..227e844 --- /dev/null +++ b/project.clj @@ -0,0 +1,8 @@ +(defproject clj-image2ascii "0.1.0-SNAPSHOT" + :description "Tools for turning images into ASCII equivalents." + :url "https://github.com/gered/clj-image2ascii" + :license {:name "MIT License" + :url "http://opensource.org/licenses/MIT"} + :dependencies [[org.clojure/clojure "1.5.1"]] + :source-paths ["src/clojure"] + :java-source-paths ["src/java"]) diff --git a/src/clojure/clj_image2ascii/core.clj b/src/clojure/clj_image2ascii/core.clj new file mode 100644 index 0000000..97d0d74 --- /dev/null +++ b/src/clojure/clj_image2ascii/core.clj @@ -0,0 +1,6 @@ +(ns clj-image2ascii.core) + +(defn foo + "I don't do a whole lot." + [x] + (println x "Hello, World!"))