11 lines
373 B
Ruby
11 lines
373 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SkyLab'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'Multivariate & A/B Testing for iOS and Mac.'
|
|
s.homepage = 'https://github.com/mattt/SkyLab'
|
|
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
|
|
s.source = { :git => 'https://github.com/mattt/SkyLab.git', :tag => '0.0.1' }
|
|
s.source_files = 'SkyLab/*.{h,m}'
|
|
end
|