Skip to content

Commit

Permalink
Updated podspec and README
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian Caba committed Aug 1, 2015
1 parent e151ae4 commit 118295f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 26 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pod "SwiftFSM"

## Author

Ciprian Caba, caba.ciprian@hoyoslabs.com
Ciprian Caba, cipri@cipriancaba.com

## License

Expand Down
31 changes: 6 additions & 25 deletions SwiftFSM.podspec
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

0 comments on commit 118295f

Please sign in to comment.