From 379d901c862cfa8673d437f946eab5eab0983c12 Mon Sep 17 00:00:00 2001 From: Roman Podymov Date: Mon, 2 Jan 2023 23:49:48 +0100 Subject: [PATCH] CocoaPods --- NumberKit.podspec | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 NumberKit.podspec diff --git a/NumberKit.podspec b/NumberKit.podspec new file mode 100644 index 0000000..2854abe --- /dev/null +++ b/NumberKit.podspec @@ -0,0 +1,15 @@ +Pod::Spec.new do |s| + s.name = 'NumberKit' + s.module_name = 'NumberKit' + s.version = '2.4.2' + s.summary = 'Advanced numeric data types for Swift 5, including BigInt, Rational, and Complex numbers.' + s.homepage = 'https://github.com/objecthub/swift-numberkit' + s.license = 'Apache License 2.0' + s.author = { 'Matthias Zenger' => 'matthias@objecthub.com' } + s.source = { :git => 'https://github.com/objecthub/swift-numberkit.git', :tag => s.version } + s.ios.deployment_target = '12.0' + s.tvos.deployment_target = '12.0' + s.osx.deployment_target = '10.12' + s.swift_version = '5.4' + s.source_files = 'Sources/NumberKit/**/*.{swift}' +end \ No newline at end of file