-
Notifications
You must be signed in to change notification settings - Fork 7
/
WordPressUI.podspec
31 lines (25 loc) · 1.08 KB
/
WordPressUI.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
28
29
30
31
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'WordPressUI'
s.version = '1.16.0'
s.summary = 'Home of reusable WordPress UI components.'
s.description = <<-DESC
This framework contains standalone and reusable components, brought to you by the WordPress iOS Team.
DESC
s.homepage = 'https://github.com/wordpress-mobile/WordPressUI-iOS'
s.license = { type: 'GPLv2', file: 'LICENSE' }
s.author = { 'The WordPress Mobile Team' => '[email protected]' }
s.platform = :ios, '11.0'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/wordpress-mobile/WordPressUI-iOS.git', tag: s.version.to_s }
s.source_files = 'Sources/WordPressUI/**/*.{h,m,swift}', 'Sources/WordPressUIObjC/**/*.{h,m,swift}'
s.resource_bundles = {
WordPressUIResources: [
'Sources/WordPressUI/Resources/*.{xcassets,storyboard}'
]
}
s.public_header_files = 'Sources/WordPressUIObjC/include'
s.test_spec do |test|
test.source_files = ['Tests/WordPressUITests/**/*.{swift,h,m}']
end
end