-
Notifications
You must be signed in to change notification settings - Fork 9
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
Make useIdiomaticEndpoints default to true #103
Conversation
Depends on higherkindness/skeuomorph#342. Also cleans up the Model by removing unused classes, and updates the tests and documentation.
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.
Thanks @L-Lavigne !
@@ -103,6 +103,7 @@ final case class AvroSrcGenerator( | |||
}) | |||
.map(generateFrom(_, serializationType)) | |||
|
|||
//TODO: implement this using higherkindness.skeuomorph.mu.Protocol.fromAvroProtocol, as is done in ProtoSrcGenerator |
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.
This is probably part of #101, right?
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.
Oh, I was just making a note of the discrepancy and forgot there was an issue to address this. :-)
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.
I'm rebasing #101 off of this in anticipation of yours being merged first :D
@@ -155,7 +155,7 @@ object SrcGenPlugin extends AutoPlugin { | |||
} | |||
}, | |||
muSrcGenCompressionType := NoCompressionGen, | |||
muSrcGenIdiomaticEndpoints := false, | |||
muSrcGenIdiomaticEndpoints := true, |
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.
We'll probably need to update this section in the mu-scala docs 👍
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.
Indeed, I've got a documentation PR for mu-scala here: higherkindness/mu-scala#1026
Fixes #93 via higherkindness/skeuomorph#342 and the resulting Skeuomorph release 0.0.26.
Also cleans up the Model by removing unused classes, and updates the tests and documentation.