Skip to content

Commit

Permalink
Version bump to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Yarulin committed Dec 29, 2015
1 parent ac75562 commit f58ac65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Set of useful helpers and wrappers around React Native for ClojureScript develop
``` clojure
(def root-component (core/class {:render #(components/text {:onPress (fn[](start-figwheel))} "Start figwheel")
:componentWillMount #(start-figwheel)}))
(core/register-component app-name (constantly root-component))
(core/register-component app-name (constantly root-component))
```

#### ktoa.components
Expand All @@ -36,7 +36,7 @@ Set of useful helpers and wrappers around React Native for ClojureScript develop
(switch nil nil)
(text nil "Hello"))
```
- This namespace currently exposes following wrapped with `element` React Native components:
- This namespace currently exposes following wrapped with `element` React Native components:
- activity-indicator-ios
- date-picker-ios
- drawer-layout-android
Expand Down Expand Up @@ -79,15 +79,15 @@ Using this namespace you can create figwheel bridge file. In your app create:
(start-repl {:app-name "RootViewRN" ;; same as your RCTRootView using
:base-url "http://localhost:3449/js"
:root-ns "app.core"})

;; cat project.clj

(defproject om-next-ios-pure "0.1.0"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/clojurescript "1.7.189"]
[figwheel-sidecar "0.5.0-SNAPSHOT"]
[com.cemerick/piggieback "0.2.1"]
[ktoa "0.0.1-SNAPSHOT"]]
[ktoa "0.0.2-SNAPSHOT"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-1"]]
:source-paths ["src"]
Expand Down Expand Up @@ -116,7 +116,7 @@ See [om-next-cross-platform-template](https://github.com/artemyarulin/om-next-cr

## Status

Early development, experimenting with right lib design. Integrating it with my app. Although I'm using Om-Next ktoa should be framework agnostick - if something doesn't work for your favorite one or you with to extend this lib - PR are very welcome!
Early development, experimenting with right lib design. Integrating it with my app. Although I'm using Om-Next ktoa should be framework agnostick - if something doesn't work for your favorite one or you with to extend this lib - PR are very welcome!

There are a lot of discussion happens in http://clojurians.net, on #cljsrn channel. Feel free to join

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject ktoa "0.0.1-SNAPSHOT"
(defproject ktoa "0.0.2-SNAPSHOT"
:description "Set of useful helpers and wrappers around React Native for ClojureScript development"
:url "https://github.com/artemyarulin/ktoa"
:license {:name "MIT License"
Expand Down

0 comments on commit f58ac65

Please sign in to comment.