-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSGBundleVersion.podspec
More file actions
18 lines (18 loc) · 1007 Bytes
/
SGBundleVersion.podspec
File metadata and controls
18 lines (18 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "SGBundleVersion"
s.version = "0.0.1"
s.summary = "Write app version into Settings.bundle"
s.description = <<-DESC
Write your app version into your Settings.bundle. Useful for troubleshooting customer issues.
DESC
s.homepage = "https://github.com/danloughney/SGBundleVersion"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Daniel Loughney" => "danloughney@gmail.com" }
s.social_media_url = "http://twitter.com/dcloughney"
s.platform = :ios
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/danloughney/SGBundleVersion.git", :tag => "0.0.1" }
s.source_files = "Classes", "SGBundleVersion/*.{h,m}"
s.public_header_files = "SGBundleVersion/*.h"
s.requires_arc = true
end