Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
gruffins committed Nov 25, 2022
0 parents commit 85c8f4e
Show file tree
Hide file tree
Showing 99 changed files with 14,033 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .gitignore
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
14 changes: 14 additions & 0 deletions BirchLumberjack.podspec
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
Loading

0 comments on commit 85c8f4e

Please sign in to comment.