-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBigIntSwift.podspec
More file actions
23 lines (18 loc) · 915 Bytes
/
BigIntSwift.podspec
File metadata and controls
23 lines (18 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "BigIntSwift"
s.version = "1.0.1"
s.summary = "Implementation of Big Integer for Swift"
s.description = <<-DESC
Library to perform arithmetical operations on integer values of enormous size.
Pod provides basic arithmetical operation with Big Integer values like addition, multiplication and substraction.
DESC
s.homepage = "https://github.com/descorp/SwiftBigInteger"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Vladimir Abramichev" => "vladimir.abramichev@mail.ru" }
s.source = { :git => "https://github.com/descorp/SwiftBigInteger.git", :tag => "#{s.version}" }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = "10.9"
s.requires_arc = true
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
s.source_files = "Source/**/*"
end