-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuizlet-iOS.podspec
More file actions
16 lines (15 loc) · 935 Bytes
/
Quizlet-iOS.podspec
File metadata and controls
16 lines (15 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "Quizlet-iOS"
s.version = "0.5"
s.summary = "iOS client for working with Quizlet API 2.0"
s.description = "iOS client for working with Quizlet API 2.0
The Quizlet API lets developers interested in building study tools to interact with Quizlet's vast content database of over 1640 million flashcards. The Quizlet API lets you create, search, and modify flashcard sets and classes, and much more in your own application."
s.homepage = "https://github.com/maximbilan/ios_quizlet_client"
s.license = { :type => "MIT" }
s.author = { "Maxim Bilan" => "maximb.mail@gmail.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/maximbilan/ios_quizlet_client.git", :tag => "v0.5" }
s.source_files = "Classes", "ios_quizlet_client/Sources/Quizlet/**/*.{h,m}"
s.dependency "AFNetworking", "~> 2.0"
s.requires_arc = true
end