-
Notifications
You must be signed in to change notification settings - Fork 66
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
Showing
2 changed files
with
10 additions
and
23 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 |
---|---|---|
|
@@ -2,40 +2,27 @@ | |
# Be sure to run `pod lib lint Simplicity.podspec' to ensure this is a | ||
# valid spec before submitting. | ||
# | ||
# Any lines starting with a # are optional, but their use is encouraged | ||
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html | ||
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = "Simplicity" | ||
s.version = "0.0.1" | ||
s.summary = "A framework for authenticating with external providers on iOS" | ||
|
||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
s.version = "1.0" | ||
s.summary = "A simple way to login with Facebook or Google on iOS" | ||
|
||
s.description = <<-DESC | ||
A framework for authenticating with external providers on iOS | ||
Simplicity is a simple way to implement Facebook and Google login in your iOS and OS X apps. | ||
Simplicity can be easily extended to support other external login providers, including OAuth2, OpenID, SAML, and other custom protocols, and will support more in the future. We always appreciate pull requests! | ||
DESC | ||
|
||
s.homepage = "https://github.com/SimplicityMobile/Simplicity" | ||
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2" | ||
s.license = 'Apache 2.0' | ||
s.author = { "Edward Jiang" => "[email protected]" } | ||
s.source = { :git => "https://github.com/SimplicityMobile/Simplicity.git", :tag => s.version.to_s } | ||
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>' | ||
s.social_media_url = 'https://twitter.com/EdwardStarcraft' | ||
|
||
s.ios.deployment_target = '8.0' | ||
|
||
s.source_files = 'Simplicity/**/*.swift' | ||
|
||
# s.resource_bundles = { | ||
# 'Simplicity' => ['Simplicity/Assets/*.png'] | ||
# } | ||
|
||
# s.frameworks = 'UIKit', 'MapKit' | ||
# s.dependency 'AFNetworking', '~> 2.3' | ||
end |