Skip to content

Commit

Permalink
V2.0.0 (#25)
Browse files Browse the repository at this point in the history
* Adds the new SDK

* Update README
  • Loading branch information
cozmo committed Jan 17, 2019
1 parent f608172 commit 704d9dc
Show file tree
Hide file tree
Showing 33 changed files with 509 additions and 1,140 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
command: if [ "${CIRCLE_BRANCH}" == "master" ] && ! pod trunk info CleverSDK | grep -q "$(cat VERSION)"; then $HOME/ci-scripts/circleci/github-release $GH_RELEASE_TOKEN; fi;
- run:
name: Publish CocoaPods release
command: if [ "${CIRCLE_BRANCH}" == "master" ] && ! pod trunk info CleverSDK | grep -q "$(cat VERSION)"; then pod trunk push --allow-warnings; fi;
command: if [ "${CIRCLE_BRANCH}" == "master" ] && ! pod trunk info CleverSDK | grep -q "$(cat VERSION)"; then pod trunk push; fi;
11 changes: 2 additions & 9 deletions CleverSDK.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,29 +9,22 @@

Pod::Spec.new do |s|
s.name = "CleverSDK"
# Version is also set in CLVCleverSDK.h, please keep them in sync
s.version = File.read("VERSION")
s.summary = "A simple iOS library to access Clever Instant Login"
s.description = <<-DESC
CleverSDK provides developers with a simple library to access Clever Instant Login.
The SDK includes a Login handler (the `CLVOAuthManager`) and a Login Button (the "CLVLoginButton") that can be added to any `UIView`.
The SDK returns an `access_token` to the user that can be used to make calls to the Clever API.
DESC
s.description = "CleverSDK provides developers with a simple library to access Clever Instant Login."
s.homepage = "https://github.com/Clever/ios-sdk"
s.license = "Apache 2.0"
s.authors = { "Clever" => "[email protected]" }
s.source = { :git => "https://github.com/Clever/ios-sdk.git", :tag => s.version.to_s }
s.social_media_url = "https://twitter.com/clever"
s.documentation_url = "https://dev.clever.com/"

s.platform = :ios, "8.0"
s.platform = :ios, "9.0"
s.requires_arc = true

s.public_header_files = "CleverSDK/**/*.h"
s.source_files = "CleverSDK/**/*"
s.exclude_files = "CleverSDK/**/*.plist"

s.dependency "AFNetworking", "~> 3.1"
s.dependency "PocketSVG", "~> 0.7"
s.dependency "SAMKeychain", "~> 1.5"
end
159 changes: 55 additions & 104 deletions CleverSDK.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

23 changes: 0 additions & 23 deletions CleverSDK/CLVApiRequest.h

This file was deleted.

37 changes: 0 additions & 37 deletions CleverSDK/CLVApiRequest.m

This file was deleted.

18 changes: 0 additions & 18 deletions CleverSDK/CLVCleverSDK.h

This file was deleted.

29 changes: 0 additions & 29 deletions CleverSDK/CLVLoginButton.h

This file was deleted.

125 changes: 0 additions & 125 deletions CleverSDK/CLVOAuthManager.h

This file was deleted.

Loading

0 comments on commit 704d9dc

Please sign in to comment.