Skip to content

Commit

Permalink
Merge pull request #29 from SiftScience/clchiou_cocoapods
Browse files Browse the repository at this point in the history
(For Aaron) Add Podspec
  • Loading branch information
clchiou committed Mar 16, 2016
2 parents 3be209e + e977fc5 commit e6210ed
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions Sift.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
Pod::Spec.new do |spec|
spec.name = 'Sift'
spec.version = '0.1.0'
spec.authors = 'Sift Science'
spec.license = {
:type => 'MIT',
:file => 'LICENSE',
}
spec.homepage = 'https://github.com/SiftScience/sift-ios'
spec.source = {
:git => 'https://github.com/SiftScience/sift-ios',
:tag => "v#{spec.version.to_s}",
}
spec.summary = 'Machine learning fraud detection and prevention'

# Platform
spec.platform = :ios
spec.ios.deployment_target = '8.0'

# Build settings
spec.ios.frameworks = [
'AdSupport',
'CoreLocation',
'CoreTelephony',
'Foundation',
'UIKit',
]

# File patterns
spec.source_files = 'Sift/*.{h,m}'
spec.public_header_files = [
'Sift/SFEvent.h',
'Sift/SFQueueConfig.h',
'Sift/Sift.h',
]
end

0 comments on commit e6210ed

Please sign in to comment.