-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardize WordPress-Editor-iOS.podspec format
- Loading branch information
1 parent
09c49f0
commit feef868
Showing
1 changed file
with
18 additions
and
27 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,39 +1,30 @@ | ||
# | ||
# Be sure to run `bundle exec pod lib lint WordPress-Editor-iOS.podspec' to ensure this is a | ||
# valid spec before submitting. | ||
# | ||
# Any lines starting with a # are optional, but their use is encouraged | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'WordPress-Editor-iOS' | ||
s.version = '1.19.4' | ||
s.summary = 'The WordPress HTML Editor.' | ||
s.name = 'WordPress-Editor-iOS' | ||
s.version = '1.19.4' | ||
|
||
s.summary = 'The WordPress HTML Editor.' | ||
s.description = <<-DESC | ||
The WordPress HTML Editor by Automattic Inc. | ||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
This library provides a UITextView subclass with HTML visual editing capabilities. | ||
Use this library if you want to create an App that interacts with WordPress HTML content. | ||
DESC | ||
|
||
s.description = <<-DESC | ||
The WordPress HTML Editor by Automattic Inc. | ||
DESC | ||
s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' | ||
s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } | ||
s.author = { 'The WordPress Mobile Team' => '[email protected]' } | ||
|
||
s.homepage = 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS' | ||
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' | ||
s.license = { :type => 'MPLv2', :file => 'LICENSE.md' } | ||
s.author = { 'Automattic' => '[email protected]', 'Diego Rey Mendez' => '[email protected]', 'Sergio Estevao' => '[email protected]', 'Jorge Leandro Perez' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } | ||
s.ios.deployment_target = '11.0' | ||
s.swift_version = '5.0' | ||
|
||
s.source = { :git => 'https://github.com/wordpress-mobile/WordPress-Aztec-iOS.git', :tag => s.version.to_s } | ||
s.module_name = "WordPressEditor" | ||
s.source_files = 'WordPressEditor/WordPressEditor/Classes/**/*' | ||
s.resources = 'WordPressEditor/WordPressEditor/Assets/**/*' | ||
|
||
s.xcconfig = {'OTHER_LDFLAGS' => '-lxml2', | ||
'HEADER_SEARCH_PATHS' => '/usr/include/libxml2'} | ||
s.xcconfig = { | ||
'OTHER_LDFLAGS' => '-lxml2', | ||
'HEADER_SEARCH_PATHS' => '/usr/include/libxml2' | ||
} | ||
|
||
s.dependency "WordPress-Aztec-iOS", s.version.to_s | ||
end |