forked from detroit-labs/IRLSize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IRLSize.podspec
41 lines (34 loc) · 1.5 KB
/
IRLSize.podspec
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
29
30
31
32
33
34
35
36
37
38
39
40
41
Pod::Spec.new do |s|
s.name = "IRLSize"
s.version = "2.3.0"
s.summary = "A library for determining the actual physical size of pixels on an iOS or watchOS device."
s.description = <<-DESC
IRLSize is used to determine the physical size of the device
you’re using, both width and height. It includes convenience
methods for drawing a view at a specific size as well as
determining the physical size of a view.
DESC
s.homepage = "http://www.detroitlabs.com"
s.license = 'MIT'
s.author = { "Jeff Kelley" => "SlaunchaMan@gmail.com" }
s.source = { :git => "https://github.com/detroit-labs/IRLSize.git",
:tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/*', 'Pod/Classes/Private/*'
s.private_header_files = 'Pod/Classes/Private/*.h'
s.frameworks = 'Foundation'
s.ios.source_files = 'Pod/Classes/iOS/*'
s.ios.frameworks = 'UIKit'
s.watchos.source_files = 'Pod/Classes/watchOS/*'
s.watchos.frameworks = 'WatchKit'
s.dependency 'Orchard/ObjC', '>= 1.8.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
s.test_spec 'IRLSizeTests' do |ts|
ts.platform = :ios, '9.0'
ts.source_files = 'IRLSizeTests/*.{h,m}'
ts.dependency 'Kiwi'
ts.requires_app_host = true
end
end