-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTBStateMachine.podspec
39 lines (33 loc) · 1.41 KB
/
TBStateMachine.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
33
34
35
36
37
38
39
Pod::Spec.new do |s|
s.name = "TBStateMachine"
s.version = "6.11.0"
s.summary = "A lightweight hierarchical state machine framework in Objective-C."
s.description = <<-DESC
Supports all common features of a UML state machine like:
- nested states
- orthogonal regions
- pseudo states
- transitions with guards and actions
- state switching using least common ancestor algorithm and run-to-completion model
DESC
s.homepage = "https://github.com/jkrumow/TBStateMachine"
s.license = 'MIT'
s.author = { "Julian Krumow" => "julian.krumow@bogusmachine.com" }
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.source = { :git => "https://github.com/jkrumow/TBStateMachine.git", :tag => s.version.to_s }
s.default_subspec = 'Core'
s.subspec 'Core' do |core|
core.source_files = 'Pod/Core'
end
s.subspec 'Builder' do |builder|
builder.source_files = 'Pod/Builder'
builder.resource_bundle = { 'TBStateMachineBuilder' => 'Pod/Builder/Schema/*.json' }
builder.dependency 'TBStateMachine/Core'
end
s.subspec 'DebugSupport' do |debug|
debug.source_files = 'Pod/DebugSupport'
debug.dependency 'TBStateMachine/Core'
end
end