Skip to content

Commit

Permalink
Merge pull request #2 from yahoo/cleanup-podspec
Browse files Browse the repository at this point in the history
fixed pod lib lint warnings and removed boilerplate from .podspec file
  • Loading branch information
adamkaplan committed Aug 6, 2015
2 parents a438d8f + 71e6921 commit 9a654fb
Showing 1 changed file with 3 additions and 20 deletions.
23 changes: 3 additions & 20 deletions YMCache.podspec
Original file line number Diff line number Diff line change
@@ -1,32 +1,15 @@
#
# Be sure to run `pod lib lint YMCache.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
s.name = "YMCache"
s.version = "1.0.0"
s.summary = "Fast & simple small object cache. GCD-based and thread-safe."
s.description = <<-DESC
An optional longer description of YMCache
* Markdown format.
* Don't worry about the indent, we strip it!
DESC
s.homepage = "https://github.com/yahoo/YMCache"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = { :license => 'MIT', :file => 'LICENSE' }
s.license = 'MIT'
s.author = { "adamkaplan" => "[email protected]" }
s.source = { :git => "https://github.com/yahoo/YMCache.git", :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/adkap'
s.social_media_url = 'https://twitter.com/adkap'

s.platform = :ios, '7.0'
s.requires_arc = true

s.source_files = 'YMCache'

s.source_files = 'YMCache/*.[h,m]'
end

0 comments on commit 9a654fb

Please sign in to comment.