-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSKAButton.podspec
More file actions
25 lines (23 loc) · 946 Bytes
/
SKAButton.podspec
File metadata and controls
25 lines (23 loc) · 946 Bytes
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
Pod::Spec.new do |s|
s.name = 'SKAButton'
s.version = '1.0.1'
s.license = 'MIT'
s.summary = 'SKAButton of the SKAToolKit is a simple button class for SpriteKit that mimics the usefulness of UIButton'
s.homepage = 'http://spritekitalliance.com/'
s.social_media_url = 'https://twitter.com/SKADevs'
s.authors = {
'Norman Croan' => 'ncroan@gmail.com',
'Ben Kane' => 'ben.kane27@gmail.com',
'Max Kargin' => 'maksym.kargin@gmail.com',
'Skyler Lauren' => 'skyler@skymistdevelopment.com',
'Marc Vandehey' => 'marc.vandehey@gmail.com'
}
s.source = {
:git => 'https://github.com/SpriteKitAlliance/SKAButton.git',
:tag => s.version.to_s
}
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.source_files = 'Source/*.swift'
s.frameworks = 'SpriteKit'
end