forked from UrbanApps/Armchair
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Armchair.podspec
33 lines (29 loc) · 1.67 KB
/
Armchair.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "Armchair"
s.version = "0.3.7"
s.summary = "A simple yet powerful App Review Manager for iOS and OSX in Swift"
s.description = <<-DESC
A simple yet powerful App Review Manager for iOS and OSX in Swift.
* 100% Swift
* Both iOS and OS X Support
* Fully Configurable at Runtime
* Default Localizations for Dozens of Languages
* Prevent Rating Prompts on Different Devices
* Uses UIApplication/NSApplication Lifecycle Notifications
* Easy to Setup
* iTunes Affiliate Codes
* Ready For Primetime
DESC
s.homepage = "https://github.com/UrbanApps/Armchair"
s.screenshots = "https://raw.githubusercontent.com/UrbanApps/Armchair/assets/armchair-iOS.png", "https://raw.githubusercontent.com/UrbanApps/Armchair/assets/armchair-OSX.png"
s.social_media_url = 'https://twitter.com/coneybeare'
s.authors = { 'Matt Coneybeare' => '[email protected]' }
s.source = { :git => 'https://github.com/UrbanApps/Armchair.git', :tag => s.version }
s.license = { :type => "MIT", :file => "LICENSE" }
s.source_files = "Source/*.{h,swift}"
s.resources = "Source/Localization/*.lproj"
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.swift_version = '5.0'
end