-
Notifications
You must be signed in to change notification settings - Fork 2
/
SKSpriteButton.podspec
30 lines (24 loc) · 1.17 KB
/
SKSpriteButton.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
Pod::Spec.new do |s|
s.name = 'SKSpriteButton'
s.version = '1.0.1'
s.summary = 'Button implemented using SpriteKit.'
s.description = <<-DESC
This framework implements the obvious but missing button widget from Apple's SpriteKit.
This button widget is supposed to be easy to use, direct to the point.
Please refer to the github page for a more detailed discription.
DESC
s.homepage = 'https://github.com/hanjoes/SKSpriteButton'
s.screenshots = 'https://raw.githubusercontent.com/hanjoes/SKSpriteButton/master/ios_demo.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'hanjoes' => '[email protected]' }
s.source = { :git => 'https://github.com/hanjoes/SKSpriteButton.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/charshi_08'
s.ios.deployment_target = '8.3'
s.source_files = 'SKSpriteButton/Classes/**/*'
# s.resource_bundles = {
# 'SKSpriteButton' => ['SKSpriteButton/Assets/*.png']
# }
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'SpriteKit'
# s.dependency 'AFNetworking', '~> 2.3'
end