-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTextBundleKit.podspec
More file actions
27 lines (23 loc) · 1.04 KB
/
TextBundleKit.podspec
File metadata and controls
27 lines (23 loc) · 1.04 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
Pod::Spec.new do |s|
s.name = 'TextBundleKit'
s.version = '0.5.1'
s.summary = 'A Swift library for manipulating Textbundle packages (http://textbundle.org).'
s.swift_version = '4.0'
s.description = <<-DESC
textbundle-swift is a pure-Swift library for reading and writing Textbundle packages.
See http://textbundle.org
Please note this is INCREDIBLY early in its development :-)
DESC
s.homepage = 'https://github.com/bdewey/textbundle-swift'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { 'bdewey@gmail.com' => 'bdewey@gmail.com' }
s.source = { :git => 'https://github.com/bdewey/textbundle-swift.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.source_files = 'textbundle-swift/Classes/**/*'
s.test_spec 'unit' do |test_spec|
test_spec.source_files = 'textbundle-swift/Tests/**/*'
test_spec.resource_bundles = {
'TestContent' => 'textbundle-swift/TestContent/*',
}
end
end