14 lines
610 B
Ruby
14 lines
610 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CODialog"
|
|
s.version = "0.0.1"
|
|
s.summary = "CODialog is a completely configurable, almost pixel perfect replacement for UIAlertView."
|
|
s.homepage = "https://github.com/eaigner/CODialog"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
|
|
s.author = { "Erik Aigner" => "erik@chocomoko.com" }
|
|
s.source = { :git => "https://github.com/eaigner/CODialog.git", :commit => "9357b95fee8d93c0177bc523871e1439f209796b" }
|
|
s.platform = :ios
|
|
s.source_files = 'CODialog.{h,m}'
|
|
s.framework = 'UIKit'
|
|
s.requires_arc = true
|
|
end
|