-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCombinatorics.podspec
More file actions
executable file
·17 lines (16 loc) · 986 Bytes
/
Combinatorics.podspec
File metadata and controls
executable file
·17 lines (16 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "Combinatorics"
s.version = "1.4"
s.summary = "Combinatorics contains functions to generate k-permutations and k-combinations (with or without repetition) of 'n' elements."
s.description = "Combinatorics contains static functions to generate k-permutations and k-combinations (in both cases either with or without repetition) of the 'n' elements in an array."
s.homepage = "https://github.com/almata/Combinatorics"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Albert Mata" => "hello@albertmata.net" }
s.social_media_url = "http://twitter.com/almata"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.9"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/almata/Combinatorics.git", :tag => "#{s.version}" }
s.source_files = "Combinatorics/**/*.{h,m,swift}"
end