forked from InderKumarRathore/DeviceGuru
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeviceGuru.podspec
More file actions
25 lines (21 loc) · 906 Bytes
/
DeviceGuru.podspec
File metadata and controls
25 lines (21 loc) · 906 Bytes
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 |spec|
spec.name = 'DeviceGuru'
spec.version = '10.0.4'
spec.license = 'MIT'
spec.summary = 'DeviceGuru helps identifying the exact hardware type of the device. e.g. iPhone 6 or iPhone 6s.'
spec.homepage = 'https://github.com/InderKumarRathore/DeviceGuru'
spec.social_media_url = "https://twitter.com/ikr_303"
spec.authors = { 'Inder Kumar Rathore' => '' }
spec.source = { :git => 'https://github.com/InderKumarRathore/DeviceGuru.git', :tag => spec.version }
spec.requires_arc = true
spec.swift_versions = ['4.0']
spec.platforms = { :ios => "9.0", :tvos => "9.0", :watchos => "2.0" }
spec.default_subspec = "DeviceGuru"
spec.subspec "DeviceGuru" do |ss|
ss.dependency "DeviceGuru/Resources"
ss.source_files = "Sources/*.swift"
end
spec.subspec "Resources" do |ss|
ss.resource_bundle = { spec.name => 'Sources/DeviceList.plist' }
end
end