Skip to content

Commit

Permalink
Merge pull request #1613 from seivan/feature/SHAccountStore
Browse files Browse the repository at this point in the history
Added SHAccountStore - work like ACAccountStore but with Keychain
  • Loading branch information
keith committed Mar 28, 2013
2 parents cb5d791 + 4a5fd2c commit a68977a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions SHAccountStore/0.0.1/SHAccountStore.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
Pod::Spec.new do |s|
s.name = "SHAccountStore"
s.version = "0.0.1"
s.summary = "Account Storage similar to ACAccount - using Keychain instead of Core Data."
s.description = <<-DESC
A Keychain based Account Storage similar to ACAccount for third party providers.
* SHAccount.
* SHAccountType
* SHAccountCredential
* SHAccountStore
The api works the same way as the Accounts framework.
DESC
s.homepage = "https://github.com/seivan/SHAccountStore"

s.license = {:type => 'MIT' } #,:file => 'LICENSE.md'
s.author = { "Seivan Heidari" => "seivan.heidari@icloud.com" }

s.source = { :git => "https://github.com/seivan/SHAccountStore.git", :tag => "0.0.1"}


s.platform = :ios, "5.0"

s.source_files = 'SHAccountStore/**/*.{h,m}'
s.requires_arc = true
s.dependency 'LUKeychainAccess'
s.dependency 'BlocksKit'
end

0 comments on commit a68977a

Please sign in to comment.