Skip to content

Commit dd7693e

Browse files
committed
Udated dependencies to boot2, cljs 1.7. and hoplon 6.0a11.
1 parent cae91c7 commit dd7693e

File tree

6 files changed

+52
-306
lines changed

6 files changed

+52
-306
lines changed

README.md

+19-20
Original file line numberDiff line numberDiff line change
@@ -9,35 +9,34 @@ A binary clock in Hoplon
99
- [leiningen][2]
1010

1111
## Usage
12+
### Development
13+
1. Start the `dev` task. In a terminal run:
14+
```bash
15+
$ boot dev
16+
```
17+
This will give you a Hoplon development setup with:
18+
- auto compilation on file changes
19+
- audible warning for compilation success or failures
20+
- auto reload the html page on changes
21+
- Clojurescript REPL
1222

13-
You'll probably want to have two terminals open in your project's
14-
directory.
23+
2. Go to [http://localhost:8000][3] in your browser. You should see "Hello, Hoplon!".
1524

16-
1. Start the auto-compiler.
25+
3. If you edit and save a file, the task will recompile the code and reload the
26+
browser to show the updated version.
1727

18-
```bash
19-
$ boot dev
20-
```
21-
22-
2. Open the compiled html file.
23-
24-
```bash
25-
$ cd resources/public
26-
$ open index.html
27-
```
28-
29-
3. You're already done.
28+
4. You're already done.
3029
3130
## License
32-
```
33-
Copyright © 2014, Paul Bauer
31+
32+
Copyright © 2014, 2015, Paul Bauer
3433
3534
The use and distribution terms for this software are covered by the Eclipse
3635
Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can
3736
be found in the file epl-v10.html at the root of this distribution. By using
3837
this software in any fashion, you are agreeing to be bound by the terms of
3938
this license. You must not remove this notice, or any other, from this software.
40-
```
4139
42-
[1]: https://github.com/tailrecursion/boot
43-
[2]: https://github.com/technomancy/leiningen
40+
[1]: http://boot-clj.com
41+
[2]: http://localhost:8000
42+
[3]: http://hoplon.io

resources/assets/screen.css assets/screen.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ a { color: #ccc; }
2424
margin: 0 20px 20px 0;
2525
text-align: center; }
2626
.off { background: #444; }
27-
.on { background: #44f; }
27+
.on { background: #44f; }

boot.properties

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#https://github.com/boot-clj/boot
2+
BOOT_CLOJURE_VERSION=1.7.0
3+
BOOT_VERSION=2.4.2

build.boot

100755100644
+26-21
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,35 @@
1-
#!/usr/bin/env boot
2-
3-
#tailrecursion.boot.core/version "2.3.1"
4-
51
(set-env!
6-
:project 'binary-clock
7-
:version "0.1.0-SNAPSHOT"
8-
:dependencies '[[tailrecursion/boot.task "2.1.2"]
9-
[tailrecursion/hoplon "5.5.1"]
10-
[org.clojure/clojurescript "0.0-2156"]]
11-
:out-path "resources/public"
12-
:src-paths #{"src"})
13-
14-
(add-sync! (get-env :out-path) #{"resources/assets"})
2+
:dependencies '[[adzerk/boot-cljs "1.7.170-3"]
3+
[adzerk/boot-reload "0.4.2"]
4+
[hoplon/boot-hoplon "0.1.10"]
5+
[hoplon/hoplon "6.0.0-alpha11"]
6+
[org.clojure/clojure "1.7.0"]
7+
[org.clojure/clojurescript "1.7.170"]
8+
[tailrecursion/boot-jetty "0.1.0"]]
9+
:source-paths #{"src"}
10+
:asset-paths #{"assets"})
1511

1612
(require
17-
['tailrecursion.hoplon.boot :refer :all]
18-
['tailrecursion.boot.task :refer :all])
13+
'[adzerk.boot-cljs :refer [cljs]]
14+
'[adzerk.boot-reload :refer [reload]]
15+
'[hoplon.boot-hoplon :refer [hoplon prerender]]
16+
'[tailrecursion.boot-jetty :refer [serve]])
1917

2018
(deftask dev
21-
"Build for development, implies watch"
19+
"Build binary-clock for local development."
2220
[]
23-
(comp (watch)
24-
(hoplon {:prerender false
25-
:pretty-print true})))
21+
(comp
22+
(watch)
23+
(speak)
24+
(hoplon)
25+
(reload)
26+
(cljs)
27+
(serve :port 8000)))
2628

2729
(deftask prod
28-
"Build for production"
30+
"Build binary-clock for production deployment."
2931
[]
30-
(hoplon {:optimizations :advanced}))
32+
(comp
33+
(hoplon)
34+
(cljs :optimizations :advanced)
35+
(prerender)))

epl-v10.html

-261
This file was deleted.

0 commit comments

Comments
 (0)