-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAcknowledgementsBundle.podspec
More file actions
21 lines (16 loc) · 965 Bytes
/
Copy pathAcknowledgementsBundle.podspec
File metadata and controls
21 lines (16 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "AcknowledgementsBundle"
s.version = "0.0.2"
s.summary = "Easily add a Settings.bundle with CocoaPods acknowledgements to your iOS App."
s.homepage = "https://github.com/rivera-ernesto/AcknowledgmentsBundle"
s.screenshots = [ "http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot1.png",
"http://rivera-ernesto.github.io/AcknowledgementsBundle/images/screenshot2.png"]
s.license = { :type => 'Apache License, Version 2.0', :file => 'LICENSE' }
s.author = { "Ernesto Rivera" => "rivera.ernesto@gmail.com" }
s.platform = :ios
s.source = { :git => "https://github.com/rivera-ernesto/AcknowledgmentsBundle.git", :tag => "#{s.version}" }
s.preserve_paths = "README.md"
s.source_files = 'Dummy.h'
s.requires_arc = true
s.resource_bundle = { 'Settings' => ['*.plist', '../Pods-acknowledgements.plist'] }
end