mirror of
https://github.com/hyperoslo/Cache.git
synced 2026-04-07 19:17:36 +00:00
16 lines
570 B
Ruby
16 lines
570 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "Cache"
|
|
s.summary = "Nothing but cache."
|
|
s.version = "1.0.0"
|
|
s.homepage = "https://github.com/hyperoslo/Cache"
|
|
s.license = 'MIT'
|
|
s.author = { "Hyper Interaktiv AS" => "ios@hyper.no" }
|
|
s.source = { :git => "https://github.com/hyperoslo/Cache.git", :tag => s.version.to_s }
|
|
s.social_media_url = 'https://twitter.com/hyperoslo'
|
|
s.platform = :ios, '8.0'
|
|
s.requires_arc = true
|
|
s.source_files = 'Source/**/*'
|
|
|
|
s.frameworks = 'UIKit', 'Foundation'
|
|
end
|