-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* I decided to force unwrap these warnings, thinking the values really need to be there in order for the code to function, so a crash would be a good idea if they aren't. * Swift 5 changes, and CocoaPods 1.6.1 changes. * Bumped the version number to 2.8.0, added my name to the authors. Bumped the RxSwift, RXCocoa and RXGesture to the Swfit 5 versions. * Bumped the Travis Xcode settings to 10.2. * Update CardParts.podspec Co-Authored-By: lwdupont <[email protected]> * Testing to see if I can get the unit tests to actually run on Travis. * This command works locally on my laptop.
- Loading branch information
Showing
8 changed files
with
30 additions
and
46 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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
language: swift | ||
xcode_workspace: Example/CardParts.xcworkspace | ||
xcode_scheme: CardParts-Example | ||
osx_image: xcode10.1 | ||
osx_image: xcode10.2 | ||
podfile: Example/Podfile | ||
before_install: | ||
- gem install cocoapods | ||
- pod repo update | ||
script: xcodebuild test -workspace Example/CardParts.xcworkspace -scheme CardParts-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO -quiet | ||
script: xcodebuild test -workspace Example/CardParts.xcworkspace -scheme CardParts-Example -sdk iphonesimulator -destination "platform=iOS Simulator,OS=12.2,name=iPhone Xs Max" ONLY_ACTIVE_ARCH=NO -quiet |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
Pod::Spec.new do |s| | ||
s.name = 'CardParts' | ||
s.version = '2.7.5' | ||
s.version = '2.8.0' | ||
s.platform = :ios | ||
s.summary = 'iOS Card UI framework.' | ||
|
||
|
@@ -17,20 +17,20 @@ CardParts is an iOS Card UI framework that uses MVVM and automatic data binding | |
DESC | ||
|
||
s.homepage = 'https://github.com/intuit/CardParts' | ||
s.authors = { "Chase Roossin" => "[email protected]", "Bharath Urs" => "[email protected]" } | ||
s.authors = { "Chase Roossin" => "[email protected]", "Bharath Urs" => "[email protected]", "Lucien Dupont" => "[email protected]" } | ||
s.source = { :git => 'https://github.com/intuit/CardParts.git', :tag => s.version.to_s } | ||
s.license = { :type => 'Apache 2.0' } | ||
s.resources = [ | ||
'CardParts/Assets/*.xcassets', | ||
] | ||
|
||
s.ios.deployment_target = '10.0' | ||
s.swift_version = '4.2' | ||
s.swift_version = '5.0' | ||
s.source_files = 'CardParts/src/**/*' | ||
|
||
s.dependency 'RxSwift', '~> 4.4' | ||
s.dependency 'RxCocoa', '~> 4.4' | ||
s.dependency 'RxSwift', '~> 4.5' | ||
s.dependency 'RxCocoa', '~> 4.5' | ||
s.dependency 'RxDataSources', '~> 3.1' | ||
s.dependency 'RxGesture', '~> 2.1' | ||
s.dependency 'RxGesture', '~> 2.2' | ||
|
||
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
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
Example/CardParts.xcodeproj/xcshareddata/xcschemes/CardParts-Example.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