13 lines
503 B
Ruby
13 lines
503 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'KSLabel'
|
|
s.version = '0.1.2'
|
|
s.summary = 'A drop in subclass of NSTextField for programmatically created labels.'
|
|
s.homepage = 'https://github.com/Keithbsmiley/KSLabel'
|
|
s.license = 'MIT'
|
|
s.author = { 'Keith Smiley' => 'keithbsmiley@gmail.com' }
|
|
s.source = { :git => 'https://github.com/Keithbsmiley/KSLabel.git', :tag => s.version.to_s }
|
|
s.platform = :osx
|
|
s.source_files = '*.{h,m}'
|
|
s.requires_arc = true
|
|
end
|