forked from sghiassy/StateKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StateKit.podspec
47 lines (39 loc) · 1.62 KB
/
StateKit.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
40
41
42
43
44
45
46
47
#
# Be sure to run `pod lib lint StateKit.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "StateKit"
s.version = "0.1.1"
s.summary = "StateKit is a StateChart written for iOS/MacOSX Development"
s.description = <<-DESC
StateKit is a framework to model, capture, manipulate and interact with State.
StateKit models state in the form of a tree.
This is different from a Finite State Machine (FSM) that models state as a graph
DESC
s.homepage = "https://github.com/sghiassy/StateKit"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Shaheen Ghiassy" => "shaheen@groupon.com" }
s.source = { :git => "https://github.com/sghiassy/StateKit.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/shaheenghiassy'
s.platform = :ios, '7.0'
s.requires_arc = true
s.resource_bundles = {
'StateKit' => ['Pod/Assets/*.png']
}
s.default_subspec = 'ObjC'
s.subspec 'ObjC' do |objc|
objc.source_files = 'Pod/Classes/ObjC'
end
s.subspec 'Swift' do |swift|
swift.source_files = 'Pod/Classes/Swift'
end
# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end