-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathStateMachine.podspec
More file actions
25 lines (20 loc) · 879 Bytes
/
StateMachine.podspec
File metadata and controls
25 lines (20 loc) · 879 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 = "StateMachine"
s.version = "0.1"
s.summary = "State machine library for Objective-C."
s.homepage = "https://github.com/luisobo/StateMachine"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Luis Solano Bonet" => "contact@luissolano.com" }
# Specify the location from where the source should be retreived.
#
s.source = { :git => "https://github.com/luisobo/StateMachine.git", :tag => "0.1" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'StateMachine/**/*.{h,m}'
s.public_header_files = ['StateMachine/StateMachine.h',
'StateMachine/LSStateMachine.h',
'StateMachine/LSStateMachineMacros.h',
'StateMachine/LSStateMachineTypedefs.h',
'StateMachine/LSStateMachineDynamicAdditions.h']
s.requires_arc = true
end