Skip to content

Commit

Permalink
Merge pull request #2 from tokopedia/feature/re-extraction
Browse files Browse the repository at this point in the history
Re Extraction
  • Loading branch information
andreyyoshua authored Feb 24, 2022
2 parents c27277a + 3ede512 commit 0804a4a
Show file tree
Hide file tree
Showing 99 changed files with 1,180 additions and 6,511 deletions.
Binary file added .DS_Store
Binary file not shown.
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# macOS
.DS_Store

# Xcode
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/
*.xccheckout
profile
*.moved-aside
DerivedData
*.hmap
*.ipa

# Bundler
.bundle

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

Carthage/Build

# 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-ignore-the-pods-directory-in-source-control
#
# Note: if you ignore the Pods directory, make sure to uncomment
# `pod install` in .travis.yml
#
# Pods/
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# references:
# * https://www.objc.io/issues/6-build-tools/travis-ci/
# * https://github.com/supermarin/xcpretty#usage

osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/RxComposableArchitecture.xcworkspace -scheme RxComposableArchitecture-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
13 changes: 0 additions & 13 deletions DiffingInterface/DiffingInterface.docc/DiffingInterface.md

This file was deleted.

18 changes: 0 additions & 18 deletions DiffingInterface/DiffingInterface.h

This file was deleted.

13 changes: 0 additions & 13 deletions DiffingTestSupport/DiffingTestSupport.docc/DiffingTestSupport.md

This file was deleted.

18 changes: 0 additions & 18 deletions DiffingTestSupport/DiffingTestSupport.h

This file was deleted.

57 changes: 0 additions & 57 deletions DiffingTestSupport/XCTDecode.swift

This file was deleted.

15 changes: 0 additions & 15 deletions DiffingTestSupport/XCTPrettyEqual.swift

This file was deleted.

13 changes: 0 additions & 13 deletions DiffingUtility/DiffingUtility.docc/DiffingUtility.md

This file was deleted.

18 changes: 0 additions & 18 deletions DiffingUtility/DiffingUtility.h

This file was deleted.

14 changes: 14 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
use_frameworks!

platform :ios, '10.0'

target 'RxComposableArchitecture_Example' do
pod 'RxComposableArchitecture', :path => '../'
pod 'CasePaths', :podspec => '../development-podspecs/CasePaths.podspec.json'

target 'RxComposableArchitecture_Tests' do
inherit! :search_paths


end
end
16 changes: 11 additions & 5 deletions Podfile.lock → Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@ PODS:
- RxCocoa (5.1.1):
- RxRelay (~> 5)
- RxSwift (~> 5)
- RxComposableArchitecture (0.1.0):
- CasePaths
- RxCocoa (= 5.1.1)
- RxSwift (= 5.1.1)
- RxRelay (5.1.3):
- RxSwift (~> 5)
- RxSwift (5.1.1)

DEPENDENCIES:
- CasePaths (from `./RxComposableArchitecture/development-podspecs/CasePaths.podspec.json`)
- RxCocoa (= 5.1.1)
- RxSwift (= 5.1.1)
- CasePaths (from `../development-podspecs/CasePaths.podspec.json`)
- RxComposableArchitecture (from `../`)

SPEC REPOS:
trunk:
Expand All @@ -20,14 +23,17 @@ SPEC REPOS:

EXTERNAL SOURCES:
CasePaths:
:podspec: "./RxComposableArchitecture/development-podspecs/CasePaths.podspec.json"
:podspec: "../development-podspecs/CasePaths.podspec.json"
RxComposableArchitecture:
:path: "../"

SPEC CHECKSUMS:
CasePaths: 24576a4ae8972199d6195c91d6474896755664ed
RxCocoa: 32065309a38d29b5b0db858819b5bf9ef038b601
RxComposableArchitecture: 8e19c1d0c97c0d1cc2976b8b44137381ae062dc8
RxRelay: 5a18c2eb2d68326ebaf0112f80d837ae41b92b97
RxSwift: 81470a2074fa8780320ea5fe4102807cb7118178

PODFILE CHECKSUM: b186eb071dc125f12c8b55c07e3715069964f397
PODFILE CHECKSUM: fbef6ffe299d02b770ac092a983e56e004af7251

COCOAPODS: 1.11.2
Loading

0 comments on commit 0804a4a

Please sign in to comment.