From 6de693f83b2dfaee047340db4093dab832a2f6d6 Mon Sep 17 00:00:00 2001 From: Muhammad Dadu Date: Mon, 1 Dec 2014 14:44:54 -0800 Subject: [PATCH] [MOD-1798] Split SMS into seperate repository --- .travis.yml | 16 ++ Classes/.gitignore | 2 - README.md | 2 + {Classes => ios/Classes}/TiSmsModule.h | 0 {Classes => ios/Classes}/TiSmsModule.m | 0 {Classes => ios/Classes}/TiSmsModuleAssets.h | 0 {Classes => ios/Classes}/TiSmsModuleAssets.m | 0 {Classes => ios/Classes}/TiUISMSDialogProxy.h | 0 {Classes => ios/Classes}/TiUISMSDialogProxy.m | 0 LICENSE => ios/LICENSE | 0 README => ios/README | 0 TiSms_Prefix.pch => ios/TiSms_Prefix.pch | 0 {assets => ios/assets}/README | 0 build.py => ios/build.py | 0 .../documentation}/changelog.md | 0 {documentation => ios/documentation}/index.md | 0 .../documentation}/smsdialog.md | 0 {example => ios/example}/app.js | 0 {hooks => ios/hooks}/README | 0 {hooks => ios/hooks}/add.py | 0 {hooks => ios/hooks}/install.py | 0 {hooks => ios/hooks}/remove.py | 0 {hooks => ios/hooks}/uninstall.py | 0 manifest => ios/manifest | 2 +- module.xcconfig => ios/module.xcconfig | 0 {screenshots => ios/screenshots}/ipad.png | Bin {screenshots => ios/screenshots}/unable.png | Bin .../sms.xcodeproj}/clinttredway.mode1v3 | 0 .../sms.xcodeproj}/project.pbxproj | 0 titanium.xcconfig => ios/titanium.xcconfig | 4 +- sms.xcodeproj/clinttredway.pbxuser | 142 ------------------ 31 files changed, 21 insertions(+), 147 deletions(-) create mode 100644 .travis.yml delete mode 100644 Classes/.gitignore create mode 100644 README.md rename {Classes => ios/Classes}/TiSmsModule.h (100%) rename {Classes => ios/Classes}/TiSmsModule.m (100%) rename {Classes => ios/Classes}/TiSmsModuleAssets.h (100%) rename {Classes => ios/Classes}/TiSmsModuleAssets.m (100%) rename {Classes => ios/Classes}/TiUISMSDialogProxy.h (100%) rename {Classes => ios/Classes}/TiUISMSDialogProxy.m (100%) rename LICENSE => ios/LICENSE (100%) rename README => ios/README (100%) rename TiSms_Prefix.pch => ios/TiSms_Prefix.pch (100%) rename {assets => ios/assets}/README (100%) rename build.py => ios/build.py (100%) rename {documentation => ios/documentation}/changelog.md (100%) rename {documentation => ios/documentation}/index.md (100%) rename {documentation => ios/documentation}/smsdialog.md (100%) rename {example => ios/example}/app.js (100%) rename {hooks => ios/hooks}/README (100%) rename {hooks => ios/hooks}/add.py (100%) rename {hooks => ios/hooks}/install.py (100%) rename {hooks => ios/hooks}/remove.py (100%) rename {hooks => ios/hooks}/uninstall.py (100%) rename manifest => ios/manifest (95%) rename module.xcconfig => ios/module.xcconfig (100%) rename {screenshots => ios/screenshots}/ipad.png (100%) rename {screenshots => ios/screenshots}/unable.png (100%) rename {sms.xcodeproj => ios/sms.xcodeproj}/clinttredway.mode1v3 (100%) rename {sms.xcodeproj => ios/sms.xcodeproj}/project.pbxproj (100%) rename titanium.xcconfig => ios/titanium.xcconfig (74%) delete mode 100644 sms.xcodeproj/clinttredway.pbxuser diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..03eef5e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: objective-c +env: +global: + - "MODULE_NAME=ti.sms" +before_install: + - MODULE_ROOT=$PWD +install: + - cd $MODULE_ROOT + - curl -o install.sh https://raw.githubusercontent.com/appcelerator-modules/ci/master/travis/install.sh + - source install.sh -s 3.2.2.GA +script: + - curl -o script.sh https://raw.githubusercontent.com/appcelerator-modules/ci/master/travis/script.sh + - source script.sh +after_success: # and this only on success + - curl -o deploy.sh https://raw.githubusercontent.com/appcelerator-modules/ci/master/travis/deploy.sh + - source deploy.sh \ No newline at end of file diff --git a/Classes/.gitignore b/Classes/.gitignore deleted file mode 100644 index cb71649..0000000 --- a/Classes/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -TiSms.h -TiSms.m diff --git a/README.md b/README.md new file mode 100644 index 0000000..689381d --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +ti.sms [![Build Status](https://magnum.travis-ci.com/appcelerator-modules/ti.sms.svg?token=C6poLybMz9ERuFX5KZsz)](https://magnum.travis-ci.com/appcelerator-modules/ti.sms) +============ diff --git a/Classes/TiSmsModule.h b/ios/Classes/TiSmsModule.h similarity index 100% rename from Classes/TiSmsModule.h rename to ios/Classes/TiSmsModule.h diff --git a/Classes/TiSmsModule.m b/ios/Classes/TiSmsModule.m similarity index 100% rename from Classes/TiSmsModule.m rename to ios/Classes/TiSmsModule.m diff --git a/Classes/TiSmsModuleAssets.h b/ios/Classes/TiSmsModuleAssets.h similarity index 100% rename from Classes/TiSmsModuleAssets.h rename to ios/Classes/TiSmsModuleAssets.h diff --git a/Classes/TiSmsModuleAssets.m b/ios/Classes/TiSmsModuleAssets.m similarity index 100% rename from Classes/TiSmsModuleAssets.m rename to ios/Classes/TiSmsModuleAssets.m diff --git a/Classes/TiUISMSDialogProxy.h b/ios/Classes/TiUISMSDialogProxy.h similarity index 100% rename from Classes/TiUISMSDialogProxy.h rename to ios/Classes/TiUISMSDialogProxy.h diff --git a/Classes/TiUISMSDialogProxy.m b/ios/Classes/TiUISMSDialogProxy.m similarity index 100% rename from Classes/TiUISMSDialogProxy.m rename to ios/Classes/TiUISMSDialogProxy.m diff --git a/LICENSE b/ios/LICENSE similarity index 100% rename from LICENSE rename to ios/LICENSE diff --git a/README b/ios/README similarity index 100% rename from README rename to ios/README diff --git a/TiSms_Prefix.pch b/ios/TiSms_Prefix.pch similarity index 100% rename from TiSms_Prefix.pch rename to ios/TiSms_Prefix.pch diff --git a/assets/README b/ios/assets/README similarity index 100% rename from assets/README rename to ios/assets/README diff --git a/build.py b/ios/build.py similarity index 100% rename from build.py rename to ios/build.py diff --git a/documentation/changelog.md b/ios/documentation/changelog.md similarity index 100% rename from documentation/changelog.md rename to ios/documentation/changelog.md diff --git a/documentation/index.md b/ios/documentation/index.md similarity index 100% rename from documentation/index.md rename to ios/documentation/index.md diff --git a/documentation/smsdialog.md b/ios/documentation/smsdialog.md similarity index 100% rename from documentation/smsdialog.md rename to ios/documentation/smsdialog.md diff --git a/example/app.js b/ios/example/app.js similarity index 100% rename from example/app.js rename to ios/example/app.js diff --git a/hooks/README b/ios/hooks/README similarity index 100% rename from hooks/README rename to ios/hooks/README diff --git a/hooks/add.py b/ios/hooks/add.py similarity index 100% rename from hooks/add.py rename to ios/hooks/add.py diff --git a/hooks/install.py b/ios/hooks/install.py similarity index 100% rename from hooks/install.py rename to ios/hooks/install.py diff --git a/hooks/remove.py b/ios/hooks/remove.py similarity index 100% rename from hooks/remove.py rename to ios/hooks/remove.py diff --git a/hooks/uninstall.py b/ios/hooks/uninstall.py similarity index 100% rename from hooks/uninstall.py rename to ios/hooks/uninstall.py diff --git a/manifest b/ios/manifest similarity index 95% rename from manifest rename to ios/manifest index 9abce5b..f284c42 100644 --- a/manifest +++ b/ios/manifest @@ -14,4 +14,4 @@ name: sms moduleid: ti.sms guid: 8b8759be-a92a-4c44-a6d2-3e08393bfc36 platform: iphone -minsdk: 1.6.0 +minsdk: 3.0.0.GA diff --git a/module.xcconfig b/ios/module.xcconfig similarity index 100% rename from module.xcconfig rename to ios/module.xcconfig diff --git a/screenshots/ipad.png b/ios/screenshots/ipad.png similarity index 100% rename from screenshots/ipad.png rename to ios/screenshots/ipad.png diff --git a/screenshots/unable.png b/ios/screenshots/unable.png similarity index 100% rename from screenshots/unable.png rename to ios/screenshots/unable.png diff --git a/sms.xcodeproj/clinttredway.mode1v3 b/ios/sms.xcodeproj/clinttredway.mode1v3 similarity index 100% rename from sms.xcodeproj/clinttredway.mode1v3 rename to ios/sms.xcodeproj/clinttredway.mode1v3 diff --git a/sms.xcodeproj/project.pbxproj b/ios/sms.xcodeproj/project.pbxproj similarity index 100% rename from sms.xcodeproj/project.pbxproj rename to ios/sms.xcodeproj/project.pbxproj diff --git a/titanium.xcconfig b/ios/titanium.xcconfig similarity index 74% rename from titanium.xcconfig rename to ios/titanium.xcconfig index 1d9ee8c..9d4118e 100644 --- a/titanium.xcconfig +++ b/ios/titanium.xcconfig @@ -4,13 +4,13 @@ // OF YOUR TITANIUM SDK YOU'RE BUILDING FOR // // -TITANIUM_SDK_VERSION = 1.6.0 +TITANIUM_SDK_VERSION = 3.0.0.GA // // THESE SHOULD BE OK GENERALLY AS-IS // -TITANIUM_SDK = /Library/Application Support/Titanium/mobilesdk/osx/$(TITANIUM_SDK_VERSION) +TITANIUM_SDK = ~/Library/Application Support/Titanium/mobilesdk/osx/$(TITANIUM_SDK_VERSION) TITANIUM_BASE_SDK = "$(TITANIUM_SDK)/iphone/include" TITANIUM_BASE_SDK2 = "$(TITANIUM_SDK)/iphone/include/TiCore" HEADER_SEARCH_PATHS= $(TITANIUM_BASE_SDK) $(TITANIUM_BASE_SDK2) diff --git a/sms.xcodeproj/clinttredway.pbxuser b/sms.xcodeproj/clinttredway.pbxuser deleted file mode 100644 index 97d97fb..0000000 --- a/sms.xcodeproj/clinttredway.pbxuser +++ /dev/null @@ -1,142 +0,0 @@ -// !$*UTF8*$! -{ - 0867D690FE84028FC02AAC07 /* Project object */ = { - activeBuildConfigurationName = Debug; - activeTarget = D2AAC07D0554694100DB518D /* sms */; - codeSenseManager = 7BE0CD84138C7562000E8619 /* Code sense */; - perUserDictionary = { - PBXConfiguration.PBXFileTableDataSource3.PBXFileTableDataSource = { - PBXFileTableDataSourceColumnSortingDirectionKey = "-1"; - PBXFileTableDataSourceColumnSortingKey = PBXFileDataSource_Filename_ColumnID; - PBXFileTableDataSourceColumnWidthsKey = ( - 20, - 1378, - 20, - 48, - 43, - 43, - 20, - ); - PBXFileTableDataSourceColumnsKey = ( - PBXFileDataSource_FiletypeID, - PBXFileDataSource_Filename_ColumnID, - PBXFileDataSource_Built_ColumnID, - PBXFileDataSource_ObjectSize_ColumnID, - PBXFileDataSource_Errors_ColumnID, - PBXFileDataSource_Warnings_ColumnID, - PBXFileDataSource_Target_ColumnID, - ); - }; - PBXPerProjectTemplateStateSaveDate = 328036037; - PBXWorkspaceStateSaveDate = 328036037; - }; - perUserProjectItems = { - 7B9A83D6138DF94F0048C116 /* PBXTextBookmark */ = 7B9A83D6138DF94F0048C116 /* PBXTextBookmark */; - 7B9A83D7138DF94F0048C116 /* PBXTextBookmark */ = 7B9A83D7138DF94F0048C116 /* PBXTextBookmark */; - 7BE0CE52138CB74E000E8619 /* PBXTextBookmark */ = 7BE0CE52138CB74E000E8619 /* PBXTextBookmark */; - 7BE0CE53138CB74E000E8619 /* PBXTextBookmark */ = 7BE0CE53138CB74E000E8619 /* PBXTextBookmark */; - 7BE0CE54138CB74E000E8619 /* PBXTextBookmark */ = 7BE0CE54138CB74E000E8619 /* PBXTextBookmark */; - }; - sourceControlManager = 7BE0CD83138C7562000E8619 /* Source Control */; - userBuildSettings = { - }; - }; - 24416B8111C4CA220047AFDD /* Build & Test */ = { - activeExec = 0; - }; - 24DD6CF71134B3F500162E58 /* TiSmsModule.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1556, 860}}"; - sepNavSelRange = "{230, 0}"; - sepNavVisRange = "{0, 349}"; - }; - }; - 24DD6CF81134B3F500162E58 /* TiSmsModule.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1556, 988}}"; - sepNavSelRange = "{342, 0}"; - sepNavVisRange = "{0, 1412}"; - }; - }; - 280BD743126433A500A31860 /* TiUISMSDialogProxy.h */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1556, 856}}"; - sepNavSelRange = "{241, 0}"; - sepNavVisRange = "{0, 421}"; - }; - }; - 280BD744126433A500A31860 /* TiUISMSDialogProxy.m */ = { - uiCtxt = { - sepNavIntBoundsRect = "{{0, 0}, {1556, 1105}}"; - sepNavSelRange = "{589, 28}"; - sepNavVisRange = "{36, 2046}"; - }; - }; - 7B9A83D6138DF94F0048C116 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 280BD743126433A500A31860 /* TiUISMSDialogProxy.h */; - name = "TiUISMSDialogProxy.h: 10"; - rLen = 0; - rLoc = 241; - rType = 0; - vrLen = 421; - vrLoc = 0; - }; - 7B9A83D7138DF94F0048C116 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 280BD744126433A500A31860 /* TiUISMSDialogProxy.m */; - name = "TiUISMSDialogProxy.m: 26"; - rLen = 28; - rLoc = 589; - rType = 0; - vrLen = 2046; - vrLoc = 36; - }; - 7BE0CD83138C7562000E8619 /* Source Control */ = { - isa = PBXSourceControlManager; - fallbackIsa = XCSourceControlManager; - isSCMEnabled = 0; - scmConfiguration = { - repositoryNamesForRoots = { - "" = ""; - }; - }; - }; - 7BE0CD84138C7562000E8619 /* Code sense */ = { - isa = PBXCodeSenseManager; - indexTemplatePath = ""; - }; - 7BE0CE52138CB74E000E8619 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24DD6CF81134B3F500162E58 /* TiSmsModule.m */; - name = "TiSmsModule.m: 18"; - rLen = 0; - rLoc = 342; - rType = 0; - vrLen = 1412; - vrLoc = 0; - }; - 7BE0CE53138CB74E000E8619 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 280BD744126433A500A31860 /* TiUISMSDialogProxy.m */; - name = "TiUISMSDialogProxy.m: 68"; - rLen = 43; - rLoc = 1981; - rType = 0; - vrLen = 1945; - vrLoc = 0; - }; - 7BE0CE54138CB74E000E8619 /* PBXTextBookmark */ = { - isa = PBXTextBookmark; - fRef = 24DD6CF71134B3F500162E58 /* TiSmsModule.h */; - name = "TiSmsModule.h: 11"; - rLen = 0; - rLoc = 230; - rType = 0; - vrLen = 349; - vrLoc = 0; - }; - D2AAC07D0554694100DB518D /* sms */ = { - activeExec = 0; - }; -}