Skip to content

Commit

Permalink
Merge pull request #10 from macoscope/6-0.2.0-plus-cocoapods
Browse files Browse the repository at this point in the history
6 0.2.0 plus cocoapods
  • Loading branch information
narfdotpl committed Jun 6, 2015
2 parents 96f87bd + cdfb30e commit 350f9a0
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- #2: Changed `StateMachine` into a class (was a struct).
- #5: Lowered the minimum deployment targets to iOS 8.0 and OS X 10.9.
- #6: Added support for CocoaPods.


## [0.1.0][] • 2015-04-29
Expand Down
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ for clarity and maintainability. Can create diagrams:

![example digraph](example-digraph.png)

- Version 0.1.0 (following [Semantic Versioning][])
- Version 0.2.0 (following [Semantic Versioning][])
- Developed and tested under Swift 1.2 (Xcode 6.3)
- Published under the [MIT License](LICENSE)
- [Carthage][] compatible
- [CocoaPods][] compatible

[FSM]: http://en.wikipedia.org/wiki/Finite-state_machine
[Semantic Versioning]: http://semver.org/
[Carthage]: https://github.com/Carthage/Carthage
[CocoaPods]: https://cocoapods.org/


Table of Contents
Expand Down Expand Up @@ -56,11 +58,17 @@ SwiftyStateMachine is a framework — you can build it and drag it to your
project. We recommend using [Carthage][Carthage add]:

# Cartfile
github "macoscope/SwiftyStateMachine" == 0.1.0
github "macoscope/SwiftyStateMachine" == 0.2.0

[Carthage add]: https://github.com/Carthage/Carthage#adding-frameworks-to-an-application


You can also use [CocoaPods][]:

# Podfile
pod 'SwiftyStateMachine', '0.2.0'


Example
-------

Expand Down
14 changes: 14 additions & 0 deletions SwiftyStateMachine.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = "SwiftyStateMachine"
s.version = "0.2.0"
s.summary = "A Swift µframework for creating finite-state machines, designed for clarity and maintainability."
s.homepage = "https://github.com/macoscope/SwiftyStateMachine"
s.license = "MIT"
s.author = { "Maciej Konieczny" => "[email protected]" }
s.social_media_url = "https://twitter.com/narfdotpl"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/macoscope/SwiftyStateMachine.git", :tag => "#{s.version}" }
s.source_files = "StateMachine/*.swift"
s.requires_arc = true
end

0 comments on commit 350f9a0

Please sign in to comment.