-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstagramer.podspec
More file actions
39 lines (27 loc) · 1.28 KB
/
Instagramer.podspec
File metadata and controls
39 lines (27 loc) · 1.28 KB
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
34
35
36
37
38
Pod::Spec.new do |s|
s.name = "Instagramer"
s.version = "0.0.1"
s.summary = "Instagram API Wrapper"
s.description = <<-DESC
Instagramer API Wrapper (swift)
DESC
s.homepage = "https://github.com/gitobi/Instagramer.git"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "TakuroOnoda" => "takuro.onoda@gitobi.com" }
s.ios.deployment_target = "7.0"
# s.osx.deployment_target = "10.7"
s.source = { :git => "https://github.com/gitobi/Instagramer.git" }
#s.source = { :git => "https://github.com/gitobi/Instagramer.git", :tag => "0.0.1" }
#s.source = { :git => "https://github.com/gitobi/Instagramer.git", :branch => "podded" }
s.source_files = "Instagramer", "Instagramer/**/*.{swift,h,m}"
# s.public_header_files = "Classes/**/*.h"
# s.resource = "icon.png"
# s.resources = "Instagramer/Resources/**/*.*"
s.resources = "Resources.bundle"
# s.resource_bundle = {'com_gitobi_Instagramer' => ["Instagramer.bundle/*"]}
# s.preserve_paths = "FilesToSave", "MoreFilesToSave"
s.requires_arc = true
s.dependency "Alamofire"
s.dependency "SwiftyJSON"
end