I was interested in trying this project out to bundle my Rails application into a deb and had to do a few tweaks to make this work:
Add method EnvValue#strip to return an EnvValue instead of a String (this might be a Ruby 3.0 change?)
I noticed the default branch of the Ruby buildpack changed from master to main so I changed the default value to make the tests pass.
After testing, I was able to use it to successfully build a deb of my project.
Since I was testing this out in GitHub Actions, I left my workflow file for now. If you'd rather not use it, I can remove it. Right now it is testing against the following:
Hello,
I was interested in trying this project out to bundle my Rails application into a deb and had to do a few tweaks to make this work:
EnvValue#strip
to return anEnvValue
instead of aString
(this might be a Ruby 3.0 change?)master
tomain
so I changed the default value to make the tests pass.After testing, I was able to use it to successfully build a deb of my project.
Since I was testing this out in GitHub Actions, I left my workflow file for now. If you'd rather not use it, I can remove it. Right now it is testing against the following:
I was aiming to match the versions that were covered in Travis CI with exception of Ubuntu 16.04 which I don't think is available for GitHub Actions.
Hopefully this looks good, if you have any concerns please let me know.
Thanks for the project!