-
Notifications
You must be signed in to change notification settings - Fork 998
GH-542 Adding Podspec for Cordova library #543
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
0996e39
Adding Podspec for Cordova library
bhariharan 78c8abf
Merge branch 'master' into podspec
bhariharan 9409ff1
Merge branch 'master' into podspec
bhariharan 73aeac6
Addressing some feedback
bhariharan c71841c
Merge branch 'master' into podspec
bhariharan 09e4ab7
Merge branch 'master' into podspec
bhariharan debf555
Merge branch 'master' into podspec
bhariharan d2db91d
Adding logic to auto-parse and set release version in Podspec
bhariharan 6e29eef
First stab at adding auto-update script
bhariharan a3445b9
Updating permissions of script
bhariharan 1a8e899
Updating comments
bhariharan 78fbf78
Merge branch 'master' into podspec
bhariharan 6d1917e
Merge branch 'master' into podspec
bhariharan 6471136
Merge branch 'master' into podspec
bhariharan dfb1b25
Merge branch 'master' into podspec
bhariharan 7b49ea6
Bumping up iOS version to 11.0
bhariharan d8cd2e4
Merge branch 'master' into podspec
bhariharan fc3ebe6
Updating podspec
bhariharan 0b4d9d6
Merge branch 'master' into podspec
bhariharan 9a7d45f
Updated podspec
bhariharan 093ff91
Merge branch 'master' into podspec
bhariharan f8b3a48
Adding preserve_paths and frameworks to podspec
bhariharan 371fcf4
Merge branch 'master' into podspec
bhariharan 8b9399e
Latest podspec
bhariharan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,32 @@ | ||
| Pod::Spec.new do |s| | ||
| s.name = "Cordova" | ||
| s.version = "5.1.0" | ||
| s.summary = "Cordova for iOS" | ||
|
erisu marked this conversation as resolved.
Outdated
|
||
| s.homepage = "https://github.com/apache/cordova-ios" | ||
| s.license = { :type => "Apache 2.0", :file => "LICENSE" } | ||
| s.author = { "Bharath Hariharan" => "bhariharan@salesforce.com" } | ||
|
erisu marked this conversation as resolved.
Outdated
|
||
| s.platform = :ios, "11.0" | ||
|
erisu marked this conversation as resolved.
|
||
| s.source = { :git => "https://github.com/apache/cordova-ios.git", | ||
| :tag => "{s.version}", | ||
|
erisu marked this conversation as resolved.
Outdated
|
||
| :submodules => true } | ||
| s.requires_arc = true | ||
| s.default_subspec = 'Cordova' | ||
| s.subspec 'Cordova' do |cordova| | ||
| cordova.source_files = 'CordovaLib/Classes/**/*.{h,m}', 'CordovaLib/Cordova/Cordova.h' | ||
| cordova.public_header_files = 'CordovaLib/Classes/Public/CDV.h', 'CordovaLib/Classes/Public/CDVAppDelegate.h', 'CordovaLib/Classes/Public/CDVAvailability.h', 'CordovaLib/Classes/Public/CDVAvailabilityDeprecated.h', 'CordovaLib/Classes/Public/CDVCommandDelegate.h', 'CordovaLib/Classes/Public/CDVCommandDelegateImpl.h', 'CordovaLib/Classes/Public/CDVCommandQueue.h', 'CordovaLib/Classes/Public/CDVConfigParser.h', 'CordovaLib/Classes/Public/CDVInvokedUrlCommand.h', 'CordovaLib/Classes/Public/CDVPlugin+Resources.h', 'CordovaLib/Classes/Public/CDVPlugin.h', 'CordovaLib/Classes/Public/CDVPluginResult.h', 'CordovaLib/Classes/Public/CDVScreenOrientationDelegate.h', 'CordovaLib/Classes/Public/CDVTimer.h', 'CordovaLib/Classes/Public/CDVURLProtocol.h', 'CordovaLib/Classes/Public/CDVUserAgentUtil.h', 'CordovaLib/Classes/Public/CDVViewController.h', 'CordovaLib/Classes/Public/CDVWebViewEngineProtocol.h', 'CordovaLib/Classes/Public/CDVWhitelist.h', 'CordovaLib/Classes/Public/NSDictionary+CordovaPreferences.h', 'CordovaLib/Classes/Public/NSMutableArray+QueueAdditions.h', 'CordovaLib/Classes/Private/Plugins/CDVUIWebViewEngine/CDVUIWebViewDelegate.h', 'CordovaLib/Cordova/Cordova.h' | ||
|
erisu marked this conversation as resolved.
Outdated
|
||
| cordova.prefix_header_contents = '' | ||
| cordova.requires_arc = true | ||
|
erisu marked this conversation as resolved.
|
||
| end | ||
| end | ||
|
|
||
| # | ||
| # ATTENTION: | ||
| # | ||
| # This file needs to be updated manually whenever a Cordova upgrade is performed. | ||
| # Sections that need to be updated: | ||
| # 1. {s.version} should be the latest version of Cordova. | ||
| # 2. {s.platform} should be updated if the minimum version of iOS has changed. | ||
| # 3. {cordova.source_files} should be updated if the path of the library has changed. | ||
| # 4. {cordova.public_header_files} should be updated, by removing the public headers | ||
| # that have been removed and adding the public headers that have been added. | ||
| # | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.