16 lines
894 B
Ruby
16 lines
894 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "UIBubbleTableView"
|
|
s.version = "0.2"
|
|
s.summary = "Cocoa UI component for chat bubbles with avatars and images support."
|
|
s.homepage = "http://alexbarinov.github.com/UIBubbleTableView/"
|
|
s.license = {
|
|
:type => 'Creative Commons Attribution 3.0 Unported License',
|
|
:text => 'This work is licensed under the Creative Commons Attribution 3.0 Unported License. To view a copy of this license, visit http://creativecommons.org/licenses/by/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.'
|
|
}
|
|
s.author = { "Alex Barinov" => "github@alex.barinov.name" }
|
|
s.source = { :git => "https://github.com/AlexBarinov/UIBubbleTableView.git", :tag => "0.2" }
|
|
s.platform = :ios, '5.0'
|
|
s.source_files = 'src/**/*.{h,m}'
|
|
s.resources = "images/*.png"
|
|
end
|