21 lines
773 B
Ruby
21 lines
773 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "NSString-Helper"
|
|
s.version = "1.0.1"
|
|
s.summary = "NSString-Helper is usefull helper to validate email NSString"
|
|
s.homepage = "https://github.com/giuseppenucifora/NSString-Helper"
|
|
s.license = 'MIT'
|
|
s.author = { "Giuseppe Nucifora" => "me@giuseppenucifora.com" }
|
|
s.source = { :git => "https://github.com/giuseppenucifora/NSString-Helper.git", :tag => s.version.to_s }
|
|
s.social_media_url = 'https://twitter.com/giuseppenuc'
|
|
s.requires_arc = true
|
|
|
|
|
|
s.platform = :ios, '7.0'
|
|
s.requires_arc = true
|
|
|
|
s.source_files = 'NSString-Helper/*.{h,m}'
|
|
s.resource_bundles = {
|
|
'NSString-Helper' => ['Pod/Assets/*.png']
|
|
}
|
|
end
|