444424fb91
to the Pods project anymore in CocoaPods 0.17.0. Seems that the ./ prefix is not required so i drop this also for (the few) other projects, too.
13 lines
704 B
Ruby
13 lines
704 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CMNavBarNotificationView"
|
|
s.version = "1.0.2"
|
|
s.summary = "An in-app notification view above the navigation bar totally based on MPNotificationView."
|
|
s.homepage = "https://github.com/edgurgel/CMNavBarNotificationView"
|
|
s.license = 'MIT'
|
|
s.authors = { "Eduardo Pinho" => "eduardo.gurgel@codeminer42.com", "Codeminer42" => "contato@codeminer42.com" }
|
|
s.source = { :git => "https://github.com/edgurgel/CMNavBarNotificationView.git", :tag => "1.0.2" }
|
|
s.platform = :ios, '4.0'
|
|
s.source_files = 'CMNavBarNotificationView/*.{h,m}','OBGradientView/*.{h,m}'
|
|
s.public_header_files = 'CMNavBarNotificationView/**/*.h'
|
|
end
|