15 lines
537 B
Ruby
15 lines
537 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'RDActionSheet'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'Class to make a easily customisable Action Sheet for iOS.'
|
|
s.homepage = 'http://riothq.com'
|
|
s.author = { 'Red Davis' => 'reddavis@gmail.com' }
|
|
s.source = { :git => 'https://github.com/reddavis/RDActionSheet.git', :commit => 'c0aa3b9c19152e81bafc3bfc2b5a083bc7b2c34e' }
|
|
s.platform = :ios
|
|
s.source_files = 'RDActionSheet/RDActionSheet.{h,m}'
|
|
s.resources = "RDActionSheet/*.png"
|
|
s.framework = 'UIKit'
|
|
|
|
end
|