forked from kirsteins/JKBigInteger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJKBigInteger.podspec
More file actions
18 lines (16 loc) · 816 Bytes
/
Copy pathJKBigInteger.podspec
File metadata and controls
18 lines (16 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "JKBigInteger"
s.version = "0.0.1"
s.requires_arc = true
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.homepage = "https://github.com/kirsteins/JKBigInteger"
s.author = "Jānis Kiršteins"
s.summary = "Library for working with big integers in Objective-C."
s.description = <<-DESC
JKBigInteger is a small library to facilitate easy working with big integers in Objective-C. JKBigInteger is
a Objective-C wrapper around LibTomMath C library. It is inspired by the Java's BigInteger.
DESC
s.social_media_url = "https://twitter.com/janiskirsteins"
s.source = { :git => "https://github.com/kirsteins/JKBigInteger.git", :tag => s.version.to_s }
s.source_files = 'JKBigInteger/**/*.{c,h,m}'
end