Skip to content

Commit 85c8f4e

Browse files
committed
Initial commit
0 parents  commit 85c8f4e

File tree

99 files changed

+14033
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+14033
-0
lines changed

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# macOS
2+
.DS_Store
3+
4+
# Xcode
5+
build/
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata/
15+
*.xccheckout
16+
*.moved-aside
17+
DerivedData
18+
*.hmap
19+
*.ipa
20+
21+
# Bundler
22+
.bundle
23+
24+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
25+
# Carthage/Checkouts
26+
BirchLumberjack.framework.zip
27+
28+
# We recommend against adding the Pods directory to your .gitignore. However
29+
# you should judge for yourself, the pros and cons are mentioned at:
30+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
31+
#
32+
# Note: if you ignore the Pods directory, make sure to uncomment
33+
# `pod install` in .travis.yml
34+
#
35+
fastlane/report.xml

BirchLumberjack.podspec

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'BirchLumberjack'
3+
s.version = '1.0.0'
4+
s.summary = 'CocoaLumberjack wrapper for Birch.'
5+
s.homepage = 'https://github.com/gruffins/birch-lumberjack'
6+
s.license = { type: 'MIT', file: 'LICENSE' }
7+
s.author = { 'Ryan Fung' => '[email protected]' }
8+
s.source = { git: 'https://github.com/gruffins/birch-lumberjack.git', tag: s.version.to_s }
9+
s.ios.deployment_target = '10.0'
10+
s.swift_version = '4.0'
11+
s.source_files = 'Sources/BirchLumberjack/*'
12+
s.dependency 'Birch'
13+
s.dependency 'CocoaLumberjack'
14+
end

0 commit comments

Comments
 (0)