File tree 3 files changed +25
-2
lines changed
3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
- #2 : Changed ` StateMachine ` into a class (was a struct).
4
4
- #5 : Lowered the minimum deployment targets to iOS 8.0 and OS X 10.9.
5
+ - #6 : Added support for CocoaPods.
5
6
6
7
7
8
## [ 0.1.0] [ ] • 2015-04-29
Original file line number Diff line number Diff line change @@ -6,14 +6,16 @@ for clarity and maintainability. Can create diagrams:
6
6
7
7
![ example digraph] ( example-digraph.png )
8
8
9
- - Version 0.1 .0 (following [ Semantic Versioning] [ ] )
9
+ - Version 0.2 .0 (following [ Semantic Versioning] [ ] )
10
10
- Developed and tested under Swift 1.2 (Xcode 6.3)
11
11
- Published under the [ MIT License] ( LICENSE )
12
12
- [ Carthage] [ ] compatible
13
+ - [ CocoaPods] [ ] compatible
13
14
14
15
[ FSM ] : http://en.wikipedia.org/wiki/Finite-state_machine
15
16
[ Semantic Versioning ] : http://semver.org/
16
17
[ Carthage ] : https://github.com/Carthage/Carthage
18
+ [ CocoaPods ] : https://cocoapods.org/
17
19
18
20
19
21
Table of Contents
@@ -56,11 +58,17 @@ SwiftyStateMachine is a framework — you can build it and drag it to your
56
58
project. We recommend using [ Carthage] [ Carthage add ] :
57
59
58
60
# Cartfile
59
- github "macoscope/SwiftyStateMachine" == 0.1 .0
61
+ github "macoscope/SwiftyStateMachine" == 0.2 .0
60
62
61
63
[ Carthage add ] : https://github.com/Carthage/Carthage#adding-frameworks-to-an-application
62
64
63
65
66
+ You can also use [ CocoaPods] [ ] :
67
+
68
+ # Podfile
69
+ pod 'SwiftyStateMachine', '0.2.0'
70
+
71
+
64
72
Example
65
73
-------
66
74
Original file line number Diff line number Diff line change
1
+ Pod ::Spec . new do |s |
2
+ s . name = "SwiftyStateMachine"
3
+ s . version = "0.2.0"
4
+ s . summary = "A Swift µframework for creating finite-state machines, designed for clarity and maintainability."
5
+ s . homepage = "https://github.com/macoscope/SwiftyStateMachine"
6
+ s . license = "MIT"
7
+ s . author = { "Maciej Konieczny" => "[email protected] " }
8
+ s . social_media_url = "https://twitter.com/narfdotpl"
9
+ s . ios . deployment_target = "8.0"
10
+ s . osx . deployment_target = "10.9"
11
+ s . source = { :git => "https://github.com/macoscope/SwiftyStateMachine.git" , :tag => "#{ s . version } " }
12
+ s . source_files = "StateMachine/*.swift"
13
+ s . requires_arc = true
14
+ end
You can’t perform that action at this time.
0 commit comments