forked from nacho4d/ClockView
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClockView.podspec
More file actions
25 lines (17 loc) · 897 Bytes
/
Copy pathClockView.podspec
File metadata and controls
25 lines (17 loc) · 897 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
@version = "0.0.2"
Pod::Spec.new do |s|
s.name = "ClockView"
s.version = "0.0.1"
s.summary = "A simple class that will simulate an analog (or wall like) clock.."
s.description = <<-DESC
A simple class that will simulate an analog (or wall like) clock. ClockView makes use of various CALayers so it needs CoreAnimation (add QuartzCore.framework
DESC
s.homepage = "https://github.com/nacho4d/ClockView"
s.license = { :type => 'MIT', :file => 'License.txt' }
s.authors = { "Guillermo Ignacio Enriquez Gutierrez" => "github.com/nacho4d",
"Stephan S. Hepper" => "hello@stephanhepper.com"}
s.platform = :ios, '5.0'
s.source = {:git => "https://github.com/heppstux/ClockView.git", :tag => @version }
s.source_files = 'Classes/**/*.{h,m}'
s.requires_arc = true
end