forked from rwbutler/Updates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUpdates.podspec
More file actions
19 lines (19 loc) · 1.32 KB
/
Updates.podspec
File metadata and controls
19 lines (19 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Updates'
s.version = '2.0.2'
s.swift_version = '5.0'
s.summary = 'Updates is a framework for automatically detecting app updates and seamlessly prompting users to update.'
s.description = <<-DESC
Updates is a framework which automatically checks to see whether a new version of your app is available. When an update is released, Updates is able to present the new version number and accompanying release notes to the user giving them the choice to update. The update itself can then be initiated from within the app so that updating becomes effortless.
DESC
s.homepage = 'https://github.com/rwbutler/Updates'
s.screenshots = 'https://github.com/rwbutler/Updates/raw/master/docs/images/updates-large-logo.png'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ross Butler' => 'github@rwbutler.com' }
s.source = { :git => 'https://github.com/rwbutler/Updates.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ross_w_butler'
s.frameworks = 'StoreKit'
s.ios.deployment_target = '12.0'
s.source_files = 'Updates/Classes/**/*'
s.resource_bundles = { 'Updates_Privacy' => ['Example/Pods/Target\ Support\ Files/Updates/PrivacyInfo.xcprivacy'] }
end