-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathSBObjectiveCWrapper.podspec
More file actions
20 lines (18 loc) · 992 Bytes
/
SBObjectiveCWrapper.podspec
File metadata and controls
20 lines (18 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "SBObjectiveCWrapper"
s.version = "1.5.0"
s.summary = "Objective-C wrapper and macros around SwiftyBeaver logging framework"
s.description = <<-DESC
SBObjectiveCWrapper brings SwiftyBeaver logging support to your Objective-C files. After setting up SwiftyBeaver in Swift, you can use a familiar C macro syntax in your Objective-C code to reuse the same logging destinations and filter settings.
DESC
s.homepage = "https://github.com/SwiftyBeaver/SBObjectiveCWrapper"
s.license = "MIT"
s.author = { "Reese McLean" => "reese.mclean@me.com" }
s.ios.deployment_target = "9.0"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.osx.deployment_target = "10.11"
s.source = { :git => "https://github.com/SwiftyBeaver/SBObjectiveCWrapper.git", :tag => s.version.to_s }
s.source_files = "sources"
s.dependency 'SwiftyBeaver', '~> 1.7.0'
end