18 lines
614 B
Ruby
18 lines
614 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "BSModalPickerView"
|
|
s.version = "0.2"
|
|
s.summary = "A custom UIPickerView with a simple list of options, along with a toolbar for Done/Cancel and a faded backdrop view."
|
|
s.homepage = "https://github.com/subdigital/BSModalPickerView"
|
|
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { "Ben Scheirman" => "ben@scheirman.com" }
|
|
s.source = {
|
|
:git => "https://github.com/subdigital/BSModalPickerView.git",
|
|
:tag => "0.2"
|
|
}
|
|
|
|
s.platform = :ios, '4.0'
|
|
s.source_files = '*.{h,m}'
|
|
s.requires_arc = true
|
|
end
|