-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathActivity.podspec
More file actions
29 lines (16 loc) · 792 Bytes
/
Activity.podspec
File metadata and controls
29 lines (16 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |s|
s.name = "Activity"
s.version = "1.0"
s.summary = "Activity for iOS Objective-C is a subclass of UIView."
s.description = "Activity is a UIView subclass that creates a customizable loading activity indicator like control.
* Mimics Apple loading indicator from App Store & Music"
s.homepage = "https://github.com/taruntyagi697/Activity"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Tarun Tyagi" => "taruntyagi697@gmail.com" }
s.platform = :ios
s.ios.deployment_target = "7.0"
s.source = { :git => "https://github.com/taruntyagi697/Activity.git", :tag => "v1.0" }
s.frameworks = "QuartzCore"
s.source_files = "Activity"
s.requires_arc = true
end