-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 85c8f4e
Showing
99 changed files
with
14,033 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# macOS | ||
.DS_Store | ||
|
||
# Xcode | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata/ | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
|
||
# Bundler | ||
.bundle | ||
|
||
# Add this line if you want to avoid checking in source code from Carthage dependencies. | ||
# Carthage/Checkouts | ||
BirchLumberjack.framework.zip | ||
|
||
# We recommend against adding the Pods directory to your .gitignore. However | ||
# you should judge for yourself, the pros and cons are mentioned at: | ||
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control | ||
# | ||
# Note: if you ignore the Pods directory, make sure to uncomment | ||
# `pod install` in .travis.yml | ||
# | ||
fastlane/report.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'BirchLumberjack' | ||
s.version = '1.0.0' | ||
s.summary = 'CocoaLumberjack wrapper for Birch.' | ||
s.homepage = 'https://github.com/gruffins/birch-lumberjack' | ||
s.license = { type: 'MIT', file: 'LICENSE' } | ||
s.author = { 'Ryan Fung' => 'ryan@ryanfung.com' } | ||
s.source = { git: 'https://github.com/gruffins/birch-lumberjack.git', tag: s.version.to_s } | ||
s.ios.deployment_target = '10.0' | ||
s.swift_version = '4.0' | ||
s.source_files = 'Sources/BirchLumberjack/*' | ||
s.dependency 'Birch' | ||
s.dependency 'CocoaLumberjack' | ||
end |
Oops, something went wrong.