14 lines
675 B
Ruby
14 lines
675 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "HMSegmentedControl"
|
|
s.version = "1.0.0"
|
|
s.summary = "A drop-in replacement for UISegmentedControl mimicking the style of the segmented control used in Google Currents."
|
|
s.homepage = "https://github.com/HeshamMegid/HMSegmentedControl"
|
|
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
|
|
s.author = { "Hesham Abd-Elmegid" => "hesham.abdelmegid@gmail.com" }
|
|
s.source = { :git => "https://github.com/HeshamMegid/HMSegmentedControl.git", :tag => "v1.0.0" }
|
|
s.platform = :ios, '5.0'
|
|
s.requires_arc = true
|
|
s.source_files = 'HMSegmentedControl/*.{h,m}'
|
|
s.framework = 'QuartzCore'
|
|
end
|