-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNHMyFirstPod.podspec
More file actions
36 lines (32 loc) · 1.25 KB
/
NHMyFirstPod.podspec
File metadata and controls
36 lines (32 loc) · 1.25 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
#
# Be sure to run `pod spec lint NAME.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://docs.cocoapods.org/specification.html
#
Pod::Spec.new do |s|
s.name = "NHMyFirstPod"
s.version = "0.1.1"
s.summary = "A short description of NHMyFirstPod."
s.description = <<-DESC
An optional longer description of NHMyFirstPod
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
s.homepage = "http://EXAMPLE/NAME"
s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Nils Hayat" => "nilsou@gmail.com" }
s.source = { :git => "http://EXAMPLE/NAME.git", :tag => s.version.to_s }
# s.platform = :ios, '5.0'
# s.ios.deployment_target = '5.0'
# s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes'
s.resources = 'Assets'
s.ios.exclude_files = 'Classes/osx'
s.osx.exclude_files = 'Classes/ios'
# s.public_header_files = 'Classes/**/*.h'
# s.frameworks = 'SomeFramework', 'AnotherFramework'
# s.dependency 'JSONKit', '~> 1.4'
end