-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBLLogger.podspec
More file actions
36 lines (23 loc) · 1.24 KB
/
BLLogger.podspec
File metadata and controls
36 lines (23 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Pod::Spec.new do |s|
s.name = "BLLogger"
s.version = "1.0.1"
s.summary = "A Swift dLog implementation."
s.screenshot = "https://github.com/BellAppLab/BLLogger/raw/master/Images/bllogger.png"
s.description = <<-DESC
A Swift dLog implementation.
To be quite honest, this is so simple that it's probably easier to just copy and paste the code directly into your project, instead of adding yet another dependency to it.
You can find the gist [here](https://gist.github.com/BellAppLab/cf99a9943f8a13df616e24e4e3b6e640).
DESC
s.homepage = "https://github.com/BellAppLab/BLLogger"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Bell App Lab" => "apps@bellapplab.com" }
s.social_media_url = "https://twitter.com/BellAppLab"
s.ios.deployment_target = "9.0"
s.watchos.deployment_target = "3.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
s.module_name = 'BLLogger'
s.source = { :git => "https://github.com/BellAppLab/BLLogger.git", :tag => "#{s.version}" }
s.source_files = "Sources/BLLogger"
s.framework = "Foundation"
end