-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove deprecated interfaces * Force stdout and stderr to sync This output came from CI: ``` ** Invoke assets:precompile (first_time) START RAKE TEST OUTPUT $ echo $PATH ** Execute assets:precompile /layers/heroku_ruby/gems/ruby/3.2.0/bin:/workspace/bin:/layers/heroku_ruby/gems/bin:/layers/heroku_ruby/bundler/bin:/layers/heroku_ruby/binruby/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin $ which -a rake /layers/heroku_ruby/gems/ruby/3.2.0/bin/rake /workspace/bin/rake /layers/heroku_ruby/gems/bin/rake /layers/heroku_ruby/binruby/bin/rake /usr/bin/rake /bin/rake $ which -a ruby /layers/heroku_ruby/binruby/bin/ruby /usr/bin/ruby /bin/ruby END RAKE TEST OUTPUT ``` Which is ordered incorrectly. This forces stdout and stderr to emit immediately instead of buffering.
- Loading branch information
Showing
16 changed files
with
9 additions
and
2,192 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
mod configure_env_layer; | ||
mod default_env_layer; | ||
pub mod diff_migrate; | ||
|
||
#[deprecated(note = "Use the struct layer API in the latest libcnb.rs instead")] | ||
pub use self::configure_env_layer::ConfigureEnvLayer; | ||
|
||
#[deprecated(note = "Use the struct layer API in the latest libcnb.rs instead")] | ||
pub use self::default_env_layer::DefaultEnvLayer; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -4,4 +4,3 @@ pub mod gem_version; | |
pub mod gemfile_lock; | ||
pub mod layer; | ||
pub mod metadata_digest; | ||
pub mod output; |
Oops, something went wrong.