forked from maxkramer/SwiftLuhn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftLuhn.podspec
More file actions
26 lines (24 loc) · 1.1 KB
/
SwiftLuhn.podspec
File metadata and controls
26 lines (24 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# Be sure to run `pod lib lint SwiftLuhn.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "SwiftLuhn"
s.version = "0.2.1"
s.summary = "SwiftLuhn is a port of the Luhn algorithm, used for validating debit/credit card details."
s.description = <<-DESC
This is a port of the Luhn Algorithm, generally used for validating debit/credit card details, to Swift.
Objective-C port can be found at [https://github.com/MaxKramer/ObjectiveLuhn](https://github.com/MaxKramer/ObjectiveLuhn).
DESC
s.homepage = "https://github.com/MaxKramer/SwiftLuhn"
s.license = 'MIT'
s.author = { "Max Kramer" => "[email protected]" }
s.source = { :git => "https://github.com/maxkramer/SwiftLuhn.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/maxkramer'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'SwiftLuhn/Classes/**/*'
end