12 lines
476 B
Ruby
12 lines
476 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "NSUUID"
|
|
s.version = "1.0.0"
|
|
s.summary = "NSUUID implementation for iOS < 6.0 and OS X < 10.8."
|
|
s.homepage = "https://github.com/0xced/NSUUID"
|
|
s.license = { :type => 'MIT', :file => 'README.md' }
|
|
s.author = { "Cédric Luthi" => "cedric.luthi@gmail.com" }
|
|
s.source = { :git => "https://github.com/0xced/NSUUID.git", :tag => "1.0.0" }
|
|
s.source_files = 'NSUUID.m'
|
|
s.requires_arc = false
|
|
end
|