-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Ciprian Caba
committed
Aug 1, 2015
1 parent
e151ae4
commit 118295f
Showing
2 changed files
with
7 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,19 @@ | ||
# | ||
# Be sure to run `pod lib lint SwiftFSM.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 = "SwiftFSM" | ||
s.version = "0.1.0" | ||
s.summary = "A short description of SwiftFSM." | ||
s.summary = "A solid yet simple fsm implementation in Swift." | ||
s.description = <<-DESC | ||
An optional longer description of SwiftFSM | ||
* Markdown format. | ||
* Don't worry about the indent, we strip it! | ||
Finit state machine implementation using Enums, Generics and Closures | ||
DESC | ||
s.homepage = "https://github.com/<GITHUB_USERNAME>/SwiftFSM" | ||
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" | ||
s.homepage = "https://github.com/cipriancaba/SwiftFSM" | ||
s.license = 'MIT' | ||
s.author = { "Ciprian Caba" => "caba.ciprian@hoyoslabs.com" } | ||
s.source = { :git => "https://github.com/<GITHUB_USERNAME>/SwiftFSM.git", :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
s.author = { "Ciprian Caba" => "cipri@cipriancaba.com" } | ||
s.source = { :git => "https://github.com/cipriancaba/SwiftFSM.git", :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/cipriancaba' | ||
|
||
s.platform = :ios, '8.0' | ||
s.requires_arc = true | ||
|
||
s.source_files = 'Pod/Classes/**/*' | ||
s.resource_bundles = { | ||
'SwiftFSM' => ['Pod/Assets/*.png'] | ||
} | ||
|
||
# s.public_header_files = 'Pod/Classes/**/*.h' | ||
# s.frameworks = 'UIKit', 'MapKit' | ||
# s.dependency 'AFNetworking', '~> 2.3' | ||
end |