Files
DeviceKit/DeviceKit.podspec
T
Dennis Weissmann 762124d397 new swiftlint rules
use swiftformat to format source code
new (well, Swift 3) operator syntax (static funcs instead of global ones)
bump version to 1.0.1
new implementation of `isZoomed` (which hopefully works now), this closes #59
2017-01-15 11:12:34 +01:00

24 lines
1010 B
Ruby

Pod::Spec.new do |s|
s.name = 'DeviceKit'
s.version = '1.0.1'
s.summary = 'DeviceKit is a µ-framework that provides a value-type replacement of UIDevice.'
s.description = <<-DESC
`DeviceKit` is a value-type wrapper and extension of [`UIDevice`](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIDevice_Class/). It detects both devices and different simulators.
DESC
s.homepage = 'https://github.com/dennisweissmann/DeviceKit'
s.license = 'MIT'
s.author = 'Dennis Weissmann'
s.social_media_url = 'https://twitter.com/dennis_weissman'
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => 'https://github.com/dennisweissmann/DeviceKit.git', :tag => s.version }
s.source_files = 'Source'
s.requires_arc = true
end