Skip to content
This repository has been archived by the owner on May 27, 2020. It is now read-only.

Commit

Permalink
Added podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
honghaoz committed Dec 19, 2014
1 parent 6c0ece9 commit 9eb5bcf
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions ZHSwiftLogger.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = "ZHSwiftLogger"
s.version = "0.9"
s.summary = "A simple log utility for Swift project"
s.description = 'Used `println()` in development and `NSLog()` in production'
s.homepage = "https://github.com/honghaoz/ZHSwiftLogger"
s.screenshots = "https://raw.githubusercontent.com/honghaoz/ZHSwiftLogger/master/Preview/Pre.png"
s.license = 'MIT'
s.author = { "Honghao Zhang" => "zhh358@gmail.com" }
s.source = { :git => "https://github.com/honghaoz/ZHSwiftLogger.git", :tag => s.version.to_s }
s.social_media_url = 'https://www.linkedin.com/in/honghaozhang'

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

s.source_files = 'ZHLogger.swift'
# s.resource_bundles = {
# 'ZHSwiftLogger' => ['Pod/Assets/*.png']
# }

# s.public_header_files = 'Pod/Classes/**/*.h'
# s.frameworks = 'UIKit', 'MapKit'
# s.dependency 'AFNetworking', '~> 2.3'
end

0 comments on commit 9eb5bcf

Please sign in to comment.