2016-01-30 01:15:41 +03:00
|
|
|
Pod::Spec.new do |s|
|
|
|
|
|
2016-03-05 01:16:52 +03:00
|
|
|
s.name = 'CodePush'
|
2016-04-23 02:00:19 +03:00
|
|
|
s.version = '1.10.4'
|
2016-03-05 01:16:52 +03:00
|
|
|
s.summary = 'React Native plugin for the CodePush service'
|
|
|
|
s.author = 'Microsoft Corporation'
|
|
|
|
s.license = 'MIT'
|
|
|
|
s.homepage = 'http://microsoft.github.io/code-push/'
|
2016-04-13 00:38:04 +03:00
|
|
|
s.source = { :git => 'https://github.com/Microsoft/react-native-code-push.git', :tag => "v#{s.version}-beta" }
|
2016-03-05 01:16:52 +03:00
|
|
|
s.platform = :ios, '7.0'
|
|
|
|
s.source_files = 'ios/CodePush/*.{h,m}', 'ios/CodePush/SSZipArchive/*.{h,m}', 'ios/CodePush/SSZipArchive/aes/*.{h,c}', 'ios/CodePush/SSZipArchive/minizip/*.{h,c}'
|
|
|
|
s.public_header_files = 'ios/CodePush/CodePush.h'
|
|
|
|
s.preserve_paths = '*.js'
|
|
|
|
s.library = 'z'
|
2016-01-30 01:15:41 +03:00
|
|
|
s.dependency 'React'
|
|
|
|
|
2016-03-31 17:25:19 +03:00
|
|
|
end
|