Skip to content

Commit

Permalink
Initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
nekrich committed Aug 11, 2016
0 parents commit 7ddb1df
Show file tree
Hide file tree
Showing 62 changed files with 8,149 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Cocoapods generated files #
######################
Pods
#Podfile.lock
**/Pods/
#**/Podfile.lock
*.xcworkspace
**/*.xcworkspace/
**/xcuserdata/

# Xcode project files #
######################
xcuserdata
build/
DerivedData

# Appcode project files #
######################
.idea/*
.idea/
*.idea*
.idea
*idea*

# Platform specific #
######################
.DS_Store
**/.DS_Store

# Python #
######################
.pyc

# fastlane specific
fastlane/report.xml

# deliver temporary files
fastlane/Preview.html

# snapshot generated screenshots
fastlane/screenshots

# scan temporary files
fastlane/test_output

# Certificate files
*.cer
*.certSigningRequest
*.ipa
*.p12
*.dsym.ZIP
*.mobileProvision
17 changes: 17 additions & 0 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
output: docs
clean: true
sdk: iphoneos
xcodebuild_arguments: [-workspace, Project/XCGCrashlyticsLogDestination.xcworkspace, -scheme, XCGCrashlyticsLogDestination]

author: "Vitalii Budnik"

author_url: https://twitter.com/iNekrich
module: XCGCrashlyticsLogDestination

readme: README.markdown

github_url: https://github.com/nekrich/XCGCrashlyticsLogDestination
github_file_prefix: https://github.com/nekrich/XCGCrashlyticsLogDestination/tree/0.0.1

theme: apple
sdk: iphoneos
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2016 Vitalii Budnik

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
14 changes: 14 additions & 0 deletions Project/.swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
disabled_rules:
- trailing_whitespace
- opening_brace
opt_in_rules:
- empty_count
- missing_docs
- force_unwrapping
included:
- ../Source
excluded:
- Pods
- Build
- DerivedData

14 changes: 14 additions & 0 deletions Project/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'

pre_install do |installer|
def installer.verify_no_static_framework_transitive_dependencies; end
end

target 'XCGCrashlyticsLogDestination' do
use_frameworks!

pod 'XCGLogger'
pod 'Crashlytics'

end
18 changes: 18 additions & 0 deletions Project/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
PODS:
- Crashlytics (3.7.2):
- Fabric (~> 1.6.3)
- Fabric (1.6.7)
- XCGLogger (3.3)

DEPENDENCIES:
- Crashlytics
- XCGLogger

SPEC CHECKSUMS:
Crashlytics: 130ab943f8c78cda7a814b434f270b2e2c8a3cba
Fabric: caf7580c725e64db144f610ac65cd60956911dc7
XCGLogger: d6e196e78940ff6daab17d6917107876f973fa31

PODFILE CHECKSUM: ec987271bee1e0eaf1514cd48e936096545d4cdb

COCOAPODS: 1.0.1
Loading

0 comments on commit 7ddb1df

Please sign in to comment.