13 lines
617 B
Ruby
13 lines
617 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "UIDeviceIdentifier"
|
|
s.version = "0.1"
|
|
s.summary = "UIDeviceHardware is a class which allows querying of the current users device, and returns a human formatted string."
|
|
s.homepage = "https://github.com/squarefrog/UIDeviceIdentifier"
|
|
s.license = 'MIT'
|
|
s.authors = [ "Paul Williamson", "Jaybles" ]
|
|
s.source = { :git => "https://github.com/squarefrog/UIDeviceIdentifier.git", :tag => "0.1" }
|
|
s.platform = :ios
|
|
s.source_files = 'Classes', 'UIDeviceIdentifier/**/*.{h,m}'
|
|
s.public_header_files = 'UIDeviceIdentifier/**/*.h'
|
|
end
|