19 lines
546 B
Ruby
19 lines
546 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Tabby"
|
|
s.summary = "A fancy tabbar"
|
|
s.version = "0.2.0"
|
|
s.homepage = "https://github.com/hyperoslo/Tabby"
|
|
s.license = 'MIT'
|
|
s.author = { "Hyper Interaktiv AS" => "ios@hyper.no" }
|
|
s.source = {
|
|
:git => "https://github.com/hyperoslo/Tabby.git",
|
|
:tag => s.version.to_s
|
|
}
|
|
s.social_media_url = 'https://twitter.com/hyperoslo'
|
|
|
|
s.ios.deployment_target = '9.0'
|
|
|
|
s.requires_arc = true
|
|
s.ios.source_files = 'Sources/**/*'
|
|
end
|