├── ReactNativeWithClojureScript.pdf ├── Readme.md ├── WhatIsClojureScript.pdf └── atlclj ├── .gitignore ├── .natal ├── CHANGELOG.md ├── LICENSE ├── README.md ├── doc └── intro.md ├── native ├── .flowconfig ├── .gitignore ├── .watchmanconfig ├── index.ios.js ├── ios │ ├── Podfile │ ├── Podfile.lock │ ├── atlclj.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── atlclj.xcscheme │ ├── atlclj.xcworkspace │ │ └── contents.xcworkspacedata │ ├── atlclj │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ ├── atlcljTests │ │ ├── Info.plist │ │ └── atlcljTests.m │ └── peach.png └── package.json ├── project.clj ├── src └── atlclj │ └── core.cljs └── test └── atlclj └── core_test.clj /ReactNativeWithClojureScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/ReactNativeWithClojureScript.pdf -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/Readme.md -------------------------------------------------------------------------------- /WhatIsClojureScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/WhatIsClojureScript.pdf -------------------------------------------------------------------------------- /atlclj/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/.gitignore -------------------------------------------------------------------------------- /atlclj/.natal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/.natal -------------------------------------------------------------------------------- /atlclj/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/CHANGELOG.md -------------------------------------------------------------------------------- /atlclj/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/LICENSE -------------------------------------------------------------------------------- /atlclj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/README.md -------------------------------------------------------------------------------- /atlclj/doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/doc/intro.md -------------------------------------------------------------------------------- /atlclj/native/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/.flowconfig -------------------------------------------------------------------------------- /atlclj/native/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/.gitignore -------------------------------------------------------------------------------- /atlclj/native/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /atlclj/native/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/index.ios.js -------------------------------------------------------------------------------- /atlclj/native/ios/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | platform :ios, '8.0' 3 | 4 | pod "Ambly", "~> 0.6.0" 5 | -------------------------------------------------------------------------------- /atlclj/native/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/Podfile.lock -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj.xcodeproj/xcshareddata/xcschemes/atlclj.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj.xcodeproj/xcshareddata/xcschemes/atlclj.xcscheme -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj/AppDelegate.h -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj/AppDelegate.m -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj/Info.plist -------------------------------------------------------------------------------- /atlclj/native/ios/atlclj/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlclj/main.m -------------------------------------------------------------------------------- /atlclj/native/ios/atlcljTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlcljTests/Info.plist -------------------------------------------------------------------------------- /atlclj/native/ios/atlcljTests/atlcljTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/atlcljTests/atlcljTests.m -------------------------------------------------------------------------------- /atlclj/native/ios/peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/ios/peach.png -------------------------------------------------------------------------------- /atlclj/native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/native/package.json -------------------------------------------------------------------------------- /atlclj/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/project.clj -------------------------------------------------------------------------------- /atlclj/src/atlclj/core.cljs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/src/atlclj/core.cljs -------------------------------------------------------------------------------- /atlclj/test/atlclj/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/langford/ReactNativeWithClojureScriptPreso/HEAD/atlclj/test/atlclj/core_test.clj --------------------------------------------------------------------------------