forked from wordpress-mobile/WordPressUI-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WordPressUI.podspec
28 lines (23 loc) · 945 Bytes
/
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
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'WordPressUI'
s.version = '1.12.2'
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 = 'WordPressUI/**/*.{h,m,swift}'
s.resource_bundles = {
WordPressUIResources: [
'WordPressUI/Resources/*.{xcassets}',
'WordPressUI/**/*.{storyboard}'
]
}
s.header_dir = 'WordPressUI'
end