-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNumberick-NBKDoubleWidthKit.podspec
51 lines (40 loc) · 2.34 KB
/
Numberick-NBKDoubleWidthKit.podspec
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#=-----------------------------------------------------------------------------=
# This source file is part of the Numberick open source project.
#
# Copyright (c) 2023 Oscar Byström Ericsson
# Licensed under Apache License, Version 2.0
#
# See http://www.apache.org/licenses/LICENSE-2.0 for license information.
#=-----------------------------------------------------------------------------=
#*=============================================================================*
# MARK: * NBK x Double Width Kit
#*=============================================================================*
Pod::Spec.new do |spec|
spec.version = "0.17.0"
spec.module_name = "NBKDoubleWidthKit"
spec.name = "Numberick-#{spec.module_name}"
spec.summary = "A composable, large, fixed-width, two's complement, binary integer."
spec.license = { :type => "Apache-2.0", :file => "LICENSE" }
spec.author = { "Oscar Byström Ericsson" => "[email protected]" }
spec.homepage = "https://github.com/oscbyspro/Numberick"
spec.readme = "https://raw.githubusercontent.com/oscbyspro/Numberick/v#{spec.version}/README.md"
spec.documentation_url = "https://oscbyspro.github.io/Numberick/documentation/numberick/"
spec.source = { :git => "https://github.com/oscbyspro/Numberick.git", :tag => "CocoaPods-v#{spec.version}" }
spec.source_files = "Sources/#{spec.module_name}/**/*.swift"
#=-------------------------------------------------------------------------=
# MARK: Requirements
#=-------------------------------------------------------------------------=
spec.swift_version = "5.7"
spec.platforms = { :ios => "14.0", :osx => "11.0", :tvos => "14.0", :watchos => "7.0" }
#=-------------------------------------------------------------------------=
# MARK: Tests
#=-------------------------------------------------------------------------=
spec.test_spec "Tests" do |test_spec|
test_spec.source_files = "Tests/#{spec.module_name}Tests/**/*.swift"
test_spec.platforms = { :ios => "14.0", :osx => "11.0", :tvos => "14.0" }
end
#=-------------------------------------------------------------------------=
# MARK: Dependencies
#=-------------------------------------------------------------------------=
spec.dependency "Numberick-NBKCoreKit", "#{spec.version}"
end