Files
DeviceKit/DeviceKit.podspec
T
Dennis Weissmann 5393c8d16c Rename project to DeviceKit
Since Device is already taken as a CocoaPod I decided to rename it to
DeviceKit
2015-11-18 23:12:18 +01:00

22 lines
1008 B
Ruby

Pod::Spec.new do |s|
s.name = 'DeviceKit'
s.version = '0.0.1'
s.summary = 'DeviceKit is a µ-framework that provides a value-type wrapper 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/).
DESC
s.homepage = 'https://github.com/dennisweissmann/DeviceKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
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.to_s }
s.source_files = 'DeviceKit-iOS', 'DeviceKit-tvOS', 'SharedCode'
end