fixed path for NSDate-TKExtensions, added new pod : NSString+TextAndNumberValidation

This commit is contained in:
Tomek Kuzma
2012-09-29 17:11:13 +02:00
parent 6a423266aa
commit 5ce18d29f0
2 changed files with 32 additions and 0 deletions
@@ -0,0 +1,12 @@
Pod::Spec.new do |s|
s.name = "NSDate+TKExtensions"
s.version = "0.1.1"
s.summary = "Set of usefull categories for NSDate."
s.homepage = "https://github.com/mapedd/NSDate-TKExtensions"
s.license = 'Apache'
s.author = { "Tomek Kuzma" => "mapedd@sezamkowa.net" }
s.source = { :git => "https://github.com/mapedd/NSDate-TKExtensions.git", :tag => "0.1.1" }
s.platform = :ios
s.source_files = 'NSDate-TKExtensions.{h,m}'
s.requires_arc = true
end
@@ -0,0 +1,20 @@
Pod::Spec.new do |s|
s.name = "NSString+TextAndNumberValidation"
s.version = "0.0.1"
s.summary = "NSString category methods to simplify popular string standards validation."
s.description = 'Validates:' \
'- Polish PESEL number (Personal Number)' \
'- Polish NIP number' \
'- Polish REGON number' \
'- Email address using regular expression' \
'- Credit Card numbers - Luhn numbers' \
'- Bank Account numbers.'
s.homepage = "http://github.com/mapedd/NSString-TextAndNumberValidation"
s.license = 'Apache'
s.author = { "Tomek Kuzma" => "mapedd@sezamkowa.net" }
s.source = { :git => "https://github.com/mapedd/NSString-TextAndNumberValidation.git", :tag => "0.0.1" }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'NSString+TextAndNumberValidation.{h,m}'
s.requires_arc = false
end