-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathChoosy.podspec
32 lines (27 loc) · 1.57 KB
/
Choosy.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
Pod::Spec.new do |s|
s.name = "Choosy"
s.version = "0.6.2"
s.summary = "Effortlessly enable choosing of apps for external actions like browsing, emailing, tweeting, etc."
s.homepage = "http://choosy.substantial.com"
s.source = { :git => "https://github.com/substantial/choosy.git", :tag => "0.6.2" }
s.documentation_url = 'https://github.com/substantial/choosy/blob/master/README.md'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Alex Novosad" => "[email protected]" }
s.social_media_url = "https://twitter.com/choosyios"
s.description = <<-DESC
Choosy lets you write short, app-agnostic code to execute external actions
such as showing Twitter profiles, opening web links, displaying directions,
composing an email message, etc.
Your users will love being able to jump from one favorite app to another,
and your app will stand out for them as the one that gives them the freedom of choice.
DESC
s.screenshots = [ "https://farm6.staticflickr.com/5321/14140880604_905415ed34_o.png",
"https://farm3.staticflickr.com/2917/13953998699_0e885b9b71_o.png",
"https://farm6.staticflickr.com/5463/14140880564_4232e87bc8_o.png" ]
s.platform = :ios, "7.0"
s.source_files = "Choosy", "Choosy/**/*.{h,m}", "Choosy/*.{h,m}"
s.resource_bundle = { "ChoosyResources" => "Choosy/Resources/*" }
s.requires_arc = true
s.dependency 'Mantle', '< 2.0'
s.dependency 'Reachability', '~> 3.1'
end