forked from substantial/choosy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChoosy.podspec
25 lines (21 loc) · 1.18 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
Pod::Spec.new do |s|
s.name = "Choosy"
s.version = "0.5.1"
s.summary = "Effortlessly enable choosing of apps for external actions like browsing, emailing, tweeting, etc."
s.homepage = "http://substantial.github.io/choosy"
s.source = { :git => "https://github.com/substantial/choosy.git", :tag => "0.5.1" }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Alex Novosad" => "[email protected]" }
s.social_media_url = "http://twitter.com/choosyios"
s.description = <<-DESC
Provides a UI as well as hooks for you to create your own UI
to let people select which apps to use for various actions.
Lists of various URL schemes supported by apps are currently stored in JSON files on Github,
feel free to submit a pull request with your own app's info.
DESC
#s.screenshots = [ "https://flic.kr/p/mWUFgv", "https://flic.kr/p/mWUvX2" ]
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
end