-
Notifications
You must be signed in to change notification settings - Fork 76
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
6 changed files
with
35 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,4 @@ DerivedData | |
.bundle | ||
|
||
# CocoaPods | ||
Example/Pods | ||
Pods/ |
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
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,4 +1,3 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'cocoapods', '0.35.0' | ||
# gem 'cocoapods', '0.36.0.beta.1' | ||
gem 'cocoapods', '~> 0.37' |
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,57 +1,55 @@ | ||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
activesupport (4.2.0) | ||
activesupport (4.2.1) | ||
i18n (~> 0.7) | ||
json (~> 1.7, >= 1.7.7) | ||
minitest (~> 5.1) | ||
thread_safe (~> 0.3, >= 0.3.4) | ||
tzinfo (~> 1.1) | ||
claide (0.7.0) | ||
cocoapods (0.35.0) | ||
claide (0.8.1) | ||
cocoapods (0.37.2) | ||
activesupport (>= 3.2.15) | ||
claide (~> 0.7.0) | ||
cocoapods-core (= 0.35.0) | ||
cocoapods-downloader (~> 0.8.0) | ||
cocoapods-plugins (~> 0.3.1) | ||
cocoapods-trunk (~> 0.4.1) | ||
cocoapods-try (~> 0.4.2) | ||
claide (~> 0.8.1) | ||
cocoapods-core (= 0.37.2) | ||
cocoapods-downloader (~> 0.9.0) | ||
cocoapods-plugins (~> 0.4.2) | ||
cocoapods-trunk (~> 0.6.1) | ||
cocoapods-try (~> 0.4.5) | ||
colored (~> 1.2) | ||
escape (~> 0.0.4) | ||
molinillo (~> 0.1.2) | ||
molinillo (~> 0.2.3) | ||
nap (~> 0.8) | ||
open4 (~> 1.3) | ||
xcodeproj (~> 0.20.2) | ||
cocoapods-core (0.35.0) | ||
xcodeproj (~> 0.24.2) | ||
cocoapods-core (0.37.2) | ||
activesupport (>= 3.2.15) | ||
fuzzy_match (~> 2.0.4) | ||
nap (~> 0.8.0) | ||
cocoapods-downloader (0.8.1) | ||
cocoapods-plugins (0.3.2) | ||
cocoapods-downloader (0.9.0) | ||
cocoapods-plugins (0.4.2) | ||
nap | ||
cocoapods-trunk (0.4.1) | ||
cocoapods-trunk (0.6.1) | ||
nap (>= 0.8) | ||
netrc (= 0.7.8) | ||
cocoapods-try (0.4.3) | ||
cocoapods-try (0.4.5) | ||
colored (1.2) | ||
escape (0.0.4) | ||
fuzzy_match (2.0.4) | ||
i18n (0.7.0) | ||
json (1.8.2) | ||
minitest (5.5.1) | ||
molinillo (0.1.2) | ||
json (1.8.3) | ||
minitest (5.7.0) | ||
molinillo (0.2.3) | ||
nap (0.8.0) | ||
netrc (0.7.8) | ||
open4 (1.3.4) | ||
thread_safe (0.3.4) | ||
thread_safe (0.3.5) | ||
tzinfo (1.2.2) | ||
thread_safe (~> 0.1) | ||
xcodeproj (0.20.2) | ||
xcodeproj (0.24.2) | ||
activesupport (>= 3) | ||
colored (~> 1.2) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
cocoapods (= 0.35.0) | ||
cocoapods (~> 0.37) |
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,16 +1,16 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "SimpleKeychain" | ||
s.version = "0.3.0" | ||
s.version = "0.4.0" | ||
s.summary = "A wrapper to make it really easy to deal with iOS Keychain and store your user's credentials securely." | ||
s.description = <<-DESC | ||
A simple way to store items in iOS Keychain, without the hassle of dealing with iOS Keychain API directly. | ||
It has support for the new AccessControl for Keychain items added in iOS 8. | ||
DESC | ||
s.homepage = "https://github.com/auth0/SimpleKeychain" | ||
s.license = 'MIT' | ||
s.author = { "Hernan Zalazar" => "[email protected]" } | ||
s.author = { "Auth0" => "[email protected]", "Hernan Zalazar" => "[email protected]" } | ||
s.source = { :git => "https://github.com/auth0/SimpleKeychain.git", :tag => s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/authzero' | ||
s.social_media_url = 'https://twitter.com/auth0' | ||
|
||
s.ios.platform = :ios, '7.0' | ||
s.osx.platform = :osx, '10.10' | ||
|