-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added logger Better readme
- Loading branch information
Majd Sabah
committed
Oct 8, 2018
1 parent
a6c94aa
commit b8a39df
Showing
6 changed files
with
78 additions
and
10 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'SwiftyVIN' | ||
s.version = '1.1' | ||
s.version = '1.2' | ||
s.summary = 'Swift version of VIN validation' | ||
s.description = <<-DESC | ||
Swift version of VIN validation using swift 4.2 | ||
|
@@ -21,7 +21,7 @@ Pod::Spec.new do |s| | |
s.author = { 'Majd Sabah' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/sbhmajd/SwiftyVIN.git', :tag => s.version.to_s } | ||
|
||
s.ios.deployment_target = '12.0' | ||
s.ios.deployment_target = '11.0' | ||
s.source_files = 'SwiftyVIN/**/*.swift' | ||
|
||
end |
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
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
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,19 @@ | ||
// | ||
// SwiftyVINLogger.swift | ||
// SwiftyVIN | ||
// | ||
// Created by Majd Sabah on 10/8/18. | ||
// Copyright © 2018 Majd Sabah. All rights reserved. | ||
// | ||
|
||
import Foundation | ||
|
||
public class SwiftyVINLogger { | ||
|
||
/// The shared swifty VIN logger for the system. | ||
public static let shared = SwiftyVINLogger() | ||
|
||
/// The debug mode flag 'true' means will show log, 'false' means will show nothing. | ||
public var debugMode: Bool = false | ||
|
||
} |
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