forked from marchv/UIScreenExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIScreenExtension.podspec
17 lines (15 loc) · 994 Bytes
/
UIScreenExtension.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "UIScreenExtension"
s.version = "0.0.11"
s.summary = "An extension to UIScreen that offers information about the pixel density (or point density) of iPhones and iPads."
s.description = <<-DESC
This extension offers information about the pixel/point density measured in either pixels/points per centimeter/inch (PPI/PPCM).
This can for example be used to compute the screen dimension, draw a ruler or to show ECG graph on the iPhone's screen.
DESC
s.homepage = "https://github.com/marchv/UIScreenExtension"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Jens Schwarzer" => "[email protected]" }
s.platform = :ios, "13.0"
s.source = { :git => "https://github.com/marchv/UIScreenExtension.git", :tag => s.version }
s.source_files = "UIScreenExtension", "UIScreenExtension/**/*.{h,swift}", "Sources/**/*.{h,swift}"
end