Skip to content
This repository was archived by the owner on Jul 8, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 54 additions & 0 deletions sample-iOS/Supr-demo/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata

## Other
*.xccheckout
*.moved-aside
*.xcuserstate
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
.build/

# CocoaPods
#
# 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-check-the-pods-directory-into-source-control
#
Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.

#Carthage/Checkouts
#Carthage/Build

# bundler
vendor
.bundle
.DS_Store
22 changes: 22 additions & 0 deletions sample-iOS/Supr-demo/.swiftlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
included:
- Supr-demo
excluded:
- Supr-demoTests
force_cast: warning
shorthand_operator: warning
force_try:
severity: warning
file_length:
warning: 1250
error: 2500
type_body_length:
warning: 500
error: 800
disabled_rules:
- line_length
- identifier_name
- type_name
- weak_delegate
- nesting
- unused_closure_parameter
- class_delegate_protocol
13 changes: 13 additions & 0 deletions sample-iOS/Supr-demo/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Podfile
use_frameworks!

target 'Supr-demo' do
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
end

# RxTests and RxBlocking make the most sense in the context of unit/integration tests
target 'Supr-demoTests' do
pod 'RxBlocking', '~> 4.0'
pod 'RxTest', '~> 4.0'
end
24 changes: 24 additions & 0 deletions sample-iOS/Supr-demo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
PODS:
- RxBlocking (4.1.2):
- RxSwift (~> 4.0)
- RxCocoa (4.1.2):
- RxSwift (~> 4.0)
- RxSwift (4.1.2)
- RxTest (4.1.2):
- RxSwift (~> 4.0)

DEPENDENCIES:
- RxBlocking (~> 4.0)
- RxCocoa (~> 4.0)
- RxSwift (~> 4.0)
- RxTest (~> 4.0)

SPEC CHECKSUMS:
RxBlocking: f6054985901412fc8c02daa84e92d4ba68c61389
RxCocoa: d88ba0f1f6abf040011a9eb4b539324fc426843a
RxSwift: e49536837d9901277638493ea537394d4b55f570
RxTest: e634f15fd2c2cd0e0120132ef7a4f7be69ad0393

PODFILE CHECKSUM: a4753f4cbd1e5f3ea066a885129832b921a86495

COCOAPODS: 1.4.0
Loading