forked from andydrizen/ALDClock
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathALDClock.podspec
More file actions
24 lines (20 loc) · 950 Bytes
/
ALDClock.podspec
File metadata and controls
24 lines (20 loc) · 950 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
Pod::Spec.new do |s|
s.name = "ALDClock"
s.version = "2.0.1"
s.summary = "An interactive clock component for use in iOS projects."
s.description = <<-DESC
Add both `ALDClock.h` and `ALDClock.m` to your project, and then `#import "ALDClock.h"` into your own class. Create an instance of the clock by:
```
ALDClock *clock = [[ALDClock alloc] initWithFrame:self.view.bounds];
```
and add it to your view.
DESC
s.homepage = "https://github.com/andydrizen/ALDClock"
s.screenshots = "https://raw.github.com/andydrizen/ALDClock/master/VideoScreenshot.png"
s.license = { :type => 'BSD', :file => 'LICENCE' }
s.platform = :ios
s.source = { :git => "https://github.com/andydrizen/ALDClock.git", :tag => "2.0.1" }
s.source_files = 'ALDClock.{h,m}'
s.requires_arc = true
end