diff --git a/README.md b/README.md index 8648234..bca6fec 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ pod "SwiftFSM" ## Author -Ciprian Caba, caba.ciprian@hoyoslabs.com +Ciprian Caba, cipri@cipriancaba.com ## License diff --git a/SwiftFSM.podspec b/SwiftFSM.podspec index 8a8dfb9..db0fdae 100644 --- a/SwiftFSM.podspec +++ b/SwiftFSM.podspec @@ -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//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//SwiftFSM.git", :tag => s.version.to_s } - # s.social_media_url = 'https://twitter.com/' + 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