14 lines
506 B
Ruby
14 lines
506 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'TLSignals'
|
|
s.version = '0.1'
|
|
s.platform = :ios
|
|
s.license = {:type => 'Custom', :text => 'Copyright (C) 2012 Sergey Egorov' }
|
|
s.summary = 'Observer pattern with compile-time type checking for Objective-C.'
|
|
s.homepage = 'https://github.com/bsideup/TLSignals'
|
|
s.author = { 'Sergey Egorov' => 'bsideup@gmail.com' }
|
|
s.source = { :git => 'https://github.com/bsideup/TLSignals.git',
|
|
:tag => '0.1' }
|
|
|
|
s.source_files = 'TLSignals/*.{h,m, mm, cpp}'
|
|
end
|