├── .gitignore ├── .ruby-version ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── cocoapods_cordova.gemspec ├── lib ├── cocoapods-cordova │ ├── aggregate_target_installer.rb │ ├── builder.rb │ ├── installer.rb │ ├── plugin.rb │ └── pod_utils.rb ├── cocoapods_cordova.rb ├── cocoapods_plugin.rb └── pod │ └── command │ └── cordova.rb └── test ├── app ├── config.xml ├── hooks │ └── README.md ├── platforms │ └── ios │ │ ├── .gitignore │ │ ├── App.xcodeproj │ │ └── project.pbxproj │ │ ├── App │ │ ├── .gitignore │ │ ├── App-Info.plist │ │ ├── App-Prefix.pch │ │ ├── Classes │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── MainViewController.h │ │ │ ├── MainViewController.m │ │ │ └── MainViewController.xib │ │ ├── Plugins │ │ │ └── README │ │ ├── Resources │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── icons │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-50@2x.png │ │ │ │ ├── icon-60.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-72@2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ ├── icon-small.png │ │ │ │ ├── icon-small@2x.png │ │ │ │ ├── icon.png │ │ │ │ └── icon@2x.png │ │ │ ├── se.lproj │ │ │ │ └── Localizable.strings │ │ │ └── splash │ │ │ │ ├── Default-568h@2x~iphone.png │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ ├── Default@2x~iphone.png │ │ │ │ └── Default~iphone.png │ │ ├── config.xml │ │ └── main.m │ │ ├── CordovaLib │ │ ├── Classes │ │ │ ├── CDV.h │ │ │ ├── CDVAvailability.h │ │ │ ├── CDVCommandDelegate.h │ │ │ ├── CDVCommandDelegateImpl.h │ │ │ ├── CDVCommandDelegateImpl.m │ │ │ ├── CDVCommandQueue.h │ │ │ ├── CDVCommandQueue.m │ │ │ ├── CDVConfigParser.h │ │ │ ├── CDVConfigParser.m │ │ │ ├── CDVDebug.h │ │ │ ├── CDVInvokedUrlCommand.h │ │ │ ├── CDVInvokedUrlCommand.m │ │ │ ├── CDVJSON.h │ │ │ ├── CDVJSON.m │ │ │ ├── CDVLocalStorage.h │ │ │ ├── CDVLocalStorage.m │ │ │ ├── CDVPlugin.h │ │ │ ├── CDVPlugin.m │ │ │ ├── CDVPluginResult.h │ │ │ ├── CDVPluginResult.m │ │ │ ├── CDVScreenOrientationDelegate.h │ │ │ ├── CDVShared.h │ │ │ ├── CDVShared.m │ │ │ ├── CDVTimer.h │ │ │ ├── CDVTimer.m │ │ │ ├── CDVURLProtocol.h │ │ │ ├── CDVURLProtocol.m │ │ │ ├── CDVUserAgentUtil.h │ │ │ ├── CDVUserAgentUtil.m │ │ │ ├── CDVViewController.h │ │ │ ├── CDVViewController.m │ │ │ ├── CDVWebViewDelegate.h │ │ │ ├── CDVWebViewDelegate.m │ │ │ ├── CDVWhitelist.h │ │ │ ├── CDVWhitelist.m │ │ │ ├── NSArray+Comparisons.h │ │ │ ├── NSArray+Comparisons.m │ │ │ ├── NSData+Base64.h │ │ │ ├── NSData+Base64.m │ │ │ ├── NSDictionary+Extensions.h │ │ │ ├── NSDictionary+Extensions.m │ │ │ ├── NSMutableArray+QueueAdditions.h │ │ │ ├── NSMutableArray+QueueAdditions.m │ │ │ ├── UIDevice+Extensions.h │ │ │ └── UIDevice+Extensions.m │ │ ├── CordovaLib.xcodeproj │ │ │ └── project.pbxproj │ │ ├── CordovaLib_Prefix.pch │ │ ├── VERSION │ │ └── cordova.js │ │ ├── cordova │ │ ├── apple_ios_version │ │ ├── apple_osx_version │ │ ├── apple_xcode_version │ │ ├── build │ │ ├── build.xcconfig │ │ ├── check_reqs │ │ ├── clean │ │ ├── defaults.xml │ │ ├── emulate │ │ ├── lib │ │ │ ├── copy-www-build-step.sh │ │ │ ├── install-device │ │ │ ├── install-emulator │ │ │ ├── list-devices │ │ │ ├── list-emulator-images │ │ │ ├── list-started-emulators │ │ │ ├── sim.applescript │ │ │ └── start-emulator │ │ ├── log │ │ ├── run │ │ └── version │ │ ├── platform_www │ │ └── cordova.js │ │ └── www │ │ ├── cordova.js │ │ ├── cordova_plugins.js │ │ ├── css │ │ └── index.css │ │ ├── img │ │ └── logo.png │ │ ├── index.html │ │ └── js │ │ └── index.js ├── plugins │ └── ios.json └── www │ ├── css │ └── index.css │ ├── img │ └── logo.png │ ├── index.html │ └── js │ └── index.js ├── build.sh ├── clean.sh └── plugins ├── A ├── .gitignore ├── .ruby-version ├── A.podspec ├── Gemfile ├── plugin.xml ├── src │ └── ios │ │ ├── A.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── A.xccheckout │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── A.xcscheme │ │ ├── A.xcworkspace │ │ └── contents.xcworkspacedata │ │ ├── A │ │ ├── A-Prefix.pch │ │ ├── A.h │ │ └── A.m │ │ ├── ATests │ │ ├── ATests-Info.plist │ │ ├── ATests.m │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Podfile └── www │ └── A.js └── B ├── .gitignore ├── .ruby-version ├── B.podspec ├── B.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── B.xccheckout └── xcshareddata │ └── xcschemes │ └── B.xcscheme ├── B.xcworkspace └── contents.xcworkspacedata ├── B ├── B-Prefix.pch ├── B.h └── B.m ├── BTests ├── BTests-Info.plist ├── BTests.m └── en.lproj │ └── InfoPlist.strings ├── Gemfile ├── Podfile ├── plugin.xml └── www └── B.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | pkg 3 | .idea/ 4 | Gemfile.lock -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler/gem_tasks' 2 | -------------------------------------------------------------------------------- /cocoapods_cordova.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/cocoapods_cordova.gemspec -------------------------------------------------------------------------------- /lib/cocoapods-cordova/aggregate_target_installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/lib/cocoapods-cordova/aggregate_target_installer.rb -------------------------------------------------------------------------------- /lib/cocoapods-cordova/builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/lib/cocoapods-cordova/builder.rb -------------------------------------------------------------------------------- /lib/cocoapods-cordova/installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/lib/cocoapods-cordova/installer.rb -------------------------------------------------------------------------------- /lib/cocoapods-cordova/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/lib/cocoapods-cordova/plugin.rb -------------------------------------------------------------------------------- /lib/cocoapods-cordova/pod_utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/lib/cocoapods-cordova/pod_utils.rb -------------------------------------------------------------------------------- /lib/cocoapods_cordova.rb: -------------------------------------------------------------------------------- 1 | module CocoapodsCordova 2 | VERSION = "0.0.2" 3 | end 4 | -------------------------------------------------------------------------------- /lib/cocoapods_plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/lib/cocoapods_plugin.rb -------------------------------------------------------------------------------- /lib/pod/command/cordova.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/lib/pod/command/cordova.rb -------------------------------------------------------------------------------- /test/app/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/config.xml -------------------------------------------------------------------------------- /test/app/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/hooks/README.md -------------------------------------------------------------------------------- /test/app/platforms/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/.gitignore -------------------------------------------------------------------------------- /test/app/platforms/ios/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/app/platforms/ios/App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/.gitignore -------------------------------------------------------------------------------- /test/app/platforms/ios/App/App-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/App-Info.plist -------------------------------------------------------------------------------- /test/app/platforms/ios/App/App-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/App-Prefix.pch -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Classes/AppDelegate.h -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Classes/AppDelegate.m -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Classes/MainViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Classes/MainViewController.h -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Classes/MainViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Classes/MainViewController.m -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Classes/MainViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Classes/MainViewController.xib -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Plugins/README -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-40.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-40@2x.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-50.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-50@2x.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-60.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-60@2x.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-72.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-72@2x.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-76.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-76@2x.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-small.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon-small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon-small@2x.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/icons/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/icons/icon@2x.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/se.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/se.lproj/Localizable.strings -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/splash/Default-568h@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/splash/Default-568h@2x~iphone.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/splash/Default-Landscape@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/splash/Default-Landscape@2x~ipad.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/splash/Default-Landscape~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/splash/Default-Landscape~ipad.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/splash/Default-Portrait@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/splash/Default-Portrait@2x~ipad.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/splash/Default-Portrait~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/splash/Default-Portrait~ipad.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/splash/Default@2x~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/splash/Default@2x~iphone.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/Resources/splash/Default~iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/Resources/splash/Default~iphone.png -------------------------------------------------------------------------------- /test/app/platforms/ios/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/config.xml -------------------------------------------------------------------------------- /test/app/platforms/ios/App/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/App/main.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDV.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVAvailability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVAvailability.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVCommandDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVCommandDelegate.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVCommandDelegateImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVCommandDelegateImpl.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVCommandDelegateImpl.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVCommandDelegateImpl.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVCommandQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVCommandQueue.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVCommandQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVCommandQueue.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVConfigParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVConfigParser.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVConfigParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVConfigParser.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVDebug.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVInvokedUrlCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVInvokedUrlCommand.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVInvokedUrlCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVInvokedUrlCommand.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVJSON.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVJSON.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVJSON.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVLocalStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVLocalStorage.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVLocalStorage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVLocalStorage.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVPlugin.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVPlugin.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVPluginResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVPluginResult.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVPluginResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVPluginResult.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVScreenOrientationDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVScreenOrientationDelegate.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVShared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVShared.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVShared.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVShared.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVTimer.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVTimer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVTimer.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVURLProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVURLProtocol.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVURLProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVURLProtocol.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVUserAgentUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVUserAgentUtil.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVUserAgentUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVUserAgentUtil.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVViewController.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVViewController.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVWebViewDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVWebViewDelegate.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVWebViewDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVWebViewDelegate.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVWhitelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVWhitelist.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/CDVWhitelist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/CDVWhitelist.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSArray+Comparisons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSArray+Comparisons.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSArray+Comparisons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSArray+Comparisons.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSData+Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSData+Base64.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSData+Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSData+Base64.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSDictionary+Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSDictionary+Extensions.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSDictionary+Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSDictionary+Extensions.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSMutableArray+QueueAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSMutableArray+QueueAdditions.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/NSMutableArray+QueueAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/NSMutableArray+QueueAdditions.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/UIDevice+Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/UIDevice+Extensions.h -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/Classes/UIDevice+Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/Classes/UIDevice+Extensions.m -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/CordovaLib.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/CordovaLib.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/CordovaLib_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/CordovaLib_Prefix.pch -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/VERSION: -------------------------------------------------------------------------------- 1 | 3.5.0 2 | -------------------------------------------------------------------------------- /test/app/platforms/ios/CordovaLib/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/CordovaLib/cordova.js -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/apple_ios_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/apple_ios_version -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/apple_osx_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/apple_osx_version -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/apple_xcode_version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/apple_xcode_version -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/build -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/build.xcconfig -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/check_reqs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/check_reqs -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/clean -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/defaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/defaults.xml -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/emulate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/emulate -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/copy-www-build-step.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/copy-www-build-step.sh -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/install-device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/install-device -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/install-emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/install-emulator -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/list-devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/list-devices -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/list-emulator-images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/list-emulator-images -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/list-started-emulators: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/list-started-emulators -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/sim.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/sim.applescript -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/lib/start-emulator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/lib/start-emulator -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/log -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/run -------------------------------------------------------------------------------- /test/app/platforms/ios/cordova/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/cordova/version -------------------------------------------------------------------------------- /test/app/platforms/ios/platform_www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/platform_www/cordova.js -------------------------------------------------------------------------------- /test/app/platforms/ios/www/cordova.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/www/cordova.js -------------------------------------------------------------------------------- /test/app/platforms/ios/www/cordova_plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/www/cordova_plugins.js -------------------------------------------------------------------------------- /test/app/platforms/ios/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/www/css/index.css -------------------------------------------------------------------------------- /test/app/platforms/ios/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/www/img/logo.png -------------------------------------------------------------------------------- /test/app/platforms/ios/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/www/index.html -------------------------------------------------------------------------------- /test/app/platforms/ios/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/platforms/ios/www/js/index.js -------------------------------------------------------------------------------- /test/app/plugins/ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/plugins/ios.json -------------------------------------------------------------------------------- /test/app/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/www/css/index.css -------------------------------------------------------------------------------- /test/app/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/www/img/logo.png -------------------------------------------------------------------------------- /test/app/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/www/index.html -------------------------------------------------------------------------------- /test/app/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/app/www/js/index.js -------------------------------------------------------------------------------- /test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/build.sh -------------------------------------------------------------------------------- /test/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/clean.sh -------------------------------------------------------------------------------- /test/plugins/A/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/.gitignore -------------------------------------------------------------------------------- /test/plugins/A/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | -------------------------------------------------------------------------------- /test/plugins/A/A.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/A.podspec -------------------------------------------------------------------------------- /test/plugins/A/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/Gemfile -------------------------------------------------------------------------------- /test/plugins/A/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/plugin.xml -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A.xcodeproj/project.xcworkspace/xcshareddata/A.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A.xcodeproj/project.xcworkspace/xcshareddata/A.xccheckout -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A.xcodeproj/xcshareddata/xcschemes/A.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A.xcodeproj/xcshareddata/xcschemes/A.xcscheme -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A/A-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A/A-Prefix.pch -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A/A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A/A.h -------------------------------------------------------------------------------- /test/plugins/A/src/ios/A/A.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/A/A.m -------------------------------------------------------------------------------- /test/plugins/A/src/ios/ATests/ATests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/ATests/ATests-Info.plist -------------------------------------------------------------------------------- /test/plugins/A/src/ios/ATests/ATests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/ATests/ATests.m -------------------------------------------------------------------------------- /test/plugins/A/src/ios/ATests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /test/plugins/A/src/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/A/src/ios/Podfile -------------------------------------------------------------------------------- /test/plugins/A/www/A.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; -------------------------------------------------------------------------------- /test/plugins/B/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/.gitignore -------------------------------------------------------------------------------- /test/plugins/B/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.1.2 2 | -------------------------------------------------------------------------------- /test/plugins/B/B.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B.podspec -------------------------------------------------------------------------------- /test/plugins/B/B.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/plugins/B/B.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/plugins/B/B.xcodeproj/project.xcworkspace/xcshareddata/B.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B.xcodeproj/project.xcworkspace/xcshareddata/B.xccheckout -------------------------------------------------------------------------------- /test/plugins/B/B.xcodeproj/xcshareddata/xcschemes/B.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B.xcodeproj/xcshareddata/xcschemes/B.xcscheme -------------------------------------------------------------------------------- /test/plugins/B/B.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /test/plugins/B/B/B-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B/B-Prefix.pch -------------------------------------------------------------------------------- /test/plugins/B/B/B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B/B.h -------------------------------------------------------------------------------- /test/plugins/B/B/B.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/B/B.m -------------------------------------------------------------------------------- /test/plugins/B/BTests/BTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/BTests/BTests-Info.plist -------------------------------------------------------------------------------- /test/plugins/B/BTests/BTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/BTests/BTests.m -------------------------------------------------------------------------------- /test/plugins/B/BTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /test/plugins/B/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/Gemfile -------------------------------------------------------------------------------- /test/plugins/B/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/Podfile -------------------------------------------------------------------------------- /test/plugins/B/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdissent/cocoapods-cordova/HEAD/test/plugins/B/plugin.xml -------------------------------------------------------------------------------- /test/plugins/B/www/B.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; --------------------------------------------------------------------------------