Skip to content

Commit

Permalink
Implementation of SSAppUpdater
Browse files Browse the repository at this point in the history
  • Loading branch information
mansivsimform committed Oct 27, 2020
1 parent 16e929a commit 50b7535
Show file tree
Hide file tree
Showing 54 changed files with 3,033 additions and 1 deletion.
54 changes: 54 additions & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
disabled_rules: # rule identifiers to exclude from running
- variable_name
- nesting
- line_length
- file_length
- shorthand_operator
- empty_count
- redundant_string_enum_value
- function_parameter_count
- cyclomatic_complexity
- trailing_whitespace
- function_body_length
- legacy_constructor
- unused_closure_parameter
- implicit_getter
- todo
- control_statement
- type_body_length
- multiple_closures_with_trailing_closure
- trailing_newline


opt_in_rules: # some rules are only opt-in
- control_statement
- empty_count
- colon
- comma
- comment

force_cast: warning # implicitly. Give warning only for force casting

force_try:
severity: warning # explicitly. Give warning only for force try

type_body_length:
- 300 # warning
- 1500 # error

# or they can set both explicitly
file_length: 500
warning: 500
error: 1500

large_tuple: # warn user when using 3 values in tuple, give error if there are 4
- 3
- 4

excluded: # paths to ignore during linting. Takes precedence over `included`.
- Pods
- WaspCheck/Resources/R.generated.swift
- Pods/Pods

# implicitly
function_parameter_count: 8
11 changes: 11 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
use_frameworks!

target 'SSAppUpdater_Example' do
pod 'SSAppUpdater', :path => '../'

target 'SSAppUpdater_Tests' do
inherit! :search_paths


end
end
16 changes: 16 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- SSAppUpdater (0.0.1)

DEPENDENCIES:
- SSAppUpdater (from `../`)

EXTERNAL SOURCES:
SSAppUpdater:
:path: "../"

SPEC CHECKSUMS:
SSAppUpdater: d86235aaf2ca55c9c353b8343cd3c5c1ec080428

PODFILE CHECKSUM: 2590d10e14db9dda48bb3f795fd6ef6d464a0423

COCOAPODS: 1.9.3
24 changes: 24 additions & 0 deletions Example/Pods/Local Podspecs/SSAppUpdater.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

833 changes: 833 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 50b7535

Please sign in to comment.