mirror of
https://github.com/zhigang1992/SORelativeDateTransformer.git
synced 2026-01-12 22:52:25 +08:00
19 lines
816 B
Ruby
19 lines
816 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SORelativeDateTransformer'
|
|
s.version = '1.1.5'
|
|
s.summary = 'An NSValueTransformer subclass to turn an NSDate into a string expressing its relative age from now.'
|
|
s.homepage = 'https://github.com/billgarrison/SORelativeDateTransformer'
|
|
s.license = 'Creative Commons Attribution-ShareAlike 3.0 Unported License (CC BY-SA 3.0)'
|
|
s.author = { 'billgarrison' => '1billgarrison@gmail.com' }
|
|
s.source = {
|
|
:git => 'https://github.com/billgarrison/SORelativeDateTransformer.git',
|
|
:tag => '1.1.5'
|
|
}
|
|
s.source_files = 'SORelativeDateTransformer/*.{h,m}'
|
|
s.resources = 'SORelativeDateTransformer/SORelativeDateTransformer.bundle'
|
|
s.requires_arc = false
|
|
s.ios.deployment_target = '4.3'
|
|
s.osx.deployment_target = '10.7'
|
|
end
|
|
|