forked from Adorkable-forkable/ESOpenSourceLicensesKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathESOpenSourceLicensesKit.podspec
More file actions
executable file
·21 lines (17 loc) · 973 Bytes
/
ESOpenSourceLicensesKit.podspec
File metadata and controls
executable file
·21 lines (17 loc) · 973 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 = "ESOpenSourceLicensesKit"
s.version = "2.0"
s.platform = :ios, "9.0"
s.summary = "A script to generate an HTML file of all the license files used with your CocoaPods Project"
s.author = { "Bas van Kuijck" => "bas@e-sites.nl" }
s.license = { :type => "MIT", :file => "LICENSE" }
s.homepage = "https://github.com/e-sites/#{s.name}"
s.source = { :git => "https://github.com/e-sites/#{s.name}.git", :tag => s.version.to_s }
s.screenshot = "https://raw.githubusercontent.com/e-sites/#{s.name}/master/Assets/example.gif"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
s.requires_arc = true
s.frameworks = 'UIKit', 'Foundation'
s.preserve_paths = "#{s.name}/Scripts/*.*"
s.resource_bundles = { 'ESOpenSourceLicensesKit' => [ 'ESOpenSourceLicensesKit/Resources/opensource-licenses.html' ] }
s.source_files = "#{s.name}/Classes/*.{swift}"
end