├── .gitignore ├── CardsAgainstHumanityDemo ├── README.md ├── droidCardsAgainst │ ├── .gitignore │ ├── README.md │ ├── RiffleTest │ │ ├── .gitignore │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── exis │ │ │ │ │ └── riffletest │ │ │ │ │ └── ApplicationTest.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── exis │ │ │ │ │ └── riffletest │ │ │ │ │ ├── CLITester.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── exis │ │ │ │ └── cards │ │ │ │ └── cards │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ ├── LiberationSans-Bold.ttf │ │ │ │ ├── LiberationSans-Italic.ttf │ │ │ │ └── LiberationSans-Regular.ttf │ │ │ ├── gen │ │ │ │ └── io │ │ │ │ │ └── exis │ │ │ │ │ └── cards │ │ │ │ │ └── cards │ │ │ │ │ ├── BuildConfig.java │ │ │ │ │ ├── Manifest.java │ │ │ │ │ └── R.java │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── exis │ │ │ │ │ └── cards │ │ │ │ │ └── cards │ │ │ │ │ ├── Card.java │ │ │ │ │ ├── Dealer.java │ │ │ │ │ ├── Exec.java │ │ │ │ │ ├── GameActivity.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── NameActivity.java │ │ │ │ │ ├── Player.java │ │ │ │ │ └── RiffleTest.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── blur.png │ │ │ │ ├── gamelogo.png │ │ │ │ ├── play_button.xml │ │ │ │ └── progress_drawable.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_game.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── activity_name.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── raw │ │ │ │ ├── a1.txt │ │ │ │ ├── a10.txt │ │ │ │ ├── a11.txt │ │ │ │ ├── a12.txt │ │ │ │ ├── a13.txt │ │ │ │ ├── a14.txt │ │ │ │ ├── a15.txt │ │ │ │ ├── a2.txt │ │ │ │ ├── a3.txt │ │ │ │ ├── a4.txt │ │ │ │ ├── a5.txt │ │ │ │ ├── a6.txt │ │ │ │ ├── a7.txt │ │ │ │ ├── a8.txt │ │ │ │ ├── a9.txt │ │ │ │ ├── q1.txt │ │ │ │ ├── q2.txt │ │ │ │ ├── q3.txt │ │ │ │ ├── q4.txt │ │ │ │ ├── q5.txt │ │ │ │ └── q6.txt │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── exis │ │ │ └── cards │ │ │ └── cards │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ngCardsAgainst │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── config.xml │ ├── gulpfile.js │ ├── hooks │ │ ├── README.md │ │ └── after_prepare │ │ │ └── 010_add_platform_class.js │ ├── ionic.project │ ├── package.json │ ├── scss │ │ └── ionic.app.scss │ └── www │ │ ├── css │ │ └── style.css │ │ ├── img │ │ ├── exis-emblem.png │ │ ├── exis-logo.png │ │ ├── gamelogo-1.png │ │ ├── gamelogo-2.png │ │ └── gamelogo.png │ │ ├── index.html │ │ ├── js │ │ ├── app.js │ │ └── controllers │ │ │ ├── application.js │ │ │ └── room.js │ │ ├── lib │ │ ├── angular-animate │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-animate.js │ │ │ ├── angular-animate.min.js │ │ │ ├── angular-animate.min.js.map │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── angular-sanitize │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-sanitize.min.js.map │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── angular-ui-router │ │ │ ├── .bower.json │ │ │ ├── CHANGELOG.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── angular-ui-router.d.ts │ │ │ ├── bower.json │ │ │ ├── release │ │ │ │ ├── angular-ui-router.js │ │ │ │ └── angular-ui-router.min.js │ │ │ └── src │ │ │ │ ├── common.js │ │ │ │ ├── resolve.js │ │ │ │ ├── state.js │ │ │ │ ├── stateDirectives.js │ │ │ │ ├── stateFilters.js │ │ │ │ ├── templateFactory.js │ │ │ │ ├── urlMatcherFactory.js │ │ │ │ ├── urlRouter.js │ │ │ │ ├── view.js │ │ │ │ ├── viewDirective.js │ │ │ │ └── viewScroll.js │ │ ├── angular-wamp │ │ │ ├── .bower.json │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── package.json │ │ │ ├── release │ │ │ │ ├── angular-wamp.js │ │ │ │ └── angular-wamp.min.js │ │ │ ├── src │ │ │ │ └── angular-wamp.js │ │ │ └── www │ │ │ │ └── lib │ │ │ │ ├── angular │ │ │ │ ├── .bower.json │ │ │ │ ├── README.md │ │ │ │ ├── angular-csp.css │ │ │ │ ├── angular.js │ │ │ │ ├── angular.min.js │ │ │ │ ├── angular.min.js.gzip │ │ │ │ ├── angular.min.js.map │ │ │ │ ├── bower.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ │ └── autobahn │ │ │ │ ├── .S3UploadDone_0.9.8 │ │ │ │ ├── .S3UploadDone_latest │ │ │ │ ├── .bower.json │ │ │ │ ├── CHECKSUM.MD5 │ │ │ │ ├── CHECKSUM.SHA1 │ │ │ │ ├── CHECKSUM.SHA256 │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── autobahn.js │ │ │ │ ├── autobahn.min.jgz │ │ │ │ ├── autobahn.min.js │ │ │ │ └── bower.json │ │ ├── angular │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── angular-csp.css │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── angular.min.js.gzip │ │ │ ├── angular.min.js.map │ │ │ ├── bower.json │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── autobahn │ │ │ ├── .S3UploadDone_0.9.8 │ │ │ ├── .S3UploadDone_latest │ │ │ ├── .bower.json │ │ │ ├── CHECKSUM.MD5 │ │ │ ├── CHECKSUM.SHA1 │ │ │ ├── CHECKSUM.SHA256 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── autobahn.js │ │ │ ├── autobahn.min.jgz │ │ │ ├── autobahn.min.js │ │ │ └── bower.json │ │ └── ionic │ │ │ ├── .bower.json │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── ionic.css │ │ │ └── ionic.min.css │ │ │ ├── fonts │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ │ ├── js │ │ │ ├── ionic-angular.js │ │ │ ├── ionic-angular.min.js │ │ │ ├── ionic.bundle.js │ │ │ ├── ionic.bundle.min.js │ │ │ ├── ionic.js │ │ │ └── ionic.min.js │ │ │ └── scss │ │ │ ├── _action-sheet.scss │ │ │ ├── _animations.scss │ │ │ ├── _backdrop.scss │ │ │ ├── _badge.scss │ │ │ ├── _bar.scss │ │ │ ├── _button-bar.scss │ │ │ ├── _button.scss │ │ │ ├── _checkbox.scss │ │ │ ├── _form.scss │ │ │ ├── _grid.scss │ │ │ ├── _items.scss │ │ │ ├── _list.scss │ │ │ ├── _loading.scss │ │ │ ├── _menu.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _platform.scss │ │ │ ├── _popover.scss │ │ │ ├── _popup.scss │ │ │ ├── _progress.scss │ │ │ ├── _radio.scss │ │ │ ├── _range.scss │ │ │ ├── _refresher.scss │ │ │ ├── _reset.scss │ │ │ ├── _scaffolding.scss │ │ │ ├── _select.scss │ │ │ ├── _slide-box.scss │ │ │ ├── _spinner.scss │ │ │ ├── _tabs.scss │ │ │ ├── _toggle.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _util.scss │ │ │ ├── _variables.scss │ │ │ ├── ionic.scss │ │ │ └── ionicons │ │ │ ├── _ionicons-font.scss │ │ │ ├── _ionicons-icons.scss │ │ │ ├── _ionicons-variables.scss │ │ │ └── ionicons.scss │ │ └── templates │ │ ├── room.html │ │ └── splash.html └── swiftCardsAgainst │ ├── .gitignore │ ├── Backend │ ├── Room.swift │ └── main.swift │ ├── Bridging-Header.h │ ├── ExAgainst.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── Backend.xcscheme │ │ │ └── ExAgainst.xcscheme │ └── xcuserdata │ │ └── Damouse.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── ExAgainst.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── ExAgainst.xcscmblueprint │ └── xcuserdata │ │ └── Damouse.xcuserdatad │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ ├── ExAgainst │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Back.imageset │ │ │ ├── Contents.json │ │ │ ├── disclosure-1.png │ │ │ ├── disclosure-2.png │ │ │ └── disclosure.png │ │ ├── Contents.json │ │ └── Logo.imageset │ │ │ ├── Contents.json │ │ │ ├── gamelogo-1.png │ │ │ ├── gamelogo-2.png │ │ │ └── gamelogo.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── GameViewController.swift │ ├── Info.plist │ ├── LandingViewController.swift │ ├── Models.swift │ └── Views.swift │ ├── LiberationSans-Bold.ttf │ ├── LiberationSans-BoldItalic.ttf │ ├── LiberationSans-Italic.ttf │ ├── LiberationSans-Regular.ttf │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ ├── AFNetworking │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperation.m │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPRequestOperationManager.m │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFHTTPSessionManager.m │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworkReachabilityManager.m │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFSecurityPolicy.m │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLConnectionOperation.m │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLRequestSerialization.m │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLResponseSerialization.m │ │ │ ├── AFURLSessionManager.h │ │ │ └── AFURLSessionManager.m │ │ ├── LICENSE │ │ ├── README.md │ │ └── UIKit+AFNetworking │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.m │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.m │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.m │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.m │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.m │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.m │ │ │ ├── UIWebView+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.m │ ├── CocoaAsyncSocket │ │ ├── GCD │ │ │ ├── GCDAsyncSocket.h │ │ │ ├── GCDAsyncSocket.m │ │ │ ├── GCDAsyncUdpSocket.h │ │ │ └── GCDAsyncUdpSocket.m │ │ ├── README.markdown │ │ └── RunLoop │ │ │ ├── AsyncSocket.h │ │ │ ├── AsyncSocket.m │ │ │ ├── AsyncUdpSocket.h │ │ │ └── AsyncUdpSocket.m │ ├── GHODictionary │ │ ├── GHODictionary │ │ │ ├── GHODict.h │ │ │ ├── GHODict.m │ │ │ └── GHODictionary.h │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ └── Private │ │ │ ├── AFNetworking │ │ │ ├── AFHTTPRequestOperation.h │ │ │ ├── AFHTTPRequestOperationManager.h │ │ │ ├── AFHTTPSessionManager.h │ │ │ ├── AFNetworkActivityIndicatorManager.h │ │ │ ├── AFNetworkReachabilityManager.h │ │ │ ├── AFNetworking.h │ │ │ ├── AFSecurityPolicy.h │ │ │ ├── AFURLConnectionOperation.h │ │ │ ├── AFURLRequestSerialization.h │ │ │ ├── AFURLResponseSerialization.h │ │ │ ├── AFURLSessionManager.h │ │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ │ ├── UIAlertView+AFNetworking.h │ │ │ ├── UIButton+AFNetworking.h │ │ │ ├── UIImage+AFNetworking.h │ │ │ ├── UIImageView+AFNetworking.h │ │ │ ├── UIKit+AFNetworking.h │ │ │ ├── UIProgressView+AFNetworking.h │ │ │ ├── UIRefreshControl+AFNetworking.h │ │ │ └── UIWebView+AFNetworking.h │ │ │ ├── CocoaAsyncSocket │ │ │ ├── AsyncSocket.h │ │ │ ├── AsyncUdpSocket.h │ │ │ ├── GCDAsyncSocket.h │ │ │ └── GCDAsyncUdpSocket.h │ │ │ ├── GHODictionary │ │ │ ├── GHODict.h │ │ │ └── GHODictionary.h │ │ │ ├── IHKeyboardAvoiding │ │ │ └── IHKeyboardAvoiding.h │ │ │ ├── LTMorphingLabel │ │ │ └── LTMorphingLabel.h │ │ │ ├── M13ProgressSuite │ │ │ ├── M13ProgressConsole.h │ │ │ ├── M13ProgressHUD.h │ │ │ ├── M13ProgressView.h │ │ │ ├── M13ProgressViewBar.h │ │ │ ├── M13ProgressViewBorderedBar.h │ │ │ ├── M13ProgressViewFilteredImage.h │ │ │ ├── M13ProgressViewImage.h │ │ │ ├── M13ProgressViewLetterpress.h │ │ │ ├── M13ProgressViewMetro.h │ │ │ ├── M13ProgressViewMetroDotPolygon.h │ │ │ ├── M13ProgressViewPie.h │ │ │ ├── M13ProgressViewRadiative.h │ │ │ ├── M13ProgressViewRing.h │ │ │ ├── M13ProgressViewSegmentedBar.h │ │ │ ├── M13ProgressViewSegmentedRing.h │ │ │ ├── M13ProgressViewStripedBar.h │ │ │ ├── UIImage+ImageEffects.h │ │ │ └── UINavigationController+M13ProgressViewBar.h │ │ │ ├── MPMessagePack │ │ │ ├── MPDefines.h │ │ │ ├── MPDispatchRequest.h │ │ │ ├── MPMessagePack.h │ │ │ ├── MPMessagePackClient.h │ │ │ ├── MPMessagePackReader.h │ │ │ ├── MPMessagePackServer.h │ │ │ ├── MPMessagePackWriter.h │ │ │ ├── MPRPCProtocol.h │ │ │ ├── MPRequest.h │ │ │ ├── MPXPCClient.h │ │ │ ├── MPXPCProtocol.h │ │ │ ├── MPXPCService.h │ │ │ ├── NSArray+MPMessagePack.h │ │ │ ├── NSData+MPMessagePack.h │ │ │ ├── NSDictionary+MPMessagePack.h │ │ │ └── cmp.h │ │ │ ├── RMSwipeTableViewCell │ │ │ └── RMSwipeTableViewCell.h │ │ │ ├── Riffle │ │ │ ├── EXTKeyPathCoding.h │ │ │ ├── EXTRuntimeExtensions.h │ │ │ ├── EXTScope.h │ │ │ ├── MDWamp.h │ │ │ ├── MDWampAbort.h │ │ │ ├── MDWampAuthenticate.h │ │ │ ├── MDWampCall.h │ │ │ ├── MDWampCancel.h │ │ │ ├── MDWampChallenge.h │ │ │ ├── MDWampClientConfig.h │ │ │ ├── MDWampClientDelegate.h │ │ │ ├── MDWampConstants.h │ │ │ ├── MDWampError.h │ │ │ ├── MDWampEvent.h │ │ │ ├── MDWampGoodbye.h │ │ │ ├── MDWampHello.h │ │ │ ├── MDWampInterrupt.h │ │ │ ├── MDWampInvocation.h │ │ │ ├── MDWampMessage.h │ │ │ ├── MDWampMessageFactory.h │ │ │ ├── MDWampMessages.h │ │ │ ├── MDWampPublish.h │ │ │ ├── MDWampPublished.h │ │ │ ├── MDWampRegister.h │ │ │ ├── MDWampRegistered.h │ │ │ ├── MDWampResult.h │ │ │ ├── MDWampSerialization.h │ │ │ ├── MDWampSerializationJSON.h │ │ │ ├── MDWampSerializationMsgpack.h │ │ │ ├── MDWampSerializations.h │ │ │ ├── MDWampSubscribe.h │ │ │ ├── MDWampSubscribed.h │ │ │ ├── MDWampTransport.h │ │ │ ├── MDWampTransportDelegate.h │ │ │ ├── MDWampTransportRawSocket.h │ │ │ ├── MDWampTransportWebSocket.h │ │ │ ├── MDWampTransports.h │ │ │ ├── MDWampUnregister.h │ │ │ ├── MDWampUnregistered.h │ │ │ ├── MDWampUnsubscribe.h │ │ │ ├── MDWampUnsubscribed.h │ │ │ ├── MDWampWelcome.h │ │ │ ├── MDWampYield.h │ │ │ ├── MTLJSONAdapter.h │ │ │ ├── MTLModel+NSCoding.h │ │ │ ├── MTLModel.h │ │ │ ├── MTLReflection.h │ │ │ ├── MTLTransformerErrorHandling.h │ │ │ ├── MTLValueTransformer.h │ │ │ ├── Mantle.h │ │ │ ├── NSArray+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ │ ├── NSError+MTLModelException.h │ │ │ ├── NSMutableArray+MDStack.h │ │ │ ├── NSObject+MTLComparisonAdditions.h │ │ │ ├── NSString+MDString.h │ │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ │ ├── Riffle.h │ │ │ └── metamacros.h │ │ │ └── SocketRocket │ │ │ └── SRWebSocket.h │ ├── IHKeyboardAvoiding │ │ ├── Classes │ │ │ ├── IHKeyboardAvoiding.h │ │ │ └── IHKeyboardAvoiding.m │ │ ├── LICENSE │ │ └── README.md │ ├── LTMorphingLabel │ │ ├── LICENSE │ │ ├── LTMorphingLabel │ │ │ ├── LTCharacterLimbo.swift │ │ │ ├── LTEasing.swift │ │ │ ├── LTEmitterView.swift │ │ │ ├── LTMorphingEffect.swift │ │ │ ├── LTMorphingLabel+Anvil.swift │ │ │ ├── LTMorphingLabel+Burn.swift │ │ │ ├── LTMorphingLabel+Evaporate.swift │ │ │ ├── LTMorphingLabel+Fall.swift │ │ │ ├── LTMorphingLabel+Pixelate.swift │ │ │ ├── LTMorphingLabel+Sparkle.swift │ │ │ ├── LTMorphingLabel.h │ │ │ ├── LTMorphingLabel.swift │ │ │ ├── NSString+LTMorphingLabel.swift │ │ │ └── Particles │ │ │ │ ├── Fire.png │ │ │ │ ├── Fragment.png │ │ │ │ ├── Smoke.png │ │ │ │ └── Sparkle.png │ │ └── README.md │ ├── Local Podspecs │ │ ├── Riffle.podspec.json │ │ └── Spring.podspec.json │ ├── M13ProgressSuite │ │ ├── Classes │ │ │ ├── Console │ │ │ │ ├── M13ProgressConsole.h │ │ │ │ └── M13ProgressConsole.m │ │ │ ├── HUD │ │ │ │ ├── M13ProgressHUD.h │ │ │ │ ├── M13ProgressHUD.m │ │ │ │ ├── UIImage+ImageEffects.h │ │ │ │ └── UIImage+ImageEffects.m │ │ │ ├── NavigationController │ │ │ │ ├── UINavigationController+M13ProgressViewBar.h │ │ │ │ └── UINavigationController+M13ProgressViewBar.m │ │ │ └── ProgressViews │ │ │ │ ├── M13ProgressView.h │ │ │ │ ├── M13ProgressView.m │ │ │ │ ├── M13ProgressViewBar.h │ │ │ │ ├── M13ProgressViewBar.m │ │ │ │ ├── M13ProgressViewBorderedBar.h │ │ │ │ ├── M13ProgressViewBorderedBar.m │ │ │ │ ├── M13ProgressViewFilteredImage.h │ │ │ │ ├── M13ProgressViewFilteredImage.m │ │ │ │ ├── M13ProgressViewImage.h │ │ │ │ ├── M13ProgressViewImage.m │ │ │ │ ├── M13ProgressViewLetterpress.h │ │ │ │ ├── M13ProgressViewLetterpress.m │ │ │ │ ├── M13ProgressViewMetro.h │ │ │ │ ├── M13ProgressViewMetro.m │ │ │ │ ├── M13ProgressViewMetroDotPolygon.h │ │ │ │ ├── M13ProgressViewMetroDotPolygon.m │ │ │ │ ├── M13ProgressViewPie.h │ │ │ │ ├── M13ProgressViewPie.m │ │ │ │ ├── M13ProgressViewRadiative.h │ │ │ │ ├── M13ProgressViewRadiative.m │ │ │ │ ├── M13ProgressViewRing.h │ │ │ │ ├── M13ProgressViewRing.m │ │ │ │ ├── M13ProgressViewSegmentedBar.h │ │ │ │ ├── M13ProgressViewSegmentedBar.m │ │ │ │ ├── M13ProgressViewSegmentedRing.h │ │ │ │ ├── M13ProgressViewSegmentedRing.m │ │ │ │ ├── M13ProgressViewStripedBar.h │ │ │ │ └── M13ProgressViewStripedBar.m │ │ └── README.md │ ├── MPMessagePack │ │ ├── LICENSE │ │ ├── MPMessagePack │ │ │ ├── MPDefines.h │ │ │ ├── MPMessagePack.h │ │ │ ├── MPMessagePackReader.h │ │ │ ├── MPMessagePackReader.m │ │ │ ├── MPMessagePackWriter.h │ │ │ ├── MPMessagePackWriter.m │ │ │ ├── NSArray+MPMessagePack.h │ │ │ ├── NSArray+MPMessagePack.m │ │ │ ├── NSData+MPMessagePack.h │ │ │ ├── NSData+MPMessagePack.m │ │ │ ├── NSDictionary+MPMessagePack.h │ │ │ ├── NSDictionary+MPMessagePack.m │ │ │ ├── cmp.c │ │ │ └── cmp.h │ │ ├── README.md │ │ ├── RPC │ │ │ ├── MPDispatchRequest.h │ │ │ ├── MPDispatchRequest.m │ │ │ ├── MPMessagePackClient.h │ │ │ ├── MPMessagePackClient.m │ │ │ ├── MPMessagePackServer.h │ │ │ ├── MPMessagePackServer.m │ │ │ ├── MPRPCProtocol.h │ │ │ ├── MPRPCProtocol.m │ │ │ ├── MPRequest.h │ │ │ └── MPRequest.m │ │ └── XPC │ │ │ ├── MPXPCClient.h │ │ │ ├── MPXPCClient.m │ │ │ ├── MPXPCProtocol.h │ │ │ ├── MPXPCProtocol.m │ │ │ ├── MPXPCService.h │ │ │ └── MPXPCService.m │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ ├── Pods-Backend-Riffle.xcscheme │ │ │ │ └── Pods-ExAgainst-Riffle.xcscheme │ │ └── xcuserdata │ │ │ └── Damouse.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── IHKeyboardAvoiding.xcscheme │ │ │ ├── LTMorphingLabel.xcscheme │ │ │ ├── M13ProgressSuite.xcscheme │ │ │ ├── Pods-Backend-AFNetworking.xcscheme │ │ │ ├── Pods-Backend-CocoaAsyncSocket.xcscheme │ │ │ ├── Pods-Backend-GHODictionary.xcscheme │ │ │ ├── Pods-Backend-MPMessagePack.xcscheme │ │ │ ├── Pods-Backend-Riffle.xcscheme │ │ │ ├── Pods-Backend-SocketRocket.xcscheme │ │ │ ├── Pods-Backend.xcscheme │ │ │ ├── Pods-ExAgainst-AFNetworking.xcscheme │ │ │ ├── Pods-ExAgainst-CocoaAsyncSocket.xcscheme │ │ │ ├── Pods-ExAgainst-GHODictionary.xcscheme │ │ │ ├── Pods-ExAgainst-MPMessagePack.xcscheme │ │ │ ├── Pods-ExAgainst-Riffle.xcscheme │ │ │ ├── Pods-ExAgainst-SocketRocket.xcscheme │ │ │ ├── Pods-ExAgainst.xcscheme │ │ │ ├── RMSwipeTableViewCell.xcscheme │ │ │ ├── Spring.xcscheme │ │ │ └── xcschememanagement.plist │ ├── RMSwipeTableViewCell │ │ ├── LICENSE │ │ ├── README.md │ │ ├── RMSwipeTableViewCell.h │ │ └── RMSwipeTableViewCell.m │ ├── Riffle │ │ ├── LICENSE │ │ ├── Pod │ │ │ └── Classes │ │ │ │ ├── Auth.swift │ │ │ │ ├── BaseModel.swift │ │ │ │ ├── Connection.swift │ │ │ │ ├── ConverterExtensions.swift │ │ │ │ ├── Cumin.swift │ │ │ │ ├── Deferred.swift │ │ │ │ ├── Domain.swift │ │ │ │ ├── GenericWrappers.swift │ │ │ │ ├── MTLJSONAdapter.h │ │ │ │ ├── MTLJSONAdapter.m │ │ │ │ ├── MTLModel+NSCoding.h │ │ │ │ ├── MTLModel+NSCoding.m │ │ │ │ ├── MTLModel.h │ │ │ │ ├── MTLModel.m │ │ │ │ ├── MTLReflection.h │ │ │ │ ├── MTLReflection.m │ │ │ │ ├── MTLTransformerErrorHandling.h │ │ │ │ ├── MTLTransformerErrorHandling.m │ │ │ │ ├── MTLValueTransformer.h │ │ │ │ ├── MTLValueTransformer.m │ │ │ │ ├── Mantle.h │ │ │ │ ├── NSArray+MTLManipulationAdditions.h │ │ │ │ ├── NSArray+MTLManipulationAdditions.m │ │ │ │ ├── NSDictionary+MTLJSONKeyPath.h │ │ │ │ ├── NSDictionary+MTLJSONKeyPath.m │ │ │ │ ├── NSDictionary+MTLManipulationAdditions.h │ │ │ │ ├── NSDictionary+MTLManipulationAdditions.m │ │ │ │ ├── NSDictionary+MTLMappingAdditions.h │ │ │ │ ├── NSDictionary+MTLMappingAdditions.m │ │ │ │ ├── NSError+MTLModelException.h │ │ │ │ ├── NSError+MTLModelException.m │ │ │ │ ├── NSObject+MTLComparisonAdditions.h │ │ │ │ ├── NSObject+MTLComparisonAdditions.m │ │ │ │ ├── NSValueTransformer+MTLInversionAdditions.h │ │ │ │ ├── NSValueTransformer+MTLInversionAdditions.m │ │ │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.h │ │ │ │ ├── NSValueTransformer+MTLPredefinedTransformerAdditions.m │ │ │ │ ├── Riffle.h │ │ │ │ ├── Riffle.swift │ │ │ │ ├── Utils.swift │ │ │ │ ├── extobjc │ │ │ │ ├── EXTKeyPathCoding.h │ │ │ │ ├── EXTRuntimeExtensions.h │ │ │ │ ├── EXTRuntimeExtensions.m │ │ │ │ ├── EXTScope.h │ │ │ │ ├── EXTScope.m │ │ │ │ └── metamacros.h │ │ │ │ └── src │ │ │ │ ├── Categories │ │ │ │ ├── NSMutableArray+MDStack.h │ │ │ │ ├── NSMutableArray+MDStack.m │ │ │ │ ├── NSString+MDString.h │ │ │ │ └── NSString+MDString.m │ │ │ │ ├── MDWamp.h │ │ │ │ ├── MDWamp.m │ │ │ │ ├── MDWampClientConfig.h │ │ │ │ ├── MDWampClientConfig.m │ │ │ │ ├── MDWampClientDelegate.h │ │ │ │ ├── MDWampConstants.h │ │ │ │ ├── MDWampConstants.m │ │ │ │ ├── MDWampMessages │ │ │ │ ├── MDWampAbort.h │ │ │ │ ├── MDWampAbort.m │ │ │ │ ├── MDWampAuthenticate.h │ │ │ │ ├── MDWampAuthenticate.m │ │ │ │ ├── MDWampCall.h │ │ │ │ ├── MDWampCall.m │ │ │ │ ├── MDWampCancel.h │ │ │ │ ├── MDWampCancel.m │ │ │ │ ├── MDWampChallenge.h │ │ │ │ ├── MDWampChallenge.m │ │ │ │ ├── MDWampError.h │ │ │ │ ├── MDWampError.m │ │ │ │ ├── MDWampEvent.h │ │ │ │ ├── MDWampEvent.m │ │ │ │ ├── MDWampGoodbye.h │ │ │ │ ├── MDWampGoodbye.m │ │ │ │ ├── MDWampHello.h │ │ │ │ ├── MDWampHello.m │ │ │ │ ├── MDWampInterrupt.h │ │ │ │ ├── MDWampInterrupt.m │ │ │ │ ├── MDWampInvocation.h │ │ │ │ ├── MDWampInvocation.m │ │ │ │ ├── MDWampMessage.h │ │ │ │ ├── MDWampMessageFactory.h │ │ │ │ ├── MDWampMessageFactory.m │ │ │ │ ├── MDWampMessages.h │ │ │ │ ├── MDWampPublish.h │ │ │ │ ├── MDWampPublish.m │ │ │ │ ├── MDWampPublished.h │ │ │ │ ├── MDWampPublished.m │ │ │ │ ├── MDWampRegister.h │ │ │ │ ├── MDWampRegister.m │ │ │ │ ├── MDWampRegistered.h │ │ │ │ ├── MDWampRegistered.m │ │ │ │ ├── MDWampResult.h │ │ │ │ ├── MDWampResult.m │ │ │ │ ├── MDWampSubscribe.h │ │ │ │ ├── MDWampSubscribe.m │ │ │ │ ├── MDWampSubscribed.h │ │ │ │ ├── MDWampSubscribed.m │ │ │ │ ├── MDWampUnregister.h │ │ │ │ ├── MDWampUnregister.m │ │ │ │ ├── MDWampUnregistered.h │ │ │ │ ├── MDWampUnregistered.m │ │ │ │ ├── MDWampUnsubscribe.h │ │ │ │ ├── MDWampUnsubscribe.m │ │ │ │ ├── MDWampUnsubscribed.h │ │ │ │ ├── MDWampUnsubscribed.m │ │ │ │ ├── MDWampWelcome.h │ │ │ │ ├── MDWampWelcome.m │ │ │ │ ├── MDWampYield.h │ │ │ │ └── MDWampYield.m │ │ │ │ ├── MDWampSerializations │ │ │ │ ├── MDWampSerialization.h │ │ │ │ ├── MDWampSerializationJSON.h │ │ │ │ ├── MDWampSerializationJSON.m │ │ │ │ ├── MDWampSerializationMsgpack.h │ │ │ │ ├── MDWampSerializationMsgpack.m │ │ │ │ └── MDWampSerializations.h │ │ │ │ └── MDWampTransports │ │ │ │ ├── MDWampTransport.h │ │ │ │ ├── MDWampTransportDelegate.h │ │ │ │ ├── MDWampTransportRawSocket.h │ │ │ │ ├── MDWampTransportRawSocket.m │ │ │ │ ├── MDWampTransportWebSocket.h │ │ │ │ ├── MDWampTransportWebSocket.m │ │ │ │ └── MDWampTransports.h │ │ └── README.md │ ├── SocketRocket │ │ ├── LICENSE │ │ ├── README.rst │ │ └── SocketRocket │ │ │ ├── SRWebSocket.h │ │ │ └── SRWebSocket.m │ ├── Spring │ │ ├── LICENSE │ │ ├── README.md │ │ ├── Spring │ │ │ ├── AsyncButton.swift │ │ │ ├── AsyncImageView.swift │ │ │ ├── AutoTextView.swift │ │ │ ├── BlurView.swift │ │ │ ├── DesignableButton.swift │ │ │ ├── DesignableImageView.swift │ │ │ ├── DesignableLabel.swift │ │ │ ├── DesignableTabBarController.swift │ │ │ ├── DesignableTextField.swift │ │ │ ├── DesignableTextView.swift │ │ │ ├── DesignableView.swift │ │ │ ├── ImageLoader.swift │ │ │ ├── KeyboardLayoutConstraint.swift │ │ │ ├── LoadingView.swift │ │ │ ├── LoadingView.xib │ │ │ ├── Misc.swift │ │ │ ├── SoundPlayer.swift │ │ │ ├── Spring.swift │ │ │ ├── SpringAnimation.swift │ │ │ ├── SpringButton.swift │ │ │ ├── SpringImageView.swift │ │ │ ├── SpringLabel.swift │ │ │ ├── SpringTextField.swift │ │ │ ├── SpringTextView.swift │ │ │ ├── SpringView.swift │ │ │ ├── TransitionManager.swift │ │ │ ├── TransitionZoom.swift │ │ │ └── UnwindSegue.swift │ │ └── SpringApp │ │ │ └── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── appicon@120-1.png │ │ │ ├── appicon@120.png │ │ │ ├── appicon@152.png │ │ │ ├── appicon@180.png │ │ │ ├── appicon@29.png │ │ │ ├── appicon@40.png │ │ │ ├── appicon@58-1.png │ │ │ ├── appicon@58.png │ │ │ ├── appicon@76.png │ │ │ ├── appicon@80-1.png │ │ │ ├── appicon@80.png │ │ │ └── appicon@87.png │ │ │ ├── icon-shape.imageset │ │ │ ├── Contents.json │ │ │ └── icon-shape.pdf │ │ │ └── loading.imageset │ │ │ ├── Contents.json │ │ │ └── loading.pdf │ └── Target Support Files │ │ ├── IHKeyboardAvoiding │ │ ├── IHKeyboardAvoiding-dummy.m │ │ ├── IHKeyboardAvoiding-prefix.pch │ │ ├── IHKeyboardAvoiding-umbrella.h │ │ ├── IHKeyboardAvoiding.modulemap │ │ ├── IHKeyboardAvoiding.xcconfig │ │ └── Info.plist │ │ ├── LTMorphingLabel │ │ ├── Info.plist │ │ ├── LTMorphingLabel-dummy.m │ │ ├── LTMorphingLabel-prefix.pch │ │ ├── LTMorphingLabel-umbrella.h │ │ ├── LTMorphingLabel.modulemap │ │ └── LTMorphingLabel.xcconfig │ │ ├── M13ProgressSuite │ │ ├── Info.plist │ │ ├── M13ProgressSuite-dummy.m │ │ ├── M13ProgressSuite-prefix.pch │ │ ├── M13ProgressSuite-umbrella.h │ │ ├── M13ProgressSuite.modulemap │ │ └── M13ProgressSuite.xcconfig │ │ ├── Pods-Backend-AFNetworking │ │ ├── Info.plist │ │ ├── Pods-Backend-AFNetworking-dummy.m │ │ ├── Pods-Backend-AFNetworking-prefix.pch │ │ ├── Pods-Backend-AFNetworking-umbrella.h │ │ ├── Pods-Backend-AFNetworking.modulemap │ │ └── Pods-Backend-AFNetworking.xcconfig │ │ ├── Pods-Backend-CocoaAsyncSocket │ │ ├── Info.plist │ │ ├── Pods-Backend-CocoaAsyncSocket-dummy.m │ │ ├── Pods-Backend-CocoaAsyncSocket-prefix.pch │ │ ├── Pods-Backend-CocoaAsyncSocket-umbrella.h │ │ ├── Pods-Backend-CocoaAsyncSocket.modulemap │ │ └── Pods-Backend-CocoaAsyncSocket.xcconfig │ │ ├── Pods-Backend-GHODictionary │ │ ├── Info.plist │ │ ├── Pods-Backend-GHODictionary-dummy.m │ │ ├── Pods-Backend-GHODictionary-prefix.pch │ │ ├── Pods-Backend-GHODictionary-umbrella.h │ │ ├── Pods-Backend-GHODictionary.modulemap │ │ └── Pods-Backend-GHODictionary.xcconfig │ │ ├── Pods-Backend-MPMessagePack │ │ ├── Info.plist │ │ ├── Pods-Backend-MPMessagePack-dummy.m │ │ ├── Pods-Backend-MPMessagePack-prefix.pch │ │ ├── Pods-Backend-MPMessagePack-umbrella.h │ │ ├── Pods-Backend-MPMessagePack.modulemap │ │ └── Pods-Backend-MPMessagePack.xcconfig │ │ ├── Pods-Backend-Riffle │ │ ├── Info.plist │ │ ├── Pods-Backend-Riffle-dummy.m │ │ ├── Pods-Backend-Riffle-prefix.pch │ │ ├── Pods-Backend-Riffle-umbrella.h │ │ ├── Pods-Backend-Riffle.modulemap │ │ └── Pods-Backend-Riffle.xcconfig │ │ ├── Pods-Backend-SocketRocket │ │ ├── Info.plist │ │ ├── Pods-Backend-SocketRocket-dummy.m │ │ ├── Pods-Backend-SocketRocket-prefix.pch │ │ ├── Pods-Backend-SocketRocket-umbrella.h │ │ ├── Pods-Backend-SocketRocket.modulemap │ │ └── Pods-Backend-SocketRocket.xcconfig │ │ ├── Pods-Backend │ │ ├── Info.plist │ │ ├── Pods-Backend-acknowledgements.markdown │ │ ├── Pods-Backend-acknowledgements.plist │ │ ├── Pods-Backend-dummy.m │ │ ├── Pods-Backend-frameworks.sh │ │ ├── Pods-Backend-resources.sh │ │ ├── Pods-Backend-umbrella.h │ │ ├── Pods-Backend.debug.xcconfig │ │ ├── Pods-Backend.modulemap │ │ └── Pods-Backend.release.xcconfig │ │ ├── Pods-ExAgainst-AFNetworking │ │ ├── Info.plist │ │ ├── Pods-ExAgainst-AFNetworking-dummy.m │ │ ├── Pods-ExAgainst-AFNetworking-prefix.pch │ │ ├── Pods-ExAgainst-AFNetworking-umbrella.h │ │ ├── Pods-ExAgainst-AFNetworking.modulemap │ │ └── Pods-ExAgainst-AFNetworking.xcconfig │ │ ├── Pods-ExAgainst-CocoaAsyncSocket │ │ ├── Info.plist │ │ ├── Pods-ExAgainst-CocoaAsyncSocket-dummy.m │ │ ├── Pods-ExAgainst-CocoaAsyncSocket-prefix.pch │ │ ├── Pods-ExAgainst-CocoaAsyncSocket-umbrella.h │ │ ├── Pods-ExAgainst-CocoaAsyncSocket.modulemap │ │ └── Pods-ExAgainst-CocoaAsyncSocket.xcconfig │ │ ├── Pods-ExAgainst-GHODictionary │ │ ├── Info.plist │ │ ├── Pods-ExAgainst-GHODictionary-dummy.m │ │ ├── Pods-ExAgainst-GHODictionary-prefix.pch │ │ ├── Pods-ExAgainst-GHODictionary-umbrella.h │ │ ├── Pods-ExAgainst-GHODictionary.modulemap │ │ └── Pods-ExAgainst-GHODictionary.xcconfig │ │ ├── Pods-ExAgainst-MPMessagePack │ │ ├── Info.plist │ │ ├── Pods-ExAgainst-MPMessagePack-dummy.m │ │ ├── Pods-ExAgainst-MPMessagePack-prefix.pch │ │ ├── Pods-ExAgainst-MPMessagePack-umbrella.h │ │ ├── Pods-ExAgainst-MPMessagePack.modulemap │ │ └── Pods-ExAgainst-MPMessagePack.xcconfig │ │ ├── Pods-ExAgainst-Riffle │ │ ├── Info.plist │ │ ├── Pods-ExAgainst-Riffle-dummy.m │ │ ├── Pods-ExAgainst-Riffle-prefix.pch │ │ ├── Pods-ExAgainst-Riffle-umbrella.h │ │ ├── Pods-ExAgainst-Riffle.modulemap │ │ └── Pods-ExAgainst-Riffle.xcconfig │ │ ├── Pods-ExAgainst-SocketRocket │ │ ├── Info.plist │ │ ├── Pods-ExAgainst-SocketRocket-dummy.m │ │ ├── Pods-ExAgainst-SocketRocket-prefix.pch │ │ ├── Pods-ExAgainst-SocketRocket-umbrella.h │ │ ├── Pods-ExAgainst-SocketRocket.modulemap │ │ └── Pods-ExAgainst-SocketRocket.xcconfig │ │ ├── Pods-ExAgainst │ │ ├── Info.plist │ │ ├── Pods-ExAgainst-acknowledgements.markdown │ │ ├── Pods-ExAgainst-acknowledgements.plist │ │ ├── Pods-ExAgainst-dummy.m │ │ ├── Pods-ExAgainst-frameworks.sh │ │ ├── Pods-ExAgainst-resources.sh │ │ ├── Pods-ExAgainst-umbrella.h │ │ ├── Pods-ExAgainst.debug.xcconfig │ │ ├── Pods-ExAgainst.modulemap │ │ └── Pods-ExAgainst.release.xcconfig │ │ ├── RMSwipeTableViewCell │ │ ├── Info.plist │ │ ├── RMSwipeTableViewCell-dummy.m │ │ ├── RMSwipeTableViewCell-prefix.pch │ │ ├── RMSwipeTableViewCell-umbrella.h │ │ ├── RMSwipeTableViewCell.modulemap │ │ └── RMSwipeTableViewCell.xcconfig │ │ └── Spring │ │ ├── Info.plist │ │ ├── Spring-dummy.m │ │ ├── Spring-prefix.pch │ │ ├── Spring-umbrella.h │ │ ├── Spring.modulemap │ │ └── Spring.xcconfig │ ├── README.md │ ├── a13.json │ ├── a21.json │ ├── q13.json │ └── q21.json ├── Godeps ├── Makefile ├── README.md ├── arbiter ├── README.md ├── __init__.py ├── arbiter.py ├── exampler.py ├── generator.js ├── genjs.js ├── genlang.js ├── genpy.js ├── render.js ├── repl.py ├── repler │ ├── browser-generate.sh │ ├── browser-run.sh │ ├── nodejs-run.sh │ ├── nodejs-stub.sh │ ├── python-run.sh │ └── swift-run.sh ├── runnode.py └── test.sh ├── core ├── LICENSE ├── README.md ├── androidMantle │ └── main.go ├── app.go ├── app_test.go ├── cMantle │ └── main.go ├── coverage.sh ├── cumin.go ├── cumin_test.go ├── doc.go ├── domain.go ├── domain_test.go ├── endpoint.go ├── endpoint_test.go ├── errors.go ├── jsMantle │ └── main.go ├── log.go ├── log_test.go ├── manthelper.go ├── message.go ├── model.go ├── pyMantle │ └── main.go ├── riffle │ ├── app.go │ ├── domain.go │ ├── domain_test.go │ ├── examples │ │ ├── client.go │ │ ├── server.go │ │ ├── test_backend.go │ │ └── test_client.go │ ├── model.go │ ├── options.go │ └── utils.go ├── security.go ├── serialize.go ├── serialize_test.go ├── shared │ └── connection.go ├── util.go └── util_test.go ├── java ├── RifflePub │ └── .idea │ │ └── workspace.xml ├── chatDemo │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── luke │ │ │ │ └── com │ │ │ │ └── rifflepub │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── luke │ │ │ │ │ └── com │ │ │ │ │ └── rifflepub │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── button.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── list_item.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── luke │ │ │ └── com │ │ │ └── rifflepub │ │ │ └── ExampleUnitTest.java │ ├── backend │ │ ├── backend.html │ │ └── backend.html~ │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── droidRiffle │ ├── .gitignore │ ├── README.md │ ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── exis │ │ │ └── droidriffle │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── exis │ │ │ │ └── droidriffle │ │ │ │ ├── Dog.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── Native.java │ │ ├── jniLibs │ │ │ └── armeabi-v7a │ │ │ │ └── libmeth.h │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── content_main.xml │ │ │ ├── menu │ │ │ └── menu_main.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── exis │ │ └── droidriffle │ │ └── ExampleUnitTest.java │ ├── backend │ ├── .gitignore │ ├── backend.iml │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── example │ │ ├── Backend.java │ │ ├── Model.java │ │ └── Testing.java │ ├── build.gradle │ ├── droidRiffle.iml │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── riffle │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── riffle.iml │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── exis │ │ │ └── riffle │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── exis │ │ │ │ └── riffle │ │ │ │ ├── AppDomain.java │ │ │ │ ├── CallDeferred.java │ │ │ │ ├── Deferred.java │ │ │ │ ├── Domain.java │ │ │ │ ├── Model.java │ │ │ │ ├── Native.java │ │ │ │ ├── Riffle.java │ │ │ │ ├── Utils.java │ │ │ │ └── cumin │ │ │ │ ├── Cumin.java │ │ │ │ └── Handler.java │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── exis │ │ └── androidriffle │ │ └── ExampleUnitTest.java │ ├── scaffolder.py │ └── settings.gradle ├── js ├── README.md ├── angularSeed │ ├── .bowerrc │ ├── .gitignore │ ├── .jshintrc │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── app │ │ ├── app.css │ │ ├── app.js │ │ ├── components │ │ │ └── version │ │ │ │ ├── interpolate-filter.js │ │ │ │ ├── interpolate-filter_test.js │ │ │ │ ├── version-directive.js │ │ │ │ ├── version-directive_test.js │ │ │ │ ├── version.js │ │ │ │ └── version_test.js │ │ ├── index-async.html │ │ ├── index.html │ │ ├── view1 │ │ │ ├── view1.html │ │ │ ├── view1.js │ │ │ └── view1_test.js │ │ └── view2 │ │ │ ├── view2.html │ │ │ ├── view2.js │ │ │ └── view2_test.js │ ├── bower.json │ ├── e2e-tests │ │ ├── protractor.conf.js │ │ └── scenarios.js │ ├── karma.conf.js │ └── package.json ├── example │ ├── client.js │ ├── definitions-models.js │ ├── definitions-recv.js │ ├── definitions-send.js │ ├── package.json │ ├── reg-backend.js │ ├── reg-client.js │ ├── repl-template.js │ ├── server.js │ ├── stub.js │ ├── sub-backend.js │ ├── sub-client.js │ ├── test-backend.js │ ├── test-client.js │ ├── test-restart-backend.js │ ├── test-restart-client.js │ ├── tour-basics.js │ ├── tour-reg-backend.js │ ├── tour-reg-client.js │ ├── tour-sub-backend.js │ └── tour-sub-client.js ├── jsRiffle │ ├── .gitignore │ ├── .npmignore │ ├── README.md │ ├── bower.json │ ├── docs │ │ ├── build.sh │ │ ├── changelog.md │ │ ├── contents.md │ │ ├── jsRiffle0-4-6.md │ │ └── jsRiffle0-4-8.md │ ├── index.js │ ├── package.json │ ├── release │ │ ├── jsRiffle.js │ │ └── jsRiffle.min.js │ └── src │ │ ├── collections.js │ │ ├── riffle.js │ │ ├── util.js │ │ ├── want.js │ │ └── websocket.js └── ngRiffle │ ├── .gitignore │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── bower_components │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ └── autobahn │ │ ├── .S3UploadDone_0.9.8 │ │ ├── .S3UploadDone_latest │ │ ├── .bower.json │ │ ├── CHECKSUM.MD5 │ │ ├── CHECKSUM.SHA1 │ │ ├── CHECKSUM.SHA256 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── autobahn.js │ │ ├── autobahn.min.jgz │ │ ├── autobahn.min.js │ │ └── bower.json │ ├── docs │ ├── build.sh │ ├── changelog.md │ ├── contents.md │ ├── ngRiffle0-4-6.md │ └── ngRiffle0-4-8.md │ ├── package.json │ ├── release │ ├── ngRiffle.js │ └── ngRiffle.min.js │ └── src │ └── ngRiffle.js ├── python ├── README.md ├── example │ ├── adv-backend.py │ ├── adv-client.py │ ├── definitions-models.py │ ├── definitions-recv.py │ ├── definitions-send.py │ ├── receiver.py │ ├── reg-backend.py │ ├── reg-client.py │ ├── repl-template.py │ ├── sender.py │ ├── sub-backend.py │ ├── sub-client.py │ ├── test-numeric-backend.py │ ├── test-numeric-client.py │ ├── test-restart-backend.py │ ├── test-restart-client.py │ ├── tour-basics-backend.py │ ├── tour-basics-client.py │ ├── tour-reg-backend.py │ ├── tour-reg-client.py │ ├── tour-sub-backend.py │ └── tour-sub-client.py └── pyRiffle │ ├── .gitignore │ ├── LICENSE.txt │ ├── MANIFEST.in │ ├── README.md │ ├── publish.sh │ ├── riffle │ ├── __init__.py │ ├── crust.py │ ├── cumin.py │ ├── exis.py │ ├── model.py │ └── utils.py │ ├── setup.cfg │ ├── setup.py │ ├── test.sh │ └── test │ ├── test_cumin.py │ ├── test_model.py │ └── test_schema.py ├── stump.py ├── swift ├── README.md ├── docs │ ├── Docs.js │ ├── build.sh │ ├── changelog.md │ ├── contents.md │ └── swiftRiffle.md ├── example │ ├── Package.swift │ ├── main.swift │ ├── reg-backend.swift │ ├── reg-client.swift │ ├── repl-template.swift │ ├── tour-basics.swift │ ├── tour-reg-backend.swift │ ├── tour-reg-client.swift │ ├── tour-sub-backend.swift │ └── tour-sub-client.swift ├── exampleIOS │ ├── .gitignore │ ├── Backend │ │ ├── Package.swift │ │ └── main.swift │ ├── ExisiOSBackend.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ ├── Damouse.xcuserdatad │ │ │ └── xcschemes │ │ │ │ ├── Backend.xcscheme │ │ │ │ ├── ExisiOSBackend.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ │ └── chaseroossin.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Backend.xcscheme │ │ │ ├── ExisiOSBackend.xcscheme │ │ │ └── xcschememanagement.plist │ ├── ExisiOSBackend.xcworkspace │ │ └── contents.xcworkspacedata │ ├── ExisiOSBackend │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Headers │ │ │ └── Public │ │ │ │ └── Riffle │ │ │ │ └── Mantle │ │ │ │ └── Mantle.h │ │ ├── Local Podspecs │ │ │ └── Riffle.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ │ ├── Riffle-OSX.xcscheme │ │ │ │ │ └── Riffle-iOS.xcscheme │ │ │ └── xcuserdata │ │ │ │ └── damouse.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Pods-Backend.xcscheme │ │ │ │ ├── Pods-ExisiOSBackend.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ └── Target Support Files │ │ │ ├── Pods-Backend │ │ │ ├── Info.plist │ │ │ ├── Pods-Backend-acknowledgements.markdown │ │ │ ├── Pods-Backend-acknowledgements.plist │ │ │ ├── Pods-Backend-dummy.m │ │ │ ├── Pods-Backend-frameworks.sh │ │ │ ├── Pods-Backend-resources.sh │ │ │ ├── Pods-Backend-umbrella.h │ │ │ ├── Pods-Backend.debug.xcconfig │ │ │ ├── Pods-Backend.modulemap │ │ │ └── Pods-Backend.release.xcconfig │ │ │ ├── Pods-ExisiOSBackend │ │ │ ├── Info.plist │ │ │ ├── Pods-ExisiOSBackend-acknowledgements.markdown │ │ │ ├── Pods-ExisiOSBackend-acknowledgements.plist │ │ │ ├── Pods-ExisiOSBackend-dummy.m │ │ │ ├── Pods-ExisiOSBackend-frameworks.sh │ │ │ ├── Pods-ExisiOSBackend-resources.sh │ │ │ ├── Pods-ExisiOSBackend-umbrella.h │ │ │ ├── Pods-ExisiOSBackend.debug.xcconfig │ │ │ ├── Pods-ExisiOSBackend.modulemap │ │ │ └── Pods-ExisiOSBackend.release.xcconfig │ │ │ ├── Riffle-OSX │ │ │ ├── Info.plist │ │ │ ├── Riffle-OSX-dummy.m │ │ │ ├── Riffle-OSX-prefix.pch │ │ │ ├── Riffle-OSX-umbrella.h │ │ │ ├── Riffle-OSX.modulemap │ │ │ └── Riffle-OSX.xcconfig │ │ │ └── Riffle-iOS │ │ │ ├── Info.plist │ │ │ ├── Riffle-iOS-dummy.m │ │ │ ├── Riffle-iOS-prefix.pch │ │ │ ├── Riffle-iOS-umbrella.h │ │ │ ├── Riffle-iOS.modulemap │ │ │ └── Riffle-iOS.xcconfig │ ├── README.md │ └── assets │ │ ├── backendkeys.png │ │ ├── exis-logo-swift.png │ │ ├── frontendbackend.png │ │ ├── frontendkeys.png │ │ ├── helloworldswifttemplate.png │ │ ├── keys.png │ │ ├── outputlog.png │ │ ├── runbackend.png │ │ └── runfrontend.png ├── mantle │ ├── Makefile │ ├── Package.swift │ └── module.modulemap └── swiftRiffle │ ├── .gitignore │ ├── .travis.yml │ ├── Example │ ├── Backend │ │ └── main.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── Headers │ │ │ └── Public │ │ │ │ └── Riffle │ │ │ │ └── Mantle │ │ │ │ └── Mantle.h │ │ ├── Local Podspecs │ │ │ └── Riffle.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Riffle-OSX.xcscheme │ │ │ │ └── Riffle-iOS.xcscheme │ │ └── Target Support Files │ │ │ ├── Pods-Backend │ │ │ ├── Info.plist │ │ │ ├── Pods-Backend-acknowledgements.markdown │ │ │ ├── Pods-Backend-acknowledgements.plist │ │ │ ├── Pods-Backend-dummy.m │ │ │ ├── Pods-Backend-frameworks.sh │ │ │ ├── Pods-Backend-resources.sh │ │ │ ├── Pods-Backend-umbrella.h │ │ │ ├── Pods-Backend.debug.xcconfig │ │ │ ├── Pods-Backend.modulemap │ │ │ └── Pods-Backend.release.xcconfig │ │ │ ├── Pods-Riffle_Example │ │ │ ├── Info.plist │ │ │ ├── Pods-Riffle_Example-acknowledgements.markdown │ │ │ ├── Pods-Riffle_Example-acknowledgements.plist │ │ │ ├── Pods-Riffle_Example-dummy.m │ │ │ ├── Pods-Riffle_Example-frameworks.sh │ │ │ ├── Pods-Riffle_Example-resources.sh │ │ │ ├── Pods-Riffle_Example-umbrella.h │ │ │ ├── Pods-Riffle_Example.debug.xcconfig │ │ │ ├── Pods-Riffle_Example.modulemap │ │ │ └── Pods-Riffle_Example.release.xcconfig │ │ │ ├── Riffle-OSX │ │ │ ├── Info.plist │ │ │ ├── Riffle-OSX-dummy.m │ │ │ ├── Riffle-OSX-prefix.pch │ │ │ ├── Riffle-OSX-umbrella.h │ │ │ ├── Riffle-OSX.modulemap │ │ │ └── Riffle-OSX.xcconfig │ │ │ └── Riffle-iOS │ │ │ ├── Info.plist │ │ │ ├── Riffle-iOS-dummy.m │ │ │ ├── Riffle-iOS-prefix.pch │ │ │ ├── Riffle-iOS-umbrella.h │ │ │ ├── Riffle-iOS.modulemap │ │ │ └── Riffle-iOS.xcconfig │ ├── Riffle.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Riffle-Example.xcscheme │ ├── Riffle.xcworkspace │ │ └── contents.xcworkspacedata │ └── Riffle │ │ ├── AppDelegate.swift │ │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ │ ├── DomainTesting.swift │ │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── ModelTesting.swift │ │ ├── MyPlayground.playground │ │ ├── Contents.swift │ │ ├── contents.xcplayground │ │ └── timeline.xctimeline │ │ └── ViewController.swift │ ├── LICENSE │ ├── Pod │ ├── Assets │ │ ├── .gitkeep │ │ ├── ios │ │ │ └── Mantle.framework │ │ │ │ ├── Headers │ │ │ │ ├── Mantle │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── Mantle.h │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ └── osx │ │ │ └── Mantle.framework │ │ │ ├── Headers │ │ │ ├── Mantle │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── Mantle.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ └── Classes │ │ ├── App.swift │ │ ├── Cumin.swift │ │ ├── CuminicableExtensions.swift │ │ ├── Deferred.swift │ │ ├── Domain.swift │ │ ├── Json.swift │ │ ├── Model.swift │ │ ├── Package.swift │ │ ├── Package.swift.prod │ │ ├── Silver.swift │ │ └── Utils.swift │ ├── README.md │ ├── Riffle.podspec │ ├── _Pods.xcodeproj │ └── cumin_generator.py ├── test.sh └── utils ├── __init__.py ├── assets ├── containerAgent.png ├── exis-logo.png └── riffleAgent.png ├── functionizer.py └── utils.py /CardsAgainstHumanityDemo/droidCardsAgainst/.gitignore: -------------------------------------------------------------------------------- 1 | #Directories# 2 | ############# 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | /build 7 | /captures 8 | 9 | #Annoying files# 10 | ################ 11 | .gradle 12 | .DS_Store 13 | *~ 14 | *.swp 15 | *.idea 16 | *.iml 17 | 18 | #Helper files 19 | ############### 20 | game_logic.txt 21 | 22 | mantle/mantle.aar 23 | local.properties 24 | build/* 25 | .idea 26 | *.so 27 | .gradle 28 | local.properties 29 | .idea/workspace.xml 30 | .idea/libraries 31 | .DS_Store 32 | build -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/README.md: -------------------------------------------------------------------------------- 1 | # Cards Against Humanity Android Demo 2 | 3 | Created by Luke Salamone. © 2015 - 2016 Exis. Working product of Cards Against Humanity demo for Android. 4 | 5 | Client applications communicate with a backend (i.e. Dealers and the Exec) via websockets. This allows for two-way communication between parties. 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /local.properties 3 | /.idea/workspace.xml 4 | /.idea/libraries 5 | .DS_Store 6 | /build 7 | /captures 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Oct 22 14:12:42 CDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/androidTest/java/com/exis/riffletest/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.exis.riffletest; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 9 | 10 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RiffleTest 3 | 4 | Hello world! 5 | Settings 6 | 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | 3 | buildscript { 4 | repositories { 5 | jcenter() 6 | } 7 | dependencies { 8 | classpath 'com.android.tools.build:gradle:1.5.0' 9 | 10 | // NOTE: Do not place your application dependencies here; they belong 11 | // in the individual module build.gradle files 12 | } 13 | } 14 | 15 | allprojects { 16 | repositories { 17 | jcenter() 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Apr 10 15:27:10 PDT 2013 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/RiffleTest/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/androidTest/java/io/exis/cards/cards/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package io.exis.cards.cards; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/assets/LiberationSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/assets/LiberationSans-Bold.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/assets/LiberationSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/assets/LiberationSans-Italic.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/assets/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/assets/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/gen/io/exis/cards/cards/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package io.exis.cards.cards; 4 | 5 | /* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */ 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = Boolean.parseBoolean(null); 8 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/gen/io/exis/cards/cards/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package io.exis.cards.cards; 4 | 5 | /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/gen/io/exis/cards/cards/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package io.exis.cards.cards; 4 | 5 | /* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/drawable/blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/drawable/blur.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/drawable/gamelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/drawable/gamelogo.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/drawable/play_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/drawable/progress_drawable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 5dp 6 | 60dp 7 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/app/src/test/java/io/exis/cards/cards/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package io.exis.cards.cards; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/droidCardsAgainst/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Oct 08 13:47:47 CDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/droidCardsAgainst/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "www/lib" 3 | } 4 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | [*.md] 13 | insert_final_newline = false 14 | trim_trailing_whitespace = false -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/.gitignore: -------------------------------------------------------------------------------- 1 | # Specifies intentionally untracked files to ignore when using Git 2 | # http://git-scm.com/docs/gitignore 3 | 4 | node_modules/ 5 | platforms/ 6 | plugins/ 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/README.md: -------------------------------------------------------------------------------- 1 | # ionic Cards Against Humanity Demo 2 | 3 | All our docs live at [docs.exis.io](http://docs.exis.io). 4 | 5 | This project lives at https://github.com/exis-io/ionicCardsAgainstEXIStence. 6 | 7 |
8 |

Join the Chat! 9 |
10 | 11 |

12 |
13 | # ionicCardsAgainstEXIStence 14 | An Ionic demo of Cards Against using EXIS 15 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "HelloIonic", 3 | "private": "true", 4 | "devDependencies": { 5 | "ionic": "driftyco/ionic-bower#1.1.1" 6 | }, 7 | "dependencies": { 8 | "angular-wamp": "~0.1.7" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/ionic.project: -------------------------------------------------------------------------------- 1 | { 2 | "name": "exisIonicCardsAgainst", 3 | "app_id": "" 4 | } 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/css/style.css: -------------------------------------------------------------------------------- 1 | /* Empty. Add your own CSS if you like */ 2 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/img/exis-emblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/img/exis-emblem.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/img/exis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/img/exis-logo.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/img/gamelogo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/img/gamelogo-1.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/img/gamelogo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/img/gamelogo-2.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/img/gamelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/img/gamelogo.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-animate/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-animate", 3 | "version": "1.4.3", 4 | "main": "./angular-animate.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.4.3" 8 | }, 9 | "homepage": "https://github.com/angular/bower-angular-animate", 10 | "_release": "1.4.3", 11 | "_resolution": { 12 | "type": "version", 13 | "tag": "v1.4.3", 14 | "commit": "4ce2a76359401102d2e0146ccf69e6c060799ff8" 15 | }, 16 | "_source": "git://github.com/angular/bower-angular-animate.git", 17 | "_target": "1.4.3", 18 | "_originalSource": "angular-animate" 19 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-animate/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-animate", 3 | "version": "1.4.3", 4 | "main": "./angular-animate.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.4.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-animate/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-animate'); 2 | module.exports = 'ngAnimate'; 3 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-sanitize/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-sanitize", 3 | "version": "1.4.3", 4 | "main": "./angular-sanitize.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.4.3" 8 | }, 9 | "homepage": "https://github.com/angular/bower-angular-sanitize", 10 | "_release": "1.4.3", 11 | "_resolution": { 12 | "type": "version", 13 | "tag": "v1.4.3", 14 | "commit": "0367ee4c3f9cb8af5d1da9ec35b71a8b523d9fc0" 15 | }, 16 | "_source": "git://github.com/angular/bower-angular-sanitize.git", 17 | "_target": "1.4.3", 18 | "_originalSource": "angular-sanitize" 19 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-sanitize/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-sanitize", 3 | "version": "1.4.3", 4 | "main": "./angular-sanitize.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.4.3" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-sanitize/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-sanitize'); 2 | module.exports = 'ngSanitize'; 3 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-ui-router/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-ui-router", 3 | "version": "0.2.13", 4 | "main": "./release/angular-ui-router.js", 5 | "dependencies": { 6 | "angular": ">= 1.0.8" 7 | }, 8 | "ignore": [ 9 | "**/.*", 10 | "node_modules", 11 | "bower_components", 12 | "component.json", 13 | "package.json", 14 | "lib", 15 | "config", 16 | "sample", 17 | "test", 18 | "tests", 19 | "ngdoc_assets", 20 | "Gruntfile.js", 21 | "files.js" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/angular/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": {}, 7 | "homepage": "https://github.com/angular/bower-angular", 8 | "_release": "1.4.8", 9 | "_resolution": { 10 | "type": "version", 11 | "tag": "v1.4.8", 12 | "commit": "572a4fcc552c27c0f4bb1b9aab395249218c1255" 13 | }, 14 | "_source": "git://github.com/angular/bower-angular.git", 15 | "_target": "^1.2.0", 16 | "_originalSource": "angular" 17 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide:not(.ng-hide-animate) { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-shim { 16 | visibility:hidden; 17 | } 18 | 19 | .ng-anchor { 20 | position:absolute; 21 | } 22 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/angular/index.js: -------------------------------------------------------------------------------- 1 | require('./angular'); 2 | module.exports = angular; 3 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/.S3UploadDone_0.9.8: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (CHECKSUM.MD5) = 65ad76bca5ed64b8b05bd2364a031be6 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | MD5 (CHECKSUM.SHA1) = c7393b86a8062a597d12002aa640136a 5 | MD5 (CHECKSUM.SHA256) = aa9619143d5b6de81745fe9b9aba0474 6 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/.S3UploadDone_latest: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (CHECKSUM.MD5) = 65ad76bca5ed64b8b05bd2364a031be6 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | MD5 (CHECKSUM.SHA1) = c7393b86a8062a597d12002aa640136a 5 | MD5 (CHECKSUM.SHA256) = aa9619143d5b6de81745fe9b9aba0474 6 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "autobahnjs", 3 | "version": "0.9.9", 4 | "main": "./autobahn.js", 5 | "dependencies": {}, 6 | "homepage": "https://github.com/tavendo/AutobahnJSbuilt", 7 | "_release": "0.9.9", 8 | "_resolution": { 9 | "type": "version", 10 | "tag": "v0.9.9", 11 | "commit": "ece04e40b01ce1f23844b78a10534dc0ef9aa668" 12 | }, 13 | "_source": "git://github.com/tavendo/AutobahnJSbuilt.git", 14 | "_target": ">= 0.9.5", 15 | "_originalSource": "autobahn" 16 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/CHECKSUM.MD5: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = cb1a806caffe627385076bc4291a2eb2 2 | MD5 (autobahn.min.jgz) = ee4f7254bd75ddbda779b6c4623aee79 3 | MD5 (autobahn.min.js) = ed854f60aef73942e1b81b15e0168c2d 4 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/CHECKSUM.SHA1: -------------------------------------------------------------------------------- 1 | SHA1 (autobahn.js) = c751131d3814673e2c6bb33a9c5140424aae4b8e 2 | SHA1 (autobahn.min.jgz) = 5ed6fc3cb02aa62b2d4ae86f82d904ee249b651f 3 | SHA1 (autobahn.min.js) = 0cc247df0a2d1d88ef9b27baba7c0c50a871d609 4 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/CHECKSUM.SHA256: -------------------------------------------------------------------------------- 1 | SHA256 (autobahn.js) = e9c81cd8c8f5c7822014effdf5261847f04696963149fe54a9384814f6fc1459 2 | SHA256 (autobahn.min.jgz) = b814a52ddd5037df54fc42a287b1e246592055ff1072ed0883af356e1fa6b273 3 | SHA256 (autobahn.min.js) = 47631f49c814bde8668c65e1fe989eb9e8d45cf7dc46c8997b244770405bfb97 4 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/README.md: -------------------------------------------------------------------------------- 1 | # AutobahnJS "Built" 2 | 3 | This repository contains the built and released versions of [AutobahnJS](https://github.com/tavendo/AutobahnJS) ready for use in your project. 4 | 5 | ## Using with Bower 6 | 7 | Install with [bower](http://bower.io/): 8 | 9 | bower install autobahn 10 | 11 | Add a ` 14 | 15 | To list available versions of AutobahnJS: 16 | 17 | bower info autobahn 18 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/autobahn.min.jgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/autobahn.min.jgz -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular-wamp/www/lib/autobahn/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "autobahnjs", 3 | "version": "0.9.9", 4 | "main": "./autobahn.js", 5 | "dependencies": { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": {}, 7 | "homepage": "https://github.com/angular/bower-angular", 8 | "_release": "1.4.8", 9 | "_resolution": { 10 | "type": "version", 11 | "tag": "v1.4.8", 12 | "commit": "572a4fcc552c27c0f4bb1b9aab395249218c1255" 13 | }, 14 | "_source": "git://github.com/angular/bower-angular.git", 15 | "_target": "^1.2.0", 16 | "_originalSource": "angular" 17 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide:not(.ng-hide-animate) { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-shim { 16 | visibility:hidden; 17 | } 18 | 19 | .ng-anchor { 20 | position:absolute; 21 | } 22 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/angular/index.js: -------------------------------------------------------------------------------- 1 | require('./angular'); 2 | module.exports = angular; 3 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/.S3UploadDone_0.9.8: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (CHECKSUM.MD5) = 65ad76bca5ed64b8b05bd2364a031be6 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | MD5 (CHECKSUM.SHA1) = c7393b86a8062a597d12002aa640136a 5 | MD5 (CHECKSUM.SHA256) = aa9619143d5b6de81745fe9b9aba0474 6 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/.S3UploadDone_latest: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (CHECKSUM.MD5) = 65ad76bca5ed64b8b05bd2364a031be6 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | MD5 (CHECKSUM.SHA1) = c7393b86a8062a597d12002aa640136a 5 | MD5 (CHECKSUM.SHA256) = aa9619143d5b6de81745fe9b9aba0474 6 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "autobahnjs", 3 | "version": "0.9.8", 4 | "main": "./autobahn.js", 5 | "dependencies": {}, 6 | "homepage": "https://github.com/tavendo/AutobahnJSbuilt", 7 | "_release": "0.9.8", 8 | "_resolution": { 9 | "type": "version", 10 | "tag": "v0.9.8", 11 | "commit": "eb4651d90d7dbeedbba756f26e00c4c420396e83" 12 | }, 13 | "_source": "git://github.com/tavendo/AutobahnJSbuilt.git", 14 | "_target": ">= 0.9.5", 15 | "_originalSource": "autobahn" 16 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/CHECKSUM.MD5: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/CHECKSUM.SHA1: -------------------------------------------------------------------------------- 1 | SHA1 (autobahn.js) = 2b152d9a2ca7373c342e09f5eeb36f4d9fd9fda6 2 | SHA1 (autobahn.min.jgz) = 6f872fd3b4f2eba16a6eb89c3a79912afda54cae 3 | SHA1 (autobahn.min.js) = b8910b86502cf669de383ab349117b76f89be6c1 4 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/CHECKSUM.SHA256: -------------------------------------------------------------------------------- 1 | SHA256 (autobahn.js) = 64fe2746f92e8ec9d929face50de7d0406dff4cd81900b19411fc35a0dc91104 2 | SHA256 (autobahn.min.jgz) = 5521bf1b41dfb4e19dbceec5507ef43f622faceb6acf6c1021650181d16c0917 3 | SHA256 (autobahn.min.js) = ae66ef96ab144771975d84e301860eb665fb258583869637d94f10c68ec4a59b 4 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/README.md: -------------------------------------------------------------------------------- 1 | # AutobahnJS "Built" 2 | 3 | This repository contains the built and released versions of [AutobahnJS](https://github.com/tavendo/AutobahnJS) ready for use in your project. 4 | 5 | ## Using with Bower 6 | 7 | Install with [bower](http://bower.io/): 8 | 9 | bower install autobahn 10 | 11 | Add a ` 14 | 15 | To list available versions of AutobahnJS: 16 | 17 | bower info autobahn 18 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/autobahn.min.jgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/autobahn.min.jgz -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/autobahn/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "autobahnjs", 3 | "version": "0.9.6", 4 | "main": "./autobahn.js", 5 | "dependencies": { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/README.md: -------------------------------------------------------------------------------- 1 | # ionic-bower 2 | 3 | Bower repository for [Ionic Framework](http://github.com/driftyco/ionic) 4 | 5 | ### Usage 6 | 7 | Include `js/ionic.bundle.js` to get ionic and all of its dependencies. 8 | 9 | Alternatively, include the individual ionic files with the dependencies separately. 10 | 11 | ### Versions 12 | 13 | To install the latest stable version, `bower install driftyco/ionic-bower#v1.1.1` 14 | 15 | To install the latest nightly release, `bower install driftyco/ionic-bower#master` 16 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/fonts/ionicons.eot -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/fonts/ionicons.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/fonts/ionicons.woff -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/scss/_backdrop.scss: -------------------------------------------------------------------------------- 1 | 2 | .backdrop { 3 | position: fixed; 4 | top: 0; 5 | left: 0; 6 | z-index: $z-index-backdrop; 7 | 8 | width: 100%; 9 | height: 100%; 10 | 11 | background-color: $loading-backdrop-bg-color; 12 | 13 | visibility: hidden; 14 | opacity: 0; 15 | 16 | &.visible { 17 | visibility: visible; 18 | } 19 | &.active { 20 | opacity: 1; 21 | } 22 | 23 | @include transition($loading-backdrop-fadein-duration opacity linear); 24 | } 25 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/ngCardsAgainst/www/lib/ionic/scss/_progress.scss: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Progress 4 | * -------------------------------------------------- 5 | */ 6 | 7 | progress { 8 | display: block; 9 | margin: $progress-margin; 10 | width: $progress-width; 11 | } 12 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/.gitignore: -------------------------------------------------------------------------------- 1 | *.xcuserstate 2 | .DS_Store -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Bridging-Header.h 3 | // ExAgainst 4 | // 5 | // Created by Mickey Barboi on 11/7/15. 6 | // Copyright © 2015 exis. All rights reserved. 7 | // 8 | 9 | #ifndef Bridging_Header_h 10 | #define Bridging_Header_h 11 | 12 | #import "IHKeyboardAvoiding.h" 13 | #import "RMSwipingTableViewCell.h" 14 | #import "M13ProgressViewBar.h" 15 | #import 16 | 17 | #endif /* Bridging_Header_h */ 18 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst.xcworkspace/xcuserdata/Damouse.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "disclosure.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "disclosure-2.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "disclosure-1.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Back.imageset/disclosure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Back.imageset/disclosure-1.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Back.imageset/disclosure-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Back.imageset/disclosure-2.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Back.imageset/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Back.imageset/disclosure.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Logo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gamelogo-2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "gamelogo-1.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "gamelogo.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Logo.imageset/gamelogo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Logo.imageset/gamelogo-1.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Logo.imageset/gamelogo-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Logo.imageset/gamelogo-2.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Logo.imageset/gamelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/ExAgainst/Assets.xcassets/Logo.imageset/gamelogo.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-Bold.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-BoldItalic.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-Italic.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/LiberationSans-Regular.ttf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target :ExAgainst, :exclusive => true do 4 | platform :ios, '9.0' 5 | pod 'Riffle' 6 | #pod 'Riffle', :path => '../../ios/swiftRiffle' 7 | pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift2' 8 | pod 'IHKeyboardAvoiding' 9 | pod 'RMSwipeTableViewCell' 10 | pod 'M13ProgressSuite' 11 | pod 'LTMorphingLabel', '~> 0.0.9' 12 | end 13 | 14 | target :Backend, :exclusive => true do 15 | platform :osx, '10.10' 16 | pod 'Riffle' 17 | #pod 'Riffle', :path => '../../ios/swiftRiffle' 18 | end 19 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperation.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFHTTPRequestOperationManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPRequestOperationManager.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFNetworkActivityIndicatorManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFURLConnectionOperation.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLConnectionOperation.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIActivityIndicatorView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIAlertView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIAlertView+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIButton+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIButton+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIImage+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImage+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIImageView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIImageView+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIKit+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIKit+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIProgressView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIProgressView+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIRefreshControl+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIRefreshControl+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/AFNetworking/UIWebView+AFNetworking.h: -------------------------------------------------------------------------------- 1 | ../../../AFNetworking/UIKit+AFNetworking/UIWebView+AFNetworking.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/CocoaAsyncSocket/AsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/RunLoop/AsyncSocket.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/CocoaAsyncSocket/AsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/RunLoop/AsyncUdpSocket.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/CocoaAsyncSocket/GCDAsyncSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/GCD/GCDAsyncSocket.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/CocoaAsyncSocket/GCDAsyncUdpSocket.h: -------------------------------------------------------------------------------- 1 | ../../../CocoaAsyncSocket/GCD/GCDAsyncUdpSocket.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/GHODictionary/GHODict.h: -------------------------------------------------------------------------------- 1 | ../../../GHODictionary/GHODictionary/GHODict.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/GHODictionary/GHODictionary.h: -------------------------------------------------------------------------------- 1 | ../../../GHODictionary/GHODictionary/GHODictionary.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/IHKeyboardAvoiding/IHKeyboardAvoiding.h: -------------------------------------------------------------------------------- 1 | ../../../IHKeyboardAvoiding/Classes/IHKeyboardAvoiding.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/LTMorphingLabel/LTMorphingLabel.h: -------------------------------------------------------------------------------- 1 | ../../../LTMorphingLabel/LTMorphingLabel/LTMorphingLabel.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressConsole.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/Console/M13ProgressConsole.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/HUD/M13ProgressHUD.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressView.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressView.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewBar.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewBar.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewBorderedBar.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewBorderedBar.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewFilteredImage.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewFilteredImage.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewImage.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewImage.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewLetterpress.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewLetterpress.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewMetro.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewMetro.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewMetroDotPolygon.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewPie.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewPie.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewRadiative.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewRadiative.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewRing.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewRing.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewSegmentedBar.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewSegmentedBar.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewSegmentedRing.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewSegmentedRing.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/M13ProgressViewStripedBar.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/ProgressViews/M13ProgressViewStripedBar.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/HUD/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/M13ProgressSuite/UINavigationController+M13ProgressViewBar.h: -------------------------------------------------------------------------------- 1 | ../../../M13ProgressSuite/Classes/NavigationController/UINavigationController+M13ProgressViewBar.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/MPDefines.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPDispatchRequest.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/RPC/MPDispatchRequest.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPMessagePack.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/MPMessagePack.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPMessagePackClient.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/RPC/MPMessagePackClient.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPMessagePackReader.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/MPMessagePackReader.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPMessagePackServer.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/RPC/MPMessagePackServer.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPMessagePackWriter.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/MPMessagePackWriter.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPRPCProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/RPC/MPRPCProtocol.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPRequest.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/RPC/MPRequest.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPXPCClient.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/XPC/MPXPCClient.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPXPCProtocol.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/XPC/MPXPCProtocol.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/MPXPCService.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/XPC/MPXPCService.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/NSArray+MPMessagePack.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/NSArray+MPMessagePack.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/NSData+MPMessagePack.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/NSData+MPMessagePack.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/NSDictionary+MPMessagePack.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/NSDictionary+MPMessagePack.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/MPMessagePack/cmp.h: -------------------------------------------------------------------------------- 1 | ../../../MPMessagePack/MPMessagePack/cmp.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/RMSwipeTableViewCell/RMSwipeTableViewCell.h: -------------------------------------------------------------------------------- 1 | ../../../RMSwipeTableViewCell/RMSwipeTableViewCell.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/EXTKeyPathCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/extobjc/EXTKeyPathCoding.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/EXTRuntimeExtensions.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/extobjc/EXTRuntimeExtensions.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/EXTScope.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/extobjc/EXTScope.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWamp.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWamp.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampAbort.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampAbort.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampAuthenticate.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampAuthenticate.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampCall.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampCall.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampCancel.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampCancel.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampChallenge.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampChallenge.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampClientConfig.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampClientConfig.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampClientDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampClientDelegate.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampConstants.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampConstants.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampError.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampError.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampEvent.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampEvent.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampGoodbye.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampGoodbye.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampHello.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampHello.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampInterrupt.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampInterrupt.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampInvocation.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampInvocation.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampMessage.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampMessage.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampMessageFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampMessageFactory.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampMessages.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampMessages.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampPublish.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampPublish.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampPublished.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampPublished.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampRegister.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampRegister.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampRegistered.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampRegistered.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampResult.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampResult.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampSerialization.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampSerializations/MDWampSerialization.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampSerializationJSON.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampSerializations/MDWampSerializationJSON.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampSerializationMsgpack.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampSerializations/MDWampSerializationMsgpack.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampSerializations.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampSerializations/MDWampSerializations.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampSubscribe.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampSubscribe.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampSubscribed.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampSubscribed.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampTransport.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampTransports/MDWampTransport.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampTransportDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampTransports/MDWampTransportDelegate.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampTransportRawSocket.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampTransports/MDWampTransportRawSocket.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampTransportWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampTransports/MDWampTransportWebSocket.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampTransports.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampTransports/MDWampTransports.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampUnregister.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampUnregister.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampUnregistered.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampUnregistered.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampUnsubscribe.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampUnsubscribe.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampUnsubscribed.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampUnsubscribed.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampWelcome.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampWelcome.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MDWampYield.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/MDWampMessages/MDWampYield.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MTLJSONAdapter.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/MTLJSONAdapter.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MTLModel+NSCoding.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/MTLModel+NSCoding.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MTLModel.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/MTLModel.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MTLReflection.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/MTLReflection.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MTLTransformerErrorHandling.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/MTLTransformerErrorHandling.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/MTLValueTransformer.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/MTLValueTransformer.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/Mantle.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSArray+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSArray+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSDictionary+MTLJSONKeyPath.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSDictionary+MTLJSONKeyPath.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSDictionary+MTLManipulationAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSDictionary+MTLManipulationAdditions.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSDictionary+MTLMappingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSDictionary+MTLMappingAdditions.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSError+MTLModelException.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSError+MTLModelException.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSMutableArray+MDStack.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/Categories/NSMutableArray+MDStack.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSObject+MTLComparisonAdditions.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSString+MDString.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/src/Categories/NSString+MDString.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSValueTransformer+MTLInversionAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSValueTransformer+MTLInversionAdditions.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/NSValueTransformer+MTLPredefinedTransformerAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/NSValueTransformer+MTLPredefinedTransformerAdditions.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/Riffle.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/Riffle.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/Riffle/metamacros.h: -------------------------------------------------------------------------------- 1 | ../../../Riffle/Pod/Classes/extobjc/metamacros.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Headers/Private/SocketRocket/SRWebSocket.h: -------------------------------------------------------------------------------- 1 | ../../../SocketRocket/SocketRocket/SRWebSocket.h -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Fire.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Fragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Fragment.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Smoke.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Sparkle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/LTMorphingLabel/LTMorphingLabel/Particles/Sparkle.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Local Podspecs/Spring.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Spring", 3 | "version": "1.0.3", 4 | "license": "MIT", 5 | "summary": "A library to simplify iOS animations in Swift.", 6 | "homepage": "https://github.com/MengTo/Spring", 7 | "authors": { 8 | "Meng To": "meng@designcode.io" 9 | }, 10 | "source": { 11 | "git": "https://github.com/MengTo/Spring.git", 12 | "tag": "1.0.3" 13 | }, 14 | "requires_arc": true, 15 | "platforms": { 16 | "ios": "8.0" 17 | }, 18 | "source_files": "Spring/*.swift", 19 | "resources": [ 20 | "Spring/*.xib", 21 | "SpringApp/*.xcassets" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/MPMessagePack/MPMessagePack/NSArray+MPMessagePack.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSArray+MPMessagePack.h 3 | // MPMessagePack 4 | // 5 | // Created by Gabriel on 7/3/14. 6 | // Copyright (c) 2014 Gabriel Handford. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "MPMessagePackWriter.h" 12 | 13 | @interface NSArray (MPMessagePack) 14 | 15 | - (NSData *)mp_messagePack; 16 | 17 | - (NSData *)mp_messagePack:(MPMessagePackWriterOptions)options; 18 | 19 | - (NSData *)mp_messagePack:(MPMessagePackWriterOptions)options error:(NSError **)error; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/MPMessagePack/MPMessagePack/NSDictionary+MPMessagePack.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSDictionary+MPMessagePack.h 3 | // MPMessagePack 4 | // 5 | // Created by Gabriel on 7/3/14. 6 | // Copyright (c) 2014 Gabriel Handford. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "MPMessagePackWriter.h" 12 | 13 | @interface NSDictionary (MPMessagePack) 14 | 15 | - (NSData *)mp_messagePack; 16 | 17 | - (NSData *)mp_messagePack:(MPMessagePackWriterOptions)options; 18 | 19 | - (NSData *)mp_messagePack:(MPMessagePackWriterOptions)options error:(NSError **)error; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/MPMessagePack/RPC/MPDispatchRequest.h: -------------------------------------------------------------------------------- 1 | // 2 | // MPDispatchRequest.h 3 | // MPMessagePack 4 | // 5 | // Created by Gabriel on 10/14/15. 6 | // Copyright © 2015 Gabriel Handford. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MPDispatchRequest : NSObject 12 | 13 | @property (readonly) dispatch_semaphore_t semaphore; 14 | 15 | @property NSError *error; 16 | @property id result; 17 | 18 | + (instancetype)dispatchRequest; 19 | 20 | @end -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/MPMessagePack/RPC/MPRequest.h: -------------------------------------------------------------------------------- 1 | // 2 | // MPRequest.h 3 | // MPMessagePack 4 | // 5 | // Created by Gabriel on 10/14/15. 6 | // Copyright © 2015 Gabriel Handford. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "MPRPCProtocol.h" 12 | 13 | @interface MPRequest : NSObject 14 | 15 | @property (readonly) MPRequestCompletion completion; 16 | 17 | + (instancetype)requestWithCompletion:(MPRequestCompletion)completion; 18 | 19 | - (void)completeWithResult:(id)result error:(NSError *)error; 20 | 21 | @end 22 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/MTLTransformerErrorHandling.m: -------------------------------------------------------------------------------- 1 | // 2 | // MTLTransformerErrorHandling.h 3 | // Mantle 4 | // 5 | // Created by Robert Böhnke on 10/6/13. 6 | // Copyright (c) 2013 GitHub. All rights reserved. 7 | // 8 | 9 | #import "MTLTransformerErrorHandling.h" 10 | 11 | NSString * const MTLTransformerErrorHandlingErrorDomain = @"MTLTransformerErrorHandlingErrorDomain"; 12 | 13 | const NSInteger MTLTransformerErrorHandlingErrorInvalidInput = 1; 14 | 15 | NSString * const MTLTransformerErrorHandlingInputValueErrorKey = @"MTLTransformerErrorHandlingInputValueErrorKey"; 16 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/NSObject+MTLComparisonAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+MTLComparisonAdditions.h 3 | // Mantle 4 | // 5 | // Created by Josh Vera on 10/26/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | // Portions copyright (c) 2011 Bitswift. All rights reserved. 9 | // See the LICENSE file for more information. 10 | // 11 | 12 | #import 13 | 14 | /// Returns whether both objects are identical or equal via -isEqual: 15 | BOOL MTLEqualObjects(id obj1, id obj2); 16 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/NSObject+MTLComparisonAdditions.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+MTLComparisonAdditions.m 3 | // Mantle 4 | // 5 | // Created by Josh Vera on 10/26/12. 6 | // Copyright (c) 2012 GitHub. All rights reserved. 7 | // 8 | // Portions copyright (c) 2011 Bitswift. All rights reserved. 9 | // See the LICENSE file for more information. 10 | // 11 | 12 | #import "NSObject+MTLComparisonAdditions.h" 13 | 14 | BOOL MTLEqualObjects(id obj1, id obj2) { 15 | return (obj1 == obj2 || [obj1 isEqual:obj2]); 16 | } 17 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/Riffle.h: -------------------------------------------------------------------------------- 1 | // 2 | // Riffle.h 3 | // Pods 4 | // 5 | // Created by Mickey Barboi on 9/27/15. 6 | // I don't know if this is needed or not, but compilation can hiccough otherwise 7 | // 8 | 9 | #ifndef Riffle_h 10 | #define Riffle_h 11 | 12 | //#import "MTLModel.h" 13 | //#import "MTLJSONAdapter.h" 14 | 15 | #endif /* Riffle_h */ 16 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/extobjc/EXTScope.m: -------------------------------------------------------------------------------- 1 | // 2 | // EXTScope.m 3 | // extobjc 4 | // 5 | // Created by Justin Spahr-Summers on 2011-05-04. 6 | // Copyright (C) 2012 Justin Spahr-Summers. 7 | // Released under the MIT license. 8 | // 9 | 10 | #import "EXTScope.h" 11 | 12 | void mtl_executeCleanupBlock (__strong mtl_cleanupBlock_t *block) { 13 | (*block)(); 14 | } 15 | 16 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/src/MDWampMessages/MDWampCancel.h: -------------------------------------------------------------------------------- 1 | // 2 | // MDWampCancel.h 3 | // MDWamp 4 | // 5 | // Created by Niko Usai on 26/08/14. 6 | // Copyright (c) 2014 mogui.it. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MDWampMessage.h" 11 | @interface MDWampCancel : NSObject 12 | @property (nonatomic, strong) NSNumber *request; 13 | @property (nonatomic, strong) NSDictionary *options; 14 | @end 15 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/src/MDWampMessages/MDWampChallenge.h: -------------------------------------------------------------------------------- 1 | // 2 | // MDWampChallenge.h 3 | // MDWamp 4 | // 5 | // Created by Niko Usai on 26/08/14. 6 | // Copyright (c) 2014 mogui.it. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MDWampMessage.h" 11 | @interface MDWampChallenge : NSObject 12 | @property (nonatomic, strong) NSString *authMethod; 13 | @property (nonatomic, strong) NSDictionary *extra; 14 | @end 15 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/src/MDWampMessages/MDWampInterrupt.h: -------------------------------------------------------------------------------- 1 | // 2 | // MDWampInterrupt.h 3 | // MDWamp 4 | // 5 | // Created by Niko Usai on 26/08/14. 6 | // Copyright (c) 2014 mogui.it. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MDWampMessage.h" 11 | @interface MDWampInterrupt : NSObject 12 | @property (nonatomic, strong) NSNumber *request; 13 | @property (nonatomic, strong) NSDictionary *options; 14 | @end 15 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/Pod/Classes/src/MDWampTransports/MDWampTransportRawSocket.h: -------------------------------------------------------------------------------- 1 | // 2 | // RawSocketTransport.h 3 | // MDWamp 4 | // 5 | // Created by Niko Usai on 05/07/14. 6 | // Copyright (c) 2014 mogui.it. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MDWampTransport.h" 11 | @interface MDWampTransportRawSocket : NSObject 12 | - (id)initWithHost:(NSString*)host port:(NSInteger)port; 13 | @property iddelegate; 14 | @property (nonatomic, strong) NSString *serialization; 15 | @end 16 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Riffle/README.md: -------------------------------------------------------------------------------- 1 | Forthcoming. -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@120-1.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@120.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@152.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@180.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@29.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@40.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@58-1.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@58.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@76.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@80-1.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@80.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/AppIcon.appiconset/appicon@87.png -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/icon-shape.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon-shape.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/icon-shape.imageset/icon-shape.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/icon-shape.imageset/icon-shape.pdf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/loading.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "loading.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/loading.imageset/loading.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Spring/SpringApp/Images.xcassets/loading.imageset/loading.pdf -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/IHKeyboardAvoiding/IHKeyboardAvoiding-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_IHKeyboardAvoiding : NSObject 3 | @end 4 | @implementation PodsDummy_IHKeyboardAvoiding 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/IHKeyboardAvoiding/IHKeyboardAvoiding-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/IHKeyboardAvoiding/IHKeyboardAvoiding-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "IHKeyboardAvoiding.h" 4 | 5 | FOUNDATION_EXPORT double IHKeyboardAvoidingVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char IHKeyboardAvoidingVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/IHKeyboardAvoiding/IHKeyboardAvoiding.modulemap: -------------------------------------------------------------------------------- 1 | framework module IHKeyboardAvoiding { 2 | umbrella header "IHKeyboardAvoiding-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/IHKeyboardAvoiding/IHKeyboardAvoiding.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/IHKeyboardAvoiding" "${PODS_ROOT}/Headers/Public" 3 | PODS_ROOT = ${SRCROOT} 4 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/LTMorphingLabel/LTMorphingLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_LTMorphingLabel : NSObject 3 | @end 4 | @implementation PodsDummy_LTMorphingLabel 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/LTMorphingLabel/LTMorphingLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/LTMorphingLabel/LTMorphingLabel-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "LTMorphingLabel.h" 4 | 5 | FOUNDATION_EXPORT double LTMorphingLabelVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char LTMorphingLabelVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/LTMorphingLabel/LTMorphingLabel.modulemap: -------------------------------------------------------------------------------- 1 | framework module LTMorphingLabel { 2 | umbrella header "LTMorphingLabel-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/LTMorphingLabel/LTMorphingLabel.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/LTMorphingLabel" "${PODS_ROOT}/Headers/Public" 3 | OTHER_LDFLAGS = -framework "Foundation" -framework "QuartzCore" -framework "UIKit" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_ROOT = ${SRCROOT} 6 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/M13ProgressSuite/M13ProgressSuite-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_M13ProgressSuite : NSObject 3 | @end 4 | @implementation PodsDummy_M13ProgressSuite 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/M13ProgressSuite/M13ProgressSuite-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/M13ProgressSuite/M13ProgressSuite.modulemap: -------------------------------------------------------------------------------- 1 | framework module M13ProgressSuite { 2 | umbrella header "M13ProgressSuite-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/M13ProgressSuite/M13ProgressSuite.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/M13ProgressSuite" "${PODS_ROOT}/Headers/Public" 3 | OTHER_LDFLAGS = -framework "Accelerate" -framework "CoreGraphics" -framework "CoreImage" -framework "Foundation" -framework "QuartzCore" -framework "UIKit" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-AFNetworking/Pods-Backend-AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-AFNetworking/Pods-Backend-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #ifndef TARGET_OS_IOS 6 | #define TARGET_OS_IOS TARGET_OS_IPHONE 7 | #endif 8 | 9 | #ifndef TARGET_OS_WATCH 10 | #define TARGET_OS_WATCH 0 11 | #endif 12 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-AFNetworking/Pods-Backend-AFNetworking.modulemap: -------------------------------------------------------------------------------- 1 | framework module AFNetworking { 2 | umbrella header "Pods-Backend-AFNetworking-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-CocoaAsyncSocket/Pods-Backend-CocoaAsyncSocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend_CocoaAsyncSocket : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend_CocoaAsyncSocket 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-CocoaAsyncSocket/Pods-Backend-CocoaAsyncSocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-CocoaAsyncSocket/Pods-Backend-CocoaAsyncSocket-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "GCDAsyncSocket.h" 4 | #import "GCDAsyncUdpSocket.h" 5 | #import "AsyncSocket.h" 6 | #import "AsyncUdpSocket.h" 7 | 8 | FOUNDATION_EXPORT double CocoaAsyncSocketVersionNumber; 9 | FOUNDATION_EXPORT const unsigned char CocoaAsyncSocketVersionString[]; 10 | 11 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-CocoaAsyncSocket/Pods-Backend-CocoaAsyncSocket.modulemap: -------------------------------------------------------------------------------- 1 | framework module CocoaAsyncSocket { 2 | umbrella header "Pods-Backend-CocoaAsyncSocket-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-GHODictionary/Pods-Backend-GHODictionary-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend_GHODictionary : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend_GHODictionary 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-GHODictionary/Pods-Backend-GHODictionary-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-GHODictionary/Pods-Backend-GHODictionary-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "GHODict.h" 4 | #import "GHODictionary.h" 5 | 6 | FOUNDATION_EXPORT double GHODictionaryVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char GHODictionaryVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-GHODictionary/Pods-Backend-GHODictionary.modulemap: -------------------------------------------------------------------------------- 1 | framework module GHODictionary { 2 | umbrella header "Pods-Backend-GHODictionary-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-GHODictionary/Pods-Backend-GHODictionary.xcconfig: -------------------------------------------------------------------------------- 1 | CODE_SIGN_IDENTITY = 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GHODictionary" "${PODS_ROOT}/Headers/Public" 6 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-Backend 7 | PODS_ROOT = ${SRCROOT} 8 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-MPMessagePack/Pods-Backend-MPMessagePack-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend_MPMessagePack : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend_MPMessagePack 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-MPMessagePack/Pods-Backend-MPMessagePack-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-MPMessagePack/Pods-Backend-MPMessagePack.modulemap: -------------------------------------------------------------------------------- 1 | framework module MPMessagePack { 2 | umbrella header "Pods-Backend-MPMessagePack-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-MPMessagePack/Pods-Backend-MPMessagePack.xcconfig: -------------------------------------------------------------------------------- 1 | CODE_SIGN_IDENTITY = 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MPMessagePack" "${PODS_ROOT}/Headers/Public" 6 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-Backend 7 | PODS_ROOT = ${SRCROOT} 8 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-Riffle/Pods-Backend-Riffle-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend_Riffle : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend_Riffle 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-Riffle/Pods-Backend-Riffle-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-Riffle/Pods-Backend-Riffle.modulemap: -------------------------------------------------------------------------------- 1 | framework module Riffle { 2 | umbrella header "Pods-Backend-Riffle-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-Riffle/Pods-Backend-Riffle.xcconfig: -------------------------------------------------------------------------------- 1 | CODE_SIGN_IDENTITY = 2 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Riffle" "${PODS_ROOT}/Headers/Public" 6 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 7 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-Backend 8 | PODS_ROOT = ${SRCROOT} 9 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-SocketRocket/Pods-Backend-SocketRocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend_SocketRocket : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend_SocketRocket 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-SocketRocket/Pods-Backend-SocketRocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-SocketRocket/Pods-Backend-SocketRocket-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "SRWebSocket.h" 4 | 5 | FOUNDATION_EXPORT double SocketRocketVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char SocketRocketVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend-SocketRocket/Pods-Backend-SocketRocket.modulemap: -------------------------------------------------------------------------------- 1 | framework module SocketRocket { 2 | umbrella header "Pods-Backend-SocketRocket-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend/Pods-Backend-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend/Pods-Backend-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_BackendVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_BackendVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-Backend/Pods-Backend.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Backend { 2 | umbrella header "Pods-Backend-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-AFNetworking/Pods-ExAgainst-AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExAgainst_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExAgainst_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-AFNetworking/Pods-ExAgainst-AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #ifndef TARGET_OS_IOS 6 | #define TARGET_OS_IOS TARGET_OS_IPHONE 7 | #endif 8 | 9 | #ifndef TARGET_OS_WATCH 10 | #define TARGET_OS_WATCH 0 11 | #endif 12 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-AFNetworking/Pods-ExAgainst-AFNetworking.modulemap: -------------------------------------------------------------------------------- 1 | framework module AFNetworking { 2 | umbrella header "Pods-ExAgainst-AFNetworking-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-CocoaAsyncSocket/Pods-ExAgainst-CocoaAsyncSocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExAgainst_CocoaAsyncSocket : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExAgainst_CocoaAsyncSocket 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-CocoaAsyncSocket/Pods-ExAgainst-CocoaAsyncSocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-CocoaAsyncSocket/Pods-ExAgainst-CocoaAsyncSocket-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "GCDAsyncSocket.h" 4 | #import "GCDAsyncUdpSocket.h" 5 | #import "AsyncSocket.h" 6 | #import "AsyncUdpSocket.h" 7 | 8 | FOUNDATION_EXPORT double CocoaAsyncSocketVersionNumber; 9 | FOUNDATION_EXPORT const unsigned char CocoaAsyncSocketVersionString[]; 10 | 11 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-CocoaAsyncSocket/Pods-ExAgainst-CocoaAsyncSocket.modulemap: -------------------------------------------------------------------------------- 1 | framework module CocoaAsyncSocket { 2 | umbrella header "Pods-ExAgainst-CocoaAsyncSocket-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-CocoaAsyncSocket/Pods-ExAgainst-CocoaAsyncSocket.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/CocoaAsyncSocket" "${PODS_ROOT}/Headers/Public" 5 | OTHER_LDFLAGS = -framework "CFNetwork" -framework "Security" 6 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ExAgainst 7 | PODS_ROOT = ${SRCROOT} 8 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-GHODictionary/Pods-ExAgainst-GHODictionary-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExAgainst_GHODictionary : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExAgainst_GHODictionary 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-GHODictionary/Pods-ExAgainst-GHODictionary-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-GHODictionary/Pods-ExAgainst-GHODictionary-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "GHODict.h" 4 | #import "GHODictionary.h" 5 | 6 | FOUNDATION_EXPORT double GHODictionaryVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char GHODictionaryVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-GHODictionary/Pods-ExAgainst-GHODictionary.modulemap: -------------------------------------------------------------------------------- 1 | framework module GHODictionary { 2 | umbrella header "Pods-ExAgainst-GHODictionary-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-GHODictionary/Pods-ExAgainst-GHODictionary.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/GHODictionary" "${PODS_ROOT}/Headers/Public" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ExAgainst 6 | PODS_ROOT = ${SRCROOT} 7 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-MPMessagePack/Pods-ExAgainst-MPMessagePack-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExAgainst_MPMessagePack : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExAgainst_MPMessagePack 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-MPMessagePack/Pods-ExAgainst-MPMessagePack-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-MPMessagePack/Pods-ExAgainst-MPMessagePack.modulemap: -------------------------------------------------------------------------------- 1 | framework module MPMessagePack { 2 | umbrella header "Pods-ExAgainst-MPMessagePack-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-MPMessagePack/Pods-ExAgainst-MPMessagePack.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MPMessagePack" "${PODS_ROOT}/Headers/Public" 5 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ExAgainst 6 | PODS_ROOT = ${SRCROOT} 7 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-Riffle/Pods-ExAgainst-Riffle-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExAgainst_Riffle : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExAgainst_Riffle 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-Riffle/Pods-ExAgainst-Riffle-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-Riffle/Pods-ExAgainst-Riffle.modulemap: -------------------------------------------------------------------------------- 1 | framework module Riffle { 2 | umbrella header "Pods-ExAgainst-Riffle-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-Riffle/Pods-ExAgainst-Riffle.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Riffle" "${PODS_ROOT}/Headers/Public" 5 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 6 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ExAgainst 7 | PODS_ROOT = ${SRCROOT} 8 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-SocketRocket/Pods-ExAgainst-SocketRocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExAgainst_SocketRocket : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExAgainst_SocketRocket 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-SocketRocket/Pods-ExAgainst-SocketRocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-SocketRocket/Pods-ExAgainst-SocketRocket-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "SRWebSocket.h" 4 | 5 | FOUNDATION_EXPORT double SocketRocketVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char SocketRocketVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-SocketRocket/Pods-ExAgainst-SocketRocket.modulemap: -------------------------------------------------------------------------------- 1 | framework module SocketRocket { 2 | umbrella header "Pods-ExAgainst-SocketRocket-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst-SocketRocket/Pods-ExAgainst-SocketRocket.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_FRAMEWORK_BUILD_PATH 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_FRAMEWORK_BUILD_PATH" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SocketRocket" "${PODS_ROOT}/Headers/Public" 5 | OTHER_LDFLAGS = -l"icucore" -framework "CFNetwork" -framework "Security" 6 | PODS_FRAMEWORK_BUILD_PATH = $(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Pods-ExAgainst 7 | PODS_ROOT = ${SRCROOT} 8 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst/Pods-ExAgainst-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExAgainst : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExAgainst 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst/Pods-ExAgainst-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_ExAgainstVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_ExAgainstVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Pods-ExAgainst/Pods-ExAgainst.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ExAgainst { 2 | umbrella header "Pods-ExAgainst-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/RMSwipeTableViewCell/RMSwipeTableViewCell-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_RMSwipeTableViewCell : NSObject 3 | @end 4 | @implementation PodsDummy_RMSwipeTableViewCell 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/RMSwipeTableViewCell/RMSwipeTableViewCell-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/RMSwipeTableViewCell/RMSwipeTableViewCell-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | #import "RMSwipeTableViewCell.h" 4 | 5 | FOUNDATION_EXPORT double RMSwipeTableViewCellVersionNumber; 6 | FOUNDATION_EXPORT const unsigned char RMSwipeTableViewCellVersionString[]; 7 | 8 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/RMSwipeTableViewCell/RMSwipeTableViewCell.modulemap: -------------------------------------------------------------------------------- 1 | framework module RMSwipeTableViewCell { 2 | umbrella header "RMSwipeTableViewCell-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/RMSwipeTableViewCell/RMSwipeTableViewCell.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RMSwipeTableViewCell" "${PODS_ROOT}/Headers/Public" 3 | PODS_ROOT = ${SRCROOT} 4 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Spring/Spring-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Spring : NSObject 3 | @end 4 | @implementation PodsDummy_Spring 5 | @end 6 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Spring/Spring-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Spring/Spring-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double SpringVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char SpringVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Spring/Spring.modulemap: -------------------------------------------------------------------------------- 1 | framework module Spring { 2 | umbrella header "Spring-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /CardsAgainstHumanityDemo/swiftCardsAgainst/Pods/Target Support Files/Spring/Spring.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Spring" "${PODS_ROOT}/Headers/Public" 3 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 4 | PODS_ROOT = ${SRCROOT} 5 | SKIP_INSTALL = YES -------------------------------------------------------------------------------- /Godeps: -------------------------------------------------------------------------------- 1 | # This commit broke things for us: https://github.com/gopherjs/gopherjs/commit/edbe4208c0c1ef77fd7fd996de98435d150e5b76 2 | github.com/gopherjs/gopherjs 0649744efbe5408c117038b24f6e44b764089b00 3 | -------------------------------------------------------------------------------- /arbiter/__init__.py: -------------------------------------------------------------------------------- 1 | import arbiter, repl -------------------------------------------------------------------------------- /arbiter/repler/nodejs-run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cat >main.js <Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/drawable/button.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/chatDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/chatDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/chatDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/chatDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/chatDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RifflePub 3 | 4 | -------------------------------------------------------------------------------- /java/chatDemo/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /java/chatDemo/app/src/test/java/luke/com/rifflepub/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package luke.com.rifflepub; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /java/chatDemo/backend/backend.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/chatDemo/backend/backend.html~ -------------------------------------------------------------------------------- /java/chatDemo/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Wed Oct 21 11:34:03 PDT 2015 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip 7 | -------------------------------------------------------------------------------- /java/chatDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /java/droidRiffle/.gitignore: -------------------------------------------------------------------------------- 1 | mantle/mantle.aar 2 | local.properties 3 | build/* 4 | .idea 5 | *.so 6 | .gradle 7 | local.properties 8 | .idea/workspace.xml 9 | .idea/libraries 10 | .DS_Store 11 | build -------------------------------------------------------------------------------- /java/droidRiffle/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/androidTest/java/com/exis/droidriffle/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.exis.droidriffle; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/java/com/exis/droidriffle/Dog.java: -------------------------------------------------------------------------------- 1 | package com.exis.droidriffle; 2 | 3 | import com.exis.riffle.Model; 4 | 5 | // Sample riffle model for serialization and transfer 6 | public class Dog extends Model { 7 | 8 | public Dog() { 9 | super(); 10 | } 11 | 12 | public int a; 13 | public String b = "asdf"; 14 | } 15 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/droidRiffle/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/droidRiffle/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/droidRiffle/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/droidRiffle/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/java/droidRiffle/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | droidRiffle 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /java/droidRiffle/app/src/test/java/com/exis/droidriffle/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.exis.droidriffle; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /java/droidRiffle/backend/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /java/droidRiffle/backend/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'application' 2 | 3 | dependencies { 4 | // Cant import riffle directly, since its pure android at this point 5 | // compile project(':riffle') 6 | compile fileTree(dir: 'libs', include: ['*.jar']) 7 | 8 | compile 'net.jodah:typetools:0.4.4' 9 | } 10 | 11 | mainClassName = "com.example.Backend" -------------------------------------------------------------------------------- /java/droidRiffle/backend/src/main/java/com/example/Model.java: -------------------------------------------------------------------------------- 1 | package com.example; 2 | 3 | /** 4 | * Created by damouse on 2/8/16. 5 | */ 6 | //public class Model { 7 | // public static String importer() { 8 | // return "This is your android app"; 9 | // } 10 | //} 11 | -------------------------------------------------------------------------------- /java/droidRiffle/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Sat Apr 09 07:33:12 CDT 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip 7 | -------------------------------------------------------------------------------- /java/droidRiffle/riffle/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /java/droidRiffle/riffle/src/androidTest/java/com/exis/riffle/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package com.exis.riffle; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /java/droidRiffle/riffle/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /java/droidRiffle/riffle/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AndroidRiffle 3 | 4 | -------------------------------------------------------------------------------- /java/droidRiffle/riffle/src/test/java/com/exis/androidriffle/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.exis.riffle; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /java/droidRiffle/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':riffle', ':backend' 2 | -------------------------------------------------------------------------------- /js/angularSeed/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } -------------------------------------------------------------------------------- /js/angularSeed/.gitignore: -------------------------------------------------------------------------------- 1 | logs/* 2 | !.gitkeep 3 | node_modules/ 4 | bower_components/ 5 | tmp 6 | .DS_Store 7 | .idea -------------------------------------------------------------------------------- /js/angularSeed/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "globalstrict": true, 3 | "globals": { 4 | "angular": false, 5 | "describe": false, 6 | "it": false, 7 | "expect": false, 8 | "beforeEach": false, 9 | "afterEach": false, 10 | "module": false, 11 | "inject": false 12 | } 13 | } -------------------------------------------------------------------------------- /js/angularSeed/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | before_script: 6 | - export DISPLAY=:99.0 7 | - sh -e /etc/init.d/xvfb start 8 | - npm start > /dev/null & 9 | - npm run update-webdriver 10 | - sleep 1 # give server time to start 11 | 12 | script: 13 | - node_modules/.bin/karma start karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox 14 | - node_modules/.bin/protractor e2e-tests/protractor.conf.js --browser=firefox 15 | -------------------------------------------------------------------------------- /js/angularSeed/README.md: -------------------------------------------------------------------------------- 1 |
2 |

Join the Chat! 3 |
4 | 5 |

6 |
7 | 8 | ## Angular Riffle Seed 9 | 10 | A starter app that demonstrates riffle integration with Angularjs. 11 | 12 | ``` 13 | npm install 14 | npm start 15 | ``` -------------------------------------------------------------------------------- /js/angularSeed/app/app.css: -------------------------------------------------------------------------------- 1 | /* app css stylesheet */ 2 | 3 | .menu { 4 | list-style: none; 5 | border-bottom: 0.1em solid black; 6 | margin-bottom: 2em; 7 | padding: 0 0 0.5em; 8 | } 9 | 10 | .menu:before { 11 | content: "["; 12 | } 13 | 14 | .menu:after { 15 | content: "]"; 16 | } 17 | 18 | .menu > li { 19 | display: inline; 20 | } 21 | 22 | .menu > li:before { 23 | content: "|"; 24 | padding-right: 0.3em; 25 | } 26 | 27 | .menu > li:nth-child(1):before { 28 | content: ""; 29 | padding: 0; 30 | } 31 | -------------------------------------------------------------------------------- /js/angularSeed/app/app.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | // Declare app level module which depends on views, and components 5 | angular.module('myApp', [ 6 | 'ngRoute', 7 | 'myApp.view1', 8 | 'myApp.view2', 9 | 'myApp.version', 10 | "ngRiffle" 11 | ]). 12 | 13 | config(['$routeProvider', function($routeProvider) { 14 | $routeProvider.otherwise({redirectTo: '/view1'}); 15 | }]) 16 | 17 | .config(function($riffleProvider) { 18 | $riffleProvider.init("xs.demo.ng"); 19 | }) 20 | .run(function($riffle){ 21 | $riffle.open(); 22 | }); 23 | -------------------------------------------------------------------------------- /js/angularSeed/app/components/version/interpolate-filter.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('myApp.version.interpolate-filter', []) 4 | 5 | .filter('interpolate', ['version', function(version) { 6 | return function(text) { 7 | return String(text).replace(/\%VERSION\%/mg, version); 8 | }; 9 | }]); 10 | -------------------------------------------------------------------------------- /js/angularSeed/app/components/version/interpolate-filter_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('myApp.version module', function() { 4 | beforeEach(module('myApp.version')); 5 | 6 | describe('interpolate filter', function() { 7 | beforeEach(module(function($provide) { 8 | $provide.value('version', 'TEST_VER'); 9 | })); 10 | 11 | it('should replace VERSION', inject(function(interpolateFilter) { 12 | expect(interpolateFilter('before %VERSION% after')).toEqual('before TEST_VER after'); 13 | })); 14 | }); 15 | }); 16 | -------------------------------------------------------------------------------- /js/angularSeed/app/components/version/version-directive.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('myApp.version.version-directive', []) 4 | 5 | .directive('appVersion', ['version', function(version) { 6 | return function(scope, elm, attrs) { 7 | elm.text(version); 8 | }; 9 | }]); 10 | -------------------------------------------------------------------------------- /js/angularSeed/app/components/version/version-directive_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('myApp.version module', function() { 4 | beforeEach(module('myApp.version')); 5 | 6 | describe('app-version directive', function() { 7 | it('should print current version', function() { 8 | module(function($provide) { 9 | $provide.value('version', 'TEST_VER'); 10 | }); 11 | inject(function($compile, $rootScope) { 12 | var element = $compile('')($rootScope); 13 | expect(element.text()).toEqual('TEST_VER'); 14 | }); 15 | }); 16 | }); 17 | }); 18 | -------------------------------------------------------------------------------- /js/angularSeed/app/components/version/version.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('myApp.version', [ 4 | 'myApp.version.interpolate-filter', 5 | 'myApp.version.version-directive' 6 | ]) 7 | 8 | .value('version', '0.1'); 9 | -------------------------------------------------------------------------------- /js/angularSeed/app/components/version/version_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('myApp.version module', function() { 4 | beforeEach(module('myApp.version')); 5 | 6 | describe('version service', function() { 7 | it('should return current version', inject(function(version) { 8 | expect(version).toEqual('0.1'); 9 | })); 10 | }); 11 | }); 12 | -------------------------------------------------------------------------------- /js/angularSeed/app/view1/view1.html: -------------------------------------------------------------------------------- 1 |

This is the partial for view 1.

2 | -------------------------------------------------------------------------------- /js/angularSeed/app/view1/view1_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('myApp.view1 module', function() { 4 | 5 | beforeEach(module('myApp.view1')); 6 | 7 | describe('view1 controller', function(){ 8 | 9 | it('should ....', inject(function($controller) { 10 | //spec body 11 | var view1Ctrl = $controller('View1Ctrl'); 12 | expect(view1Ctrl).toBeDefined(); 13 | })); 14 | 15 | }); 16 | }); -------------------------------------------------------------------------------- /js/angularSeed/app/view2/view2.html: -------------------------------------------------------------------------------- 1 |

This is the partial for view 2.

2 |

3 | Showing of 'interpolate' filter: 4 | {{ 'Current version is v%VERSION%.' | interpolate }} 5 |

6 | -------------------------------------------------------------------------------- /js/angularSeed/app/view2/view2.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('myApp.view2', ['ngRoute']) 4 | 5 | .config(['$routeProvider', function($routeProvider) { 6 | $routeProvider.when('/view2', { 7 | templateUrl: 'view2/view2.html', 8 | controller: 'View2Ctrl' 9 | }); 10 | }]) 11 | 12 | .controller('View2Ctrl', [function() { 13 | 14 | }]); -------------------------------------------------------------------------------- /js/angularSeed/app/view2/view2_test.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('myApp.view2 module', function() { 4 | 5 | beforeEach(module('myApp.view2')); 6 | 7 | describe('view2 controller', function(){ 8 | 9 | it('should ....', inject(function($controller) { 10 | //spec body 11 | var view2Ctrl = $controller('View2Ctrl'); 12 | expect(view2Ctrl).toBeDefined(); 13 | })); 14 | 15 | }); 16 | }); -------------------------------------------------------------------------------- /js/angularSeed/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-riffle", 3 | "description": "A starter project for Angular development with riffle", 4 | "version": "0.0.0", 5 | "homepage": "https://github.com/exis-io/ngSeed", 6 | "license": "MIT", 7 | "private": true, 8 | "dependencies": { 9 | "angular": "~1.4.0", 10 | "angular-route": "~1.4.0", 11 | "angular-loader": "~1.4.0", 12 | "angular-mocks": "~1.4.0", 13 | "html5-boilerplate": "~5.2.0", 14 | "ngriffle": "latest" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /js/angularSeed/e2e-tests/protractor.conf.js: -------------------------------------------------------------------------------- 1 | exports.config = { 2 | allScriptsTimeout: 11000, 3 | 4 | specs: [ 5 | '*.js' 6 | ], 7 | 8 | capabilities: { 9 | 'browserName': 'chrome' 10 | }, 11 | 12 | baseUrl: 'http://localhost:8000/app/', 13 | 14 | framework: 'jasmine', 15 | 16 | jasmineNodeOpts: { 17 | defaultTimeoutInterval: 30000 18 | } 19 | }; 20 | -------------------------------------------------------------------------------- /js/example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "biddle", 3 | "version": "0.1.1", 4 | "description": "Tester scripts for jsRiffle", 5 | "main": "client.js", 6 | "dependencies": { 7 | "jsriffle": "latest", 8 | "crypto-js": ">= 3.1.5", 9 | "when": ">= 3.7.3", 10 | "ws": ">= 0.8.0" 11 | }, 12 | "devDependencies": {}, 13 | "scripts": { 14 | "test": "echo \"Error: no test specified\" && exit 1" 15 | }, 16 | "author": "Exis", 17 | "license": "MIT" 18 | } 19 | -------------------------------------------------------------------------------- /js/example/repl-template.js: -------------------------------------------------------------------------------- 1 | // Example REPL Template - The REPL code 2 | // ARBITER set action template 3 | 4 | var riffle = require('jsriffle'); 5 | 6 | riffle.setFabricSandbox(); 7 | 8 | var app = riffle.Domain("xs.demo.test"); 9 | var backend = app.subdomain("backend"); 10 | 11 | backend.onJoin = function() { 12 | 13 | // Exis code goes here 14 | 15 | }; 16 | 17 | backend.join() 18 | // End Example REPL Template 19 | -------------------------------------------------------------------------------- /js/example/stub.js: -------------------------------------------------------------------------------- 1 | 2 | // Example Stub - stuff 3 | // ARBITER set action register 4 | console.log("Registering"); // Expects a String, like "Registering" 5 | // End Example Stub 6 | 7 | // Example Stub - stuff 8 | // ARBITER set action call 9 | console.log("Call start"); 10 | console.log("___NODERESTART___,in:0.5,wait:0.5"); 11 | setTimeout(function (){ 12 | console.log("Call then"); // Expects a String, like "Call then" 13 | }, 1000); 14 | // End Example Stub 15 | -------------------------------------------------------------------------------- /js/example/sub-client.js: -------------------------------------------------------------------------------- 1 | var riffle = require('jsriffle'); 2 | 3 | riffle.setFabricLocal(); 4 | riffle.setLogLevelDebug(); 5 | 6 | var app = riffle.Domain("xs.demo.test"); 7 | var backend = app.subdomain("backend"); 8 | var client = app.subdomain("client"); 9 | 10 | client.onJoin = function() { 11 | 12 | // Example Pub/Sub Basic - a very basic pub/sub example 13 | backend.publish("basicSub", "Hello"); 14 | // End Example Pub/Sub Basic 15 | 16 | // Example Pub/Sub Basic Two - a basic pub/sub example 17 | backend.publish("basicSubTwo", "Hello", 3); 18 | // End Example Pub/Sub Basic Two 19 | 20 | }; 21 | 22 | client.join() 23 | -------------------------------------------------------------------------------- /js/jsRiffle/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | *.pid 4 | .DS_Store 5 | go.js 6 | go.js.map 7 | .DS_Store -------------------------------------------------------------------------------- /js/jsRiffle/.npmignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | .*.swp 4 | .lock-* 5 | examples -------------------------------------------------------------------------------- /js/jsRiffle/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jsRiffle", 3 | "description": "Riffle allows applications to connect over a fabric", 4 | "main": "./release/jsRiffle.min.js", 5 | "authors": [ 6 | "Exis" 7 | ], 8 | "license": "MIT", 9 | "keywords": [ 10 | "Riffle", 11 | "WebSocket" 12 | ], 13 | "homepage": "https://github.com/exis-io/jsRiffle", 14 | "moduleType": ["node"], 15 | "ignore": [ 16 | "**/.*", 17 | "node_modules", 18 | "bower_components", 19 | "test", 20 | "tests", 21 | "examples" 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /js/jsRiffle/docs/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [ $# -lt 1 ] 3 | then 4 | echo "Usage:" 5 | echo -e " call with version of docs to build i.e. 0.X.X" 6 | exit -1 7 | fi 8 | cat contents.md | sed "s/###version###/$1/" > jsRiffle.md && \ 9 | cat changelog.md | sed -n /START__$1/,/END__$1/p | sed "s/START__$1//" | sed "s/END__$1//" >> jsRiffle.md && \ 10 | jsdoc2md ../index.js ../src/collections.js >> jsRiffle.md 11 | -------------------------------------------------------------------------------- /js/jsRiffle/docs/changelog.md: -------------------------------------------------------------------------------- 1 | START__0.4.7 2 | ## Changes in version 0.4.7 3 | 4 | END__0.4.7 5 | START__0.4.8 6 | ## Changes in v0.4.8 7 | * Bug fix where rejecting a promise that is being returned via a call results in the success handler being called on the receiving end. 8 | 9 | END__0.4.8 10 | 11 | ## Changes in later upcoming versions 12 | -------------------------------------------------------------------------------- /js/jsRiffle/docs/contents.md: -------------------------------------------------------------------------------- 1 | # jsRiffle (v###version###) 2 | jsRiffle is an JavaScript library that provides an API for connection and interaction with Exis. 3 | 4 | -------------------------------------------------------------------------------- /js/ngRiffle/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | .tmp 4 | .DS_Store -------------------------------------------------------------------------------- /js/ngRiffle/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ngRiffle", 3 | "main": "release/ngRiffle.min.js", 4 | "authors": [ 5 | "Exis " 6 | ], 7 | "description": "Angular library wrapping jsRiffle", 8 | "keywords": [ 9 | "WAMP", 10 | "websockets", 11 | "Angular" 12 | ], 13 | "license": "MIT", 14 | "ignore": [ 15 | "**/.*", 16 | "node_modules", 17 | "bower_components", 18 | "app/bower_components", 19 | "test", 20 | "tests" 21 | ], 22 | "dependencies": { 23 | "angular": "^1.2.0", 24 | "jsRiffle": "0.4.8" 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": {}, 7 | "homepage": "https://github.com/angular/bower-angular", 8 | "_release": "1.4.8", 9 | "_resolution": { 10 | "type": "version", 11 | "tag": "v1.4.8", 12 | "commit": "572a4fcc552c27c0f4bb1b9aab395249218c1255" 13 | }, 14 | "_source": "git://github.com/angular/bower-angular.git", 15 | "_target": "^1.2.0", 16 | "_originalSource": "angular" 17 | } -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide:not(.ng-hide-animate) { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-shim { 16 | visibility:hidden; 17 | } 18 | 19 | .ng-anchor { 20 | position:absolute; 21 | } 22 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/js/ngRiffle/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.4.8", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/angular/index.js: -------------------------------------------------------------------------------- 1 | require('./angular'); 2 | module.exports = angular; 3 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/.S3UploadDone_0.9.8: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (CHECKSUM.MD5) = 65ad76bca5ed64b8b05bd2364a031be6 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | MD5 (CHECKSUM.SHA1) = c7393b86a8062a597d12002aa640136a 5 | MD5 (CHECKSUM.SHA256) = aa9619143d5b6de81745fe9b9aba0474 6 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 7 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/.S3UploadDone_latest: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (CHECKSUM.MD5) = 65ad76bca5ed64b8b05bd2364a031be6 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | MD5 (CHECKSUM.SHA1) = c7393b86a8062a597d12002aa640136a 5 | MD5 (CHECKSUM.SHA256) = aa9619143d5b6de81745fe9b9aba0474 6 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 7 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "autobahnjs", 3 | "version": "0.9.8", 4 | "main": "./autobahn.js", 5 | "dependencies": {}, 6 | "homepage": "https://github.com/tavendo/AutobahnJSbuilt", 7 | "_release": "0.9.8", 8 | "_resolution": { 9 | "type": "version", 10 | "tag": "v0.9.8", 11 | "commit": "eb4651d90d7dbeedbba756f26e00c4c420396e83" 12 | }, 13 | "_source": "git://github.com/tavendo/AutobahnJSbuilt.git", 14 | "_target": ">= 0.9.5", 15 | "_originalSource": "autobahn" 16 | } -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/CHECKSUM.MD5: -------------------------------------------------------------------------------- 1 | MD5 (autobahn.js) = 03f246d80743ecdc6fc4471ac3dcde54 2 | MD5 (autobahn.min.jgz) = 0c1190d0a92b91c1d0a98304b3a37f58 3 | MD5 (autobahn.min.js) = adf505902729c7c0b95851239ce6e16c 4 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/CHECKSUM.SHA1: -------------------------------------------------------------------------------- 1 | SHA1 (autobahn.js) = 2b152d9a2ca7373c342e09f5eeb36f4d9fd9fda6 2 | SHA1 (autobahn.min.jgz) = 6f872fd3b4f2eba16a6eb89c3a79912afda54cae 3 | SHA1 (autobahn.min.js) = b8910b86502cf669de383ab349117b76f89be6c1 4 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/CHECKSUM.SHA256: -------------------------------------------------------------------------------- 1 | SHA256 (autobahn.js) = 64fe2746f92e8ec9d929face50de7d0406dff4cd81900b19411fc35a0dc91104 2 | SHA256 (autobahn.min.jgz) = 5521bf1b41dfb4e19dbceec5507ef43f622faceb6acf6c1021650181d16c0917 3 | SHA256 (autobahn.min.js) = ae66ef96ab144771975d84e301860eb665fb258583869637d94f10c68ec4a59b 4 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/README.md: -------------------------------------------------------------------------------- 1 | # AutobahnJS "Built" 2 | 3 | This repository contains the built and released versions of [AutobahnJS](https://github.com/tavendo/AutobahnJS) ready for use in your project. 4 | 5 | ## Using with Bower 6 | 7 | Install with [bower](http://bower.io/): 8 | 9 | bower install autobahn 10 | 11 | Add a ` 14 | 15 | To list available versions of AutobahnJS: 16 | 17 | bower info autobahn 18 | -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/autobahn.min.jgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/js/ngRiffle/bower_components/autobahn/autobahn.min.jgz -------------------------------------------------------------------------------- /js/ngRiffle/bower_components/autobahn/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "autobahnjs", 3 | "version": "0.9.6", 4 | "main": "./autobahn.js", 5 | "dependencies": { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /js/ngRiffle/docs/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [ $# -lt 1 ] 3 | then 4 | echo "Usage:" 5 | echo -e " call with version of docs to build i.e. 0.X.X" 6 | exit -1 7 | fi 8 | cat contents.md | sed "s/###version###/$1/" > ngRiffle.md && \ 9 | cat changelog.md | sed -n /START__$1/,/END__$1/p | sed "s/START__$1//" | sed "s/END__$1//" >> ngRiffle.md && \ 10 | jsdoc2md ../src/ngRiffle.js >> ngRiffle.md 11 | -------------------------------------------------------------------------------- /js/ngRiffle/docs/changelog.md: -------------------------------------------------------------------------------- 1 | START__0.4.7 2 | ## Changes in v0.4.7 3 | 4 | END__0.4.7 5 | START__0.4.8 6 | ## Changes in v0.4.8 7 | * [Storage API](#RiffleStorage) 8 | * Bug fix where rejecting a promise that is being returned via a call results in the success handler being called on the receiving end. 9 | 10 | END__0.4.8 11 | 12 | ## Changes in upcoming versions 13 | -------------------------------------------------------------------------------- /js/ngRiffle/docs/contents.md: -------------------------------------------------------------------------------- 1 | # ngRiffle (v###version###) 2 | ngRiffle is an AngularJS service that wraps the [jsRiffle](https://github.com/exis-io/jsRiffle) library and provides an API for connection and interaction with Exis. 3 | 4 | -------------------------------------------------------------------------------- /python/example/repl-template.py: -------------------------------------------------------------------------------- 1 | # Example REPL Template - The REPL code 2 | # ARBITER set action template 3 | import riffle 4 | from riffle import want 5 | 6 | riffle.SetFabricSandbox() 7 | 8 | class Backend(riffle.Domain): 9 | 10 | def onJoin(self): 11 | 12 | # Exis code goes here 13 | 14 | 15 | app = riffle.Domain("xs.demo.test") 16 | 17 | Backend("backend", superdomain=app).join() 18 | # End Example REPL Template 19 | -------------------------------------------------------------------------------- /python/pyRiffle/.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info 2 | *.pyc 3 | build 4 | dist 5 | .DS_Store -------------------------------------------------------------------------------- /python/pyRiffle/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include riffle/linux-386/pymantle.so 2 | include riffle/linux-x86_64/pymantle.so 3 | include riffle/Darwin-x86_64/pymantle.so 4 | -------------------------------------------------------------------------------- /python/pyRiffle/publish.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [ -z "$1" ]; then 4 | echo "Usage: $0 " 5 | exit 1 6 | fi 7 | 8 | # Make sure we have all of the files listed in the manifest. 9 | for f in `cat MANIFEST.in`; do 10 | if [ "$f" != "include" -a ! -f "$f" ]; then 11 | echo "$f was not found." 12 | echo "Run 'make python' on that architecture and aggregate the shared library files." 13 | exit 1 14 | fi 15 | done 16 | 17 | if [ ! -f ~/.pypirc ]; then 18 | echo "~/.pypirc was not found." 19 | exit 1 20 | fi 21 | 22 | python setup.py sdist upload --repository $1 23 | -------------------------------------------------------------------------------- /python/pyRiffle/setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /python/pyRiffle/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | nosetests --with-coverage --cover-package=riffle 3 | -------------------------------------------------------------------------------- /swift/docs/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | if [ $# -lt 1 ] 3 | then 4 | echo "Usage:" 5 | echo -e " call with version of docs to build i.e. 0.X.X" 6 | exit -1 7 | fi 8 | cat contents.md | sed "s/###version###/$1/" > swiftRiffle.md && \ 9 | cat changelog.md | sed -n /START__$1/,/END__$1/p | sed "s/START__$1//" | sed "s/END__$1//" >> swiftRiffle.md && \ 10 | jsdoc2md --example-lang swift ./Docs.js >> swiftRiffle.md 11 | 12 | -------------------------------------------------------------------------------- /swift/docs/changelog.md: -------------------------------------------------------------------------------- 1 | START__0.0.2 2 | ## Changes in version 0.0.2 3 | 4 | END__0.0.2 5 | 6 | ## Changes in later upcoming versions 7 | -------------------------------------------------------------------------------- /swift/docs/contents.md: -------------------------------------------------------------------------------- 1 | # swiftRiffle (v###version###) 2 | swiftRiffle is a Swift library that provides an API for connection and interaction with Exis. 3 | 4 | -------------------------------------------------------------------------------- /swift/example/Package.swift: -------------------------------------------------------------------------------- 1 | import PackageDescription 2 | 3 | let package = Package( 4 | name: "Example", 5 | dependencies: [ 6 | .Package(url: "../swiftRiffle/Pod/Classes/", majorVersion: 1) 7 | ] 8 | ) 9 | -------------------------------------------------------------------------------- /swift/example/repl-template.swift: -------------------------------------------------------------------------------- 1 | /* 2 | // Example REPL Template - The REPL code 3 | // ARBITER set action template 4 | import Foundation 5 | import Riffle 6 | 7 | // This connects us to the sandbox fabric 8 | Riffle.SetFabricSandbox() 9 | 10 | class ExisBackend: Domain, Delegate { 11 | 12 | // When the connection is established this function is called 13 | override func onJoin() { 14 | 15 | // Exis code goes here 16 | 17 | } 18 | } 19 | 20 | // Setup the domain here 21 | ExisBackend(name: "xs.demo.test.backend").join() 22 | 23 | // End Example REPL Template 24 | */ 25 | -------------------------------------------------------------------------------- /swift/exampleIOS/.gitignore: -------------------------------------------------------------------------------- 1 | Backend/Packages -------------------------------------------------------------------------------- /swift/exampleIOS/Backend/Package.swift: -------------------------------------------------------------------------------- 1 | #if os(Linux) 2 | import PackageDescription 3 | 4 | let package = Package( 5 | dependencies: [ 6 | // For local testing within exis repo 7 | //.Package(url: "../../swiftRiffle/Pod/Classes/", majorVersion: 1) 8 | 9 | // For production 10 | .Package(url: "https://github.com/exis-io/swiftRiffleUbuntu.git", majorVersion: 0, minor: 2) 11 | ] 12 | ) 13 | #endif -------------------------------------------------------------------------------- /swift/exampleIOS/ExisiOSBackend.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swift/exampleIOS/ExisiOSBackend.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /swift/exampleIOS/Podfile: -------------------------------------------------------------------------------- 1 | 2 | use_frameworks! 3 | 4 | target :ExisiOSBackend do 5 | platform :ios, '9.0' 6 | pod "Riffle", :git => 'https://github.com/exis-io/swiftRiffleCocoapod' 7 | # pod 'Riffle', :path => '../swiftRiffle' 8 | end 9 | 10 | target :Backend do 11 | platform :osx, '10.11' 12 | pod 'Riffle', :git => 'https://github.com/exis-io/swiftRiffleCocoapod' 13 | # pod 'Riffle', :path => '../swiftRiffle' 14 | end 15 | 16 | -------------------------------------------------------------------------------- /swift/exampleIOS/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Riffle (0.2.12) 3 | 4 | DEPENDENCIES: 5 | - Riffle (from `../swiftRiffle`) 6 | 7 | EXTERNAL SOURCES: 8 | Riffle: 9 | :path: ../swiftRiffle 10 | 11 | SPEC CHECKSUMS: 12 | Riffle: 9e6352a7643279bc9631900b11c81e5822fe2a0f 13 | 14 | PODFILE CHECKSUM: eff2735b927ad79527943e2fb97af88fd8e4dbc3 15 | 16 | COCOAPODS: 1.0.0.beta.6 17 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Headers/Public/Riffle/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../../../../swiftRiffle/Pod/Assets/osx/Mantle.framework/Versions/A/Headers/Mantle.h -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Riffle (0.2.12) 3 | 4 | DEPENDENCIES: 5 | - Riffle (from `../swiftRiffle`) 6 | 7 | EXTERNAL SOURCES: 8 | Riffle: 9 | :path: ../swiftRiffle 10 | 11 | SPEC CHECKSUMS: 12 | Riffle: 9e6352a7643279bc9631900b11c81e5822fe2a0f 13 | 14 | PODFILE CHECKSUM: eff2735b927ad79527943e2fb97af88fd8e4dbc3 15 | 16 | COCOAPODS: 1.0.0.beta.6 17 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-Backend/Pods-Backend-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend 5 | @end 6 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-Backend/Pods-Backend-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_BackendVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_BackendVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-Backend/Pods-Backend.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Backend { 2 | umbrella header "Pods-Backend-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-ExisiOSBackend/Pods-ExisiOSBackend-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_ExisiOSBackend : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_ExisiOSBackend 5 | @end 6 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-ExisiOSBackend/Pods-ExisiOSBackend-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_ExisiOSBackendVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_ExisiOSBackendVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-ExisiOSBackend/Pods-ExisiOSBackend.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | ENABLE_BITCODE = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/Riffle-iOS" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/Riffle-iOS/Riffle.framework/Headers" 7 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "Riffle" 8 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-ExisiOSBackend/Pods-ExisiOSBackend.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_ExisiOSBackend { 2 | umbrella header "Pods-ExisiOSBackend-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Pods-ExisiOSBackend/Pods-ExisiOSBackend.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | ENABLE_BITCODE = NO 3 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/Riffle-iOS" 4 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/Riffle-iOS/Riffle.framework/Headers" 7 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "Riffle" 8 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-OSX/Riffle-OSX-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Riffle_OSX : NSObject 3 | @end 4 | @implementation PodsDummy_Riffle_OSX 5 | @end 6 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-OSX/Riffle-OSX-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-OSX/Riffle-OSX-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double RiffleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char RiffleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-OSX/Riffle-OSX.modulemap: -------------------------------------------------------------------------------- 1 | framework module Riffle { 2 | umbrella header "Riffle-OSX-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-iOS/Riffle-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Riffle_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_Riffle_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-iOS/Riffle-iOS-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-iOS/Riffle-iOS-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double RiffleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char RiffleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/Pods/Target Support Files/Riffle-iOS/Riffle-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Riffle { 2 | umbrella header "Riffle-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/exampleIOS/assets/backendkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/backendkeys.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/exis-logo-swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/exis-logo-swift.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/frontendbackend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/frontendbackend.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/frontendkeys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/frontendkeys.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/helloworldswifttemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/helloworldswifttemplate.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/keys.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/outputlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/outputlog.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/runbackend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/runbackend.png -------------------------------------------------------------------------------- /swift/exampleIOS/assets/runfrontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/exampleIOS/assets/runfrontend.png -------------------------------------------------------------------------------- /swift/mantle/Package.swift: -------------------------------------------------------------------------------- 1 | import PackageDescription 2 | 3 | let package = Package( 4 | name: "Mantle" 5 | ) 6 | -------------------------------------------------------------------------------- /swift/mantle/module.modulemap: -------------------------------------------------------------------------------- 1 | module Mantle { 2 | header "libriffmantle.h" 3 | link "riffmantle" 4 | export * 5 | } 6 | -------------------------------------------------------------------------------- /swift/swiftRiffle/.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | -------------------------------------------------------------------------------- /swift/swiftRiffle/.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | install: 12 | - gem install xcpretty --no-rdoc --no-ri --no-document --quiet 13 | script: 14 | - set -o pipefail && xcodebuild test -workspace Example/Riffle.xcworkspace -scheme Riffle-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c 15 | - pod lib lint --quick 16 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Podfile: -------------------------------------------------------------------------------- 1 | 2 | use_frameworks! 3 | 4 | target 'Riffle_Example' do 5 | platform :ios, '9.0' 6 | pod "Riffle", :path => "../" 7 | end 8 | 9 | target :Backend do 10 | platform :osx, '10.11' 11 | pod 'Riffle', :path => "../" 12 | end -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Riffle (0.2.01) 3 | 4 | DEPENDENCIES: 5 | - Riffle (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Riffle: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | Riffle: 5c537351ebc61eb93ee14245eac2ea1102971cb0 13 | 14 | PODFILE CHECKSUM: 684388b6c080beeaf4998edff2ce5dfbb46f0080 15 | 16 | COCOAPODS: 1.0.0.beta.5 17 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Headers/Public/Riffle/Mantle/Mantle.h: -------------------------------------------------------------------------------- 1 | ../../../../../../Pod/Assets/osx/Mantle.framework/Versions/A/Headers/Mantle.h -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - Riffle (0.2.01) 3 | 4 | DEPENDENCIES: 5 | - Riffle (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | Riffle: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | Riffle: 5c537351ebc61eb93ee14245eac2ea1102971cb0 13 | 14 | PODFILE CHECKSUM: 684388b6c080beeaf4998edff2ce5dfbb46f0080 15 | 16 | COCOAPODS: 1.0.0.beta.5 17 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Backend/Pods-Backend-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Backend : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Backend 5 | @end 6 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Backend/Pods-Backend-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_BackendVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_BackendVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Backend/Pods-Backend.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Backend { 2 | umbrella header "Pods-Backend-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Riffle_Example/Pods-Riffle_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Riffle_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Riffle_Example 5 | @end 6 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Riffle_Example/Pods-Riffle_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double Pods_Riffle_ExampleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char Pods_Riffle_ExampleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Riffle_Example/Pods-Riffle_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/Riffle-iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/Riffle-iOS/Riffle.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "Riffle" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Riffle_Example/Pods-Riffle_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_Riffle_Example { 2 | umbrella header "Pods-Riffle_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Pods-Riffle_Example/Pods-Riffle_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$CONFIGURATION_BUILD_DIR/Riffle-iOS" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$CONFIGURATION_BUILD_DIR/Riffle-iOS/Riffle.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -ObjC -framework "Riffle" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-OSX/Riffle-OSX-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Riffle_OSX : NSObject 3 | @end 4 | @implementation PodsDummy_Riffle_OSX 5 | @end 6 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-OSX/Riffle-OSX-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-OSX/Riffle-OSX-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double RiffleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char RiffleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-OSX/Riffle-OSX.modulemap: -------------------------------------------------------------------------------- 1 | framework module Riffle { 2 | umbrella header "Riffle-OSX-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-iOS/Riffle-iOS-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Riffle_iOS : NSObject 3 | @end 4 | @implementation PodsDummy_Riffle_iOS 5 | @end 6 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-iOS/Riffle-iOS-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-iOS/Riffle-iOS-umbrella.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | 4 | FOUNDATION_EXPORT double RiffleVersionNumber; 5 | FOUNDATION_EXPORT const unsigned char RiffleVersionString[]; 6 | 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Pods/Target Support Files/Riffle-iOS/Riffle-iOS.modulemap: -------------------------------------------------------------------------------- 1 | framework module Riffle { 2 | umbrella header "Riffle-iOS-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Riffle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Riffle.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Riffle/MyPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Example/Riffle/MyPlayground.playground/timeline.xctimeline: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/swift/swiftRiffle/Pod/Assets/.gitkeep -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/ios/Mantle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/ios/Mantle.framework/Mantle: -------------------------------------------------------------------------------- 1 | Versions/Current/Mantle -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/ios/Mantle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/ios/Mantle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/ios/Mantle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module "Mantle" { 2 | header "Mantle.h" 3 | 4 | export * 5 | } -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/ios/Mantle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/ios/Mantle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/osx/Mantle.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/osx/Mantle.framework/Mantle: -------------------------------------------------------------------------------- 1 | Versions/Current/Mantle -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/osx/Mantle.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/osx/Mantle.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/osx/Mantle.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module "Mantle" { 2 | header "Mantle.h" 3 | 4 | export * 5 | } -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/osx/Mantle.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Assets/osx/Mantle.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Classes/Package.swift: -------------------------------------------------------------------------------- 1 | 2 | #if os(Linux) 3 | import PackageDescription 4 | 5 | // This is a "stub" package for local development. The makefile swaps these out when building local 6 | let package = Package( 7 | name: "Riffle", 8 | dependencies: [ 9 | .Package(url: "../../../mantle", majorVersion: 1) 10 | ] 11 | ) 12 | #endif -------------------------------------------------------------------------------- /swift/swiftRiffle/Pod/Classes/Package.swift.prod: -------------------------------------------------------------------------------- 1 | 2 | #if os(Linux) 3 | import PackageDescription 4 | 5 | let package = Package( 6 | name: "Riffle", 7 | dependencies: [ 8 | .Package(url: "https://github.com/exis-io/swiftRiffleMantle.git", majorVersion: 0, minor: 2) 9 | ] 10 | ) 11 | #endif 12 | -------------------------------------------------------------------------------- /swift/swiftRiffle/_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export PATH=$PATH:/usr/local/go/bin 4 | 5 | if ! command -v go >/dev/null; then 6 | echo "go not found" 7 | exit 1 8 | fi 9 | 10 | # Use a local directory if GOPATH is not configured. 11 | if [ -z "$GOPATH" ]; then 12 | export GOPATH=$(pwd)/_go 13 | fi 14 | 15 | cd core 16 | go get -d -t . 17 | go test --cover 18 | 19 | exit $? 20 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/utils/__init__.py -------------------------------------------------------------------------------- /utils/assets/containerAgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/utils/assets/containerAgent.png -------------------------------------------------------------------------------- /utils/assets/exis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/utils/assets/exis-logo.png -------------------------------------------------------------------------------- /utils/assets/riffleAgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exis-io/Exis/5383174f7b52112a97aadd09e6b9ea837c2fa07b/utils/assets/riffleAgent.png --------------------------------------------------------------------------------