13 lines
536 B
Ruby
13 lines
536 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'StringCoding'
|
|
s.version = '1.2'
|
|
s.license = 'zlib'
|
|
s.summary = 'Simple library for setting object properties of any type using string values. Great for configuration files.'
|
|
s.homepage = 'https://github.com/nicklockwood/StringCoding'
|
|
s.authors = 'Nick Lockwood'
|
|
s.source = { :git => 'https://github.com/nicklockwood/StringCoding.git', :tag => '1.2' }
|
|
s.source_files = 'StringCoding'
|
|
s.requires_arc = true
|
|
s.ios.deployment_target = '4.3'
|
|
s.osx.deployment_target = '10.6'
|
|
end |