Skip to content

Commit 2fc311b

Browse files
committed
Releasing a snapshot
1 parent fcffc8c commit 2fc311b

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# pushy
2-
[![Build Status](https://travis-ci.org/kibu-australia/pushy.svg?branch=master)](https://travis-ci.org/kibu-australia/pushy)
32

4-
A Clojurescript library for quick and easy HTML5 pushState.
3+
A Clojurescript library for quick and easy HTML5 pushState. Fork of [the original](https://github.com/kibu-australia/pushy) which seems to no longer maintained.
54

65
## Install
76

8-
[![Clojars Project](http://clojars.org/kibu/pushy/latest-version.svg)](http://clojars.org/kibu/pushy)
7+
[![Clojars Project](https://img.shields.io/clojars/v/lifecheq/pushy.svg)](https://clojars.org/lifecheq/pushy)
98

109
## Usage
1110

project.clj

+13-10
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,33 @@
1-
(defproject kibu/pushy "0.3.8"
1+
(defproject lifecheq/pushy "0.3.9-SNAPSHOT"
22
:description "HTML5 pushState for Clojurescript"
3-
:url "https://github.com/kibu-australia/pushy"
3+
:url "https://github.com/lifecheq/pushy"
44
:license {:name "Eclipse Public License"
5-
:url "http://www.eclipse.org/legal/epl-v10.html"}
5+
:url "http://www.eclipse.org/legal/epl-v10.html"}
66

77
:dependencies [[org.clojure/clojure "1.8.0" :scope "provided"]
88
[org.clojure/clojurescript "1.9.494" :scope "provided"]]
99

1010
:aliases {"deploy" ["do" "clean," "deploy" "clojars"]
11-
"test" ["do" "clean," "with-profile" "dev" "cljsbuild" "test"]}
11+
"test" ["do" "clean," "with-profile" "dev" "cljsbuild" "test"]}
1212

1313
:lein-release {:deploy-via :shell
14-
:shell ["lein" "deploy"]}
14+
:shell ["lein" "deploy"]}
15+
16+
:deploy-repositories [["releases" {:sign-releases false :url "https://clojars.org/repo"}]
17+
["snapshots" {:sign-releases false :url "https://clojars.org/repo"}]]
1518

1619
:source-paths ["src"]
1720

1821
:profiles {:dev {:dependencies [[secretary "1.2.1"]]
19-
:plugins [[lein-cljsbuild "1.1.5"]
20-
[com.cemerick/clojurescript.test "0.3.3"]]
22+
:plugins [[lein-cljsbuild "1.1.5"]
23+
[com.cemerick/clojurescript.test "0.3.3"]]
2124

2225
:cljsbuild
2326
{:test-commands
2427
{"unit" ["phantomjs" :runner
2528
"target/unit-test.js"]}
2629
:builds
2730
{:test {:source-paths ["src" "test"]
28-
:compiler {:output-to "target/unit-test.js"
29-
:optimizations :whitespace
30-
:pretty-print true}}}}}})
31+
:compiler {:output-to "target/unit-test.js"
32+
:optimizations :whitespace
33+
:pretty-print true}}}}}})

0 commit comments

Comments
 (0)