-
Notifications
You must be signed in to change notification settings - Fork 12
/
Gridicons.podspec
32 lines (26 loc) · 1.06 KB
/
Gridicons.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
32
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'Gridicons'
s.version = '1.2.0'
s.summary = 'Gridicons is a tiny framework which generates Gridicon images at any resolution.'
s.description = <<-DESC
This framework contains a pack of icons – mainly ones used in the WordPress apps –
that can be reused and scaled at any resolution.
DESC
s.homepage = 'https://github.com/Automattic/Gridicons-iOS'
s.license = { type: 'GPLv2', file: 'LICENSE.md' }
s.author = { 'Automattic' => '[email protected]' }
s.social_media_url = 'https://twitter.com/automattic'
s.platform = :ios, '11.0'
s.swift_version = '5.0'
s.source = { git: 'https://github.com/Automattic/Gridicons-iOS.git', tag: s.version.to_s }
s.source_files = 'Sources/Gridicons/**/*.swift'
s.resource_bundles = {
GridiconsAssets: [
'Sources/Gridicons/Resources/*.{xcassets}'
]
}
s.test_spec do |test|
test.source_files = ['Tests/GridiconsTests/**/*.{swift}']
end
end