-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from openpearl/develop
Version 1.0
- Loading branch information
Showing
120 changed files
with
1,957 additions
and
613 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
node_modules | ||
|
||
www/_templates/ | ||
www/assets/lib | ||
www/app/bundle.js | ||
|
||
node_modules | ||
|
||
.tmp | ||
.sass-cache | ||
<%= appPath %>/bower_components | ||
coverage | ||
platforms | ||
resources | ||
plugins | ||
*.swp | ||
*.swo | ||
*.log | ||
*.DS_Store | ||
DS_Store/ | ||
.DS_Store/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"folder_exclude_patterns": ["platforms"], | ||
"font_size": 12 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,33 @@ | ||
# Pearl: iOS Client | ||
|
||
iOS app for your personal assistant to your health. | ||
|
||
##Running Instructions | ||
Make sure you have XCode and Node.JS. Install Ionic in the [following instructions](https://www.youtube.com/watch?v=1RQCjwnlTRk), and run the app using: | ||
## About | ||
|
||
PearlClient is the code repository for Pearl's iOS app. Inspired by apps such as [Lark](TODO: Future Link Here), PearlClient wants to bring friendly and intelligent health assistance with an open source community. | ||
|
||
You can find out more about [Pearl at our homepage](https://www.openpearl.org). | ||
|
||
Pearl is developed at [Involution Studios](https://www.goinvo.com/) in [Arlington, MA](TODO: Google Maps). | ||
|
||
## For Developers | ||
|
||
### Setup | ||
|
||
* Make sure you have [XCode](TODO: Link to XCode) and [Node.JS](https://www.nodejs.org). | ||
|
||
* Install Ionic in the [following instructions](https://www.youtube.com/watch?v=1RQCjwnlTRk). | ||
|
||
* Install all dependencies using `npm install` and `bower install`. | ||
|
||
* Run the app in the emulator using `ionic emulate ios`. | ||
|
||
* Additional details can be found at the [Ionic Framework documentation](TODO: Link to Ionic install). | ||
|
||
### Fun Facts | ||
|
||
* PearlClient is developed using Ionic, a framework built on top of Angular for Cordova native application experiences. | ||
|
||
* Most (if not all) of Pearl's intelligence is within our servers. The client applications only communicate and display data to the user in a friendly manner. | ||
|
||
```ionic emulate ios``` | ||
* Keeping to a centralized "brain" helps us introduce new devices, such as Android and Echo, in a fast and decoupled way. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<widget id="com.InvoStudios.Pearl" version="0.0.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0"> | ||
<name>pearl-client</name> | ||
<name>Pearl</name> | ||
<description> | ||
An Ionic Framework and Cordova project. | ||
Your personal health assistant. | ||
</description> | ||
<author email="[email protected]" href="http://openpearl.org/"> | ||
Ionic Framework Team | ||
Involution Studios | ||
</author> | ||
<content src="index.html"/> | ||
<access origin="*"/> | ||
|
@@ -14,25 +14,10 @@ | |
<preference name="DisallowOverscroll" value="true"/> | ||
<preference name="android-minSdkVersion" value="16"/> | ||
<preference name="BackupWebStorage" value="none"/> | ||
<preference name="SplashScreen" value="screen"/> | ||
<preference name="SplashScreenDelay" value="3000"/> | ||
<preference name="SplashScreen" value="none"/> | ||
<preference name="SplashScreenDelay" value="0"/> | ||
<platform name="ios"> | ||
<icon height="57" src="resources/ios/icon/icon.png" width="57"/> | ||
<icon height="114" src="resources/ios/icon/[email protected]" width="114"/> | ||
<icon height="40" src="resources/ios/icon/icon-40.png" width="40"/> | ||
<icon height="80" src="resources/ios/icon/[email protected]" width="80"/> | ||
<icon height="50" src="resources/ios/icon/icon-50.png" width="50"/> | ||
<icon height="100" src="resources/ios/icon/[email protected]" width="100"/> | ||
<icon height="60" src="resources/ios/icon/icon-60.png" width="60"/> | ||
<icon height="120" src="resources/ios/icon/[email protected]" width="120"/> | ||
<icon height="180" src="resources/ios/icon/[email protected]" width="180"/> | ||
<icon height="72" src="resources/ios/icon/icon-72.png" width="72"/> | ||
<icon height="144" src="resources/ios/icon/[email protected]" width="144"/> | ||
<icon height="76" src="resources/ios/icon/icon-76.png" width="76"/> | ||
<icon height="152" src="resources/ios/icon/[email protected]" width="152"/> | ||
<icon height="29" src="resources/ios/icon/icon-small.png" width="29"/> | ||
<icon height="58" src="resources/ios/icon/[email protected]" width="58"/> | ||
<icon height="87" src="resources/ios/icon/[email protected]" width="87"/> | ||
<icon src="icons/ios/pearl.png"/> | ||
<splash height="1136" src="resources/ios/splash/Default-568h@2x~iphone.png" width="640"/> | ||
<splash height="1334" src="resources/ios/splash/Default-667h.png" width="750"/> | ||
<splash height="2208" src="resources/ios/splash/Default-736h.png" width="1242"/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Karma configuration | ||
// Generated on Sun Jul 05 2015 23:53:35 GMT-0400 (EDT) | ||
|
||
module.exports = function(config) { | ||
config.set({ | ||
|
||
// base path that will be used to resolve all patterns (eg. files, exclude) | ||
basePath: '', | ||
|
||
// frameworks to use | ||
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter | ||
frameworks: ['jasmine'], | ||
|
||
// list of files / patterns to load in the browser | ||
files: [ | ||
'./www/assets/lib/angular/angular.js', | ||
'./www/assets/lib/angular-mocks/angular-mocks.js', | ||
// './www/assets/lib/angular-ui-router/release/angular-ui-router.js', | ||
'./www/app/assets/lib/ionic/js/ionic.bundle.js', | ||
'./www/app/bundle.js', | ||
'./spec/**/*spec.js' | ||
], | ||
|
||
// list of files to exclude | ||
exclude: [ | ||
], | ||
|
||
// preprocess matching files before serving them to the browser | ||
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor | ||
preprocessors: { | ||
}, | ||
|
||
// test results reporter to use | ||
// possible values: 'dots', 'progress' | ||
// available reporters: https://npmjs.org/browse/keyword/karma-reporter | ||
reporters: ['progress'], | ||
|
||
// web server port | ||
port: 9876, | ||
|
||
// enable / disable colors in the output (reporters and logs) | ||
colors: true, | ||
|
||
// level of logging | ||
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG | ||
logLevel: config.LOG_INFO, | ||
|
||
// enable / disable watching file and executing tests whenever any file changes | ||
autoWatch: true, | ||
|
||
// start these browsers | ||
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher | ||
browsers: ['PhantomJS'], | ||
|
||
// Continuous Integration mode | ||
// if true, Karma captures browsers, runs the tests and exits | ||
singleRun: false | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,40 @@ | ||
{ | ||
"name": "pearl-client", | ||
"version": "1.0.0", | ||
"description": "Personal health assistant client for the iOS", | ||
"author": "David Zhu <[email protected]>", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/openpearl/PearlClient" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/openpearl/PearlClient/issues" | ||
}, | ||
"dependencies": { | ||
"gulp": "^3.5.6", | ||
"gulp-concat": "^2.2.0", | ||
"gulp-minify-css": "^0.3.0", | ||
"gulp-rename": "^1.2.0", | ||
"gulp-sass": "^1.3.3" | ||
"gulp-sass": "^1.3.3", | ||
"replace": "^0.3.0" | ||
}, | ||
"devDependencies": { | ||
"autoprefixer-core": "^5.2.0", | ||
"bower": "^1.3.3", | ||
"browserify": "^10.2.3", | ||
"chai": "^3.0.0", | ||
"gulp-debug": "^2.0.1", | ||
"gulp-flatten": "^0.1.0", | ||
"gulp-postcss": "^5.1.8", | ||
"gulp-util": "^2.2.14", | ||
"gulp-watch": "^4.3.2", | ||
"jasmine-core": "^2.3.4", | ||
"karma": "^0.12.37", | ||
"karma-browserify": "^4.2.1", | ||
"karma-jasmine": "^0.3.6", | ||
"karma-phantomjs-launcher": "^0.2.0", | ||
"mocha": "^2.2.5", | ||
"phantomjs": "^1.9.17", | ||
"shelljs": "^0.3.0", | ||
"vinyl-source-stream": "^1.1.0", | ||
"watchify": "^3.2.1" | ||
|
@@ -32,5 +53,6 @@ | |
], | ||
"cordovaPlatforms": [ | ||
"ios" | ||
] | ||
], | ||
"license": "Apache-2.0" | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.