-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ArchitStateMachine.podspec
25 lines (21 loc) · 1012 Bytes
/
ArchitStateMachine.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
Pod::Spec.new do |s|
s.name = 'ArchitStateMachine'
s.version = '0.1.2'
s.summary = 'State machine creation framework written in Swift inspired by GKStateMachine from Apple GameplayKit'
s.homepage = 'https://github.com/alexruperez/StateMachine'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Alex Rupérez' => 'contact@alexruperez.com' }
s.source = { :git => 'https://github.com/alexruperez/StateMachine.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/alexruperez'
s.module_name = 'StateMachine'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.source_files = 'Core/*.{h,swift}'
s.ios.source_files = 'UIKit/*.{h,swift}'
s.tvos.source_files = 'UIKit/*.{h,swift}'
s.framework = 'Foundation'
s.ios.framework = 'UIKit'
s.tvos.framework = 'UIKit'
end