15 lines
812 B
Ruby
15 lines
812 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'BDToastAlert'
|
|
s.version = '0.1.0'
|
|
s.license = 'BSD'
|
|
s.summary = 'A simple UIKit class for displaying non-obstructive message/alert labels on iOS UIView.'
|
|
s.homepage = 'https://github.com/norsez/BDToastAlert'
|
|
s.author = { 'Norsez Orankijanan' => 'norsez@gmail.com' }
|
|
s.source = { :git => 'https://github.com/norsez/BDToastAlert.git', :tag => '0.1.0' }
|
|
s.description = 'A simple UIKit class for displaying non-obstructive alert message labels on iOS UIView. Sometimes your app might want to display messages to user, but not needing user interaction to acknowledge those messages. BDAlertView can do that.'
|
|
s.platform = :ios
|
|
s.source_files = 'Classes', 'BDToastAlert/BDToastAlert/BDToastAlert'
|
|
s.frameworks = 'QuartzCore'
|
|
s.requires_arc = true
|
|
end
|