forked from wordpress-mobile/WordPress-iOS-Shared
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WordPressShared.podspec
28 lines (23 loc) · 1.15 KB
/
WordPressShared.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Pod::Spec.new do |s|
s.name = "WordPressShared"
s.version = "1.1.1"
s.summary = "Shared components used in building the WordPress iOS apps and other library components."
s.description = <<-DESC
Shared components used in building the WordPress iOS apps and other library components.
This is the first step required to build WordPress-iOS with UI components.
DESC
s.homepage = "http://apps.wordpress.com"
s.license = "GPLv2"
s.author = { "WordPress" => "[email protected]" }
s.platform = :ios, "10.0"
s.swift_version = '4.2'
s.source = { :git => "https://github.com/wordpress-mobile/WordPress-iOS-Shared.git", :tag => s.version.to_s }
s.source_files = 'WordPressShared/**/*.{h,m,swift}'
s.private_header_files = "WordPressShared/Private/*.h"
s.resources = [ 'WordPressShared/Resources/*.{ttf,otf,json}' ]
s.exclude_files = 'WordPressShared/Exclude'
s.requires_arc = true
s.header_dir = 'WordPressShared'
s.dependency 'CocoaLumberjack', '~> 3.4'
s.dependency 'FormatterKit/TimeIntervalFormatter', '1.8.2'
end