-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swift 4 Support #9
Conversation
@@ -10,6 +10,6 @@ Pod::Spec.new do |s| | |||
s.osx.deployment_target = "10.11" | |||
s.source = { :git => "https://github.com/danielgindi/ChartsRealm.git", :tag => "v#{s.version}" } | |||
s.source_files = "ChartsRealm/Classes/**/*.swift" | |||
s.dependency "Charts", "3.0.3" | |||
s.dependency "Charts", "3.0.4" | |||
s.dependency "RealmSwift", "~> 2.10" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shall we bump to 2.10.2 as well though it should be fine?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. We should leave it. All versions of 2.10 should be API compatible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure. good to go then
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
making sure everything still builds and the pod validates then ill merge
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sure. good to go then. My carthage update always timeout after a long time downloading realm swift :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should use the build command when testing. It's carthage build --no-skip-current
. Just builds stuff from checkout.
Migrates code to swift 4.