-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCanopy.podspec
More file actions
30 lines (26 loc) · 1.31 KB
/
Canopy.podspec
File metadata and controls
30 lines (26 loc) · 1.31 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
Pod::Spec.new do |s|
s.name = 'Canopy'
s.version = '0.2.3'
s.summary = 'A lightweight, high-performance logging framework for iOS'
s.description = <<-DESC
Canopy is a lightweight, high-performance logging framework for iOS inspired by Android's Timber.
It uses a Tree-based architecture with zero overhead in Release mode when only DebugTree is used.
Compatible with iOS 14+ and has no external dependencies.
Features:
- Tree-based architecture for flexible logging through pluggable trees
- Performance optimized (zero overhead in Release mode when only DebugTree is used)
- iOS 14+ support
- No external dependencies (pure Swift implementation)
- Thread-safe with lock-protected concurrent access
- Error parameter support for error tracking services like Sentry
- Comprehensive testing with 102 tests including performance benchmarks
DESC
s.homepage = 'https://github.com/ding1dingx/Canopy'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'syxc' => 'nian1.wiki@gmail.com' }
s.source = { :git => 'https://github.com/ding1dingx/Canopy.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.swift_version = '5.0'
s.source_files = 'Canopy/Sources/**/*.swift'
s.frameworks = 'Foundation'
end