Skip to content

Commit

Permalink
Add Leiningen project structure, assets.
Browse files Browse the repository at this point in the history
  • Loading branch information
brunchboy committed Apr 24, 2016
1 parent c3cb20e commit fba89dd
Show file tree
Hide file tree
Showing 9 changed files with 170 additions and 114 deletions.
19 changes: 9 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
/target
/classes
/checkouts
pom.xml
pom.xml.asc
*jar
/lib/
/classes/
/target/
/checkouts/
.lein-deps-sum
.lein-repl-history
.lein-plugins/
.lein-failures
.nrepl-port
*.jar
*.class
/.lein-*
/.nrepl-port
.hgignore
.hg/
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## [Unreleased]
### Changed
- Add a new arity to `make-widget-async` to provide a different widget shape.

## [0.1.1] - 2016-04-23
### Changed
- Documentation on how to make the widgets.

### Removed
- `make-widget-sync` - we're all async, all the time.

### Fixed
- Fixed widget maker to keep working when daylight savings switches over.

## 0.1.0 - 2016-04-23
### Added
- Files from the new template.
- Widget maker public API - `make-widget-sync`.

[Unreleased]: https://github.com/your-name/dysentery/compare/0.1.1...HEAD
[0.1.1]: https://github.com/your-name/dysentery/compare/0.1.0...0.1.1
217 changes: 114 additions & 103 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ the same as Clojure. By using this software in any fashion, you are
agreeing to be bound by the terms of this license. You must not remove
this notice, or any other, from this software. A copy of the license
can be found in
[resources/public/epl-v10.html](https://rawgit.com/brunchboy/afterglow/master/resources/public/epl-v10.html)
[LICENSE](https://rawgit.com/brunchboy/dysentery/master/LICENSE)
within this project.
Binary file added doc/assets/DS-logo-bw-200-padded-left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 dysentery

TODO: write [great documentation](http://jacobian.org/writing/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 dysentery "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.8.0"]])
6 changes: 6 additions & 0 deletions src/dysentery/core.clj
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
(ns dysentery.core)

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

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

0 comments on commit fba89dd

Please sign in to comment.