-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathAlgorithm.podspec
More file actions
15 lines (15 loc) · 598 Bytes
/
Algorithm.podspec
File metadata and controls
15 lines (15 loc) · 598 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'Algorithm'
s.version = '3.1.1'
s.swift_version = '5.0'
s.license = 'BSD-3-Clause'
s.summary = 'A toolset for writing algorithms in Swift.'
s.homepage = 'http://cosmicmind.com'
s.social_media_url = 'https://www.facebook.com/cosmicmindcom'
s.authors = { 'CosmicMind, Inc.' => 'support@cosmicmind.com' }
s.source = { :git => 'https://github.com/CosmicMind/Algorithm.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.source_files = 'Sources/*.swift'
s.requires_arc = true
end