-
Notifications
You must be signed in to change notification settings - Fork 3
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
Showing
24 changed files
with
601 additions
and
84 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,3 @@ | ||
coverage: | ||
ignore: | ||
- Example/.* |
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,25 @@ | ||
### Description | ||
|
||
> Describe the issue you are seeing. | ||
### Steps to Reproduce | ||
|
||
1. | ||
2. | ||
3. | ||
|
||
### Expected Result | ||
|
||
### Actual Result | ||
|
||
### Version Information | ||
|
||
The current version I am using is: | ||
|
||
- Xcode: | ||
- iOS: | ||
- BaseViewControllerSwift: | ||
|
||
### Other Information | ||
|
||
> Add logs, screenshots, etc. that will help in debugging the issue. |
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,7 @@ | ||
### Summary | ||
|
||
> Provide a general description of what is this Pull Request about and any | ||
context that makes easier to review the changes. | ||
|
||
> If it addresses a Github Issue please mention the number (e.g. `#34`) to keep | ||
track of the different parts of the topic. |
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 @@ | ||
3.0 |
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,25 @@ | ||
disabled_rules: # rule identifiers to exclude from running | ||
- function_body_length | ||
- line_length | ||
- nesting | ||
- operator_whitespace | ||
- trailing_whitespace | ||
- type_body_length | ||
- variable_name | ||
excluded: # paths to ignore during linting. overridden by `included`. | ||
- Pods | ||
- 'Wayfindr EustonTests' | ||
# parameterized rules can be customized from this configuration file | ||
line_length: 110 | ||
# parameterized rules are first parameterized as a warning level, then error level. | ||
type_body_length: | ||
- 300 # warning | ||
- 400 # error | ||
# parameterized rules are first parameterized as a warning level, then error level. | ||
variable_name_max_length: | ||
- 40 # warning | ||
- 60 # error | ||
# parameterized rules are first parameterized as a warning level, then error level. | ||
variable_name_min_length: | ||
- 3 # warning | ||
- 2 # error |
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,17 +1,18 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'BaseViewControllerSwift' | ||
s.version = '1.0.0' | ||
s.version = '2.0.0' | ||
s.license = 'MIT' | ||
s.summary = 'An organizational tool for writing custom view controllers using UIKit.' | ||
s.homepage = 'https://github.com/ustwo/baseviewcontroller-swift' | ||
s.authors = { 'Shagun Madhikarmi' => '[email protected]', | ||
'Aaron McTavish' => '[email protected]', | ||
'Martin Stolz' => '[email protected]' } | ||
'Aaron McTavish' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/ustwo/baseviewcontroller-swift.git', :tag => s.version } | ||
|
||
s.ios.deployment_target = '8.3' | ||
|
||
s.source_files = 'Sources/*.swift' | ||
|
||
s.frameworks = 'Foundation', 'UIKit' | ||
|
||
s.requires_arc = true | ||
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
2 changes: 1 addition & 1 deletion
2
...ViewControllerSwift.xcodeproj/xcshareddata/xcschemes/BaseViewControllerSwift iOS.xcscheme
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
Oops, something went wrong.