Magnus Bergmark
Magnus Bergmark
Here are my _notes_ about this feature so people can contribute with ideas and feedback. **Current issues:** 1. Asset host is not applied to assets that get full URLs 2....
Deprecate `Automatic` in favor of something better. **Problems with `Automatic`:** - It's hard to understand that delivery causes assets to inline. - Delivery could be caused by another part of...
Current asset providers are printed out on errors, but their string representation doesn't say much more than class name and object id.
I get an error when the `eb-deploy` task is trying to upload the built WAR. Anonymized: ``` [error] (*:ebUploadSourceBundle) Status Code: 301, AWS Service: Amazon S3, AWS Request ID: 4B092FF1D6A0C108,...
The examples in the README doesn't really work as expected. The `/udp` option must be provided to the port specifications for it to work for me. ``` docker run --rm...
Adding support for ASCIIdoc requires the `vimple` plugin according to the README. `vimple`, in turn, adds several mappings to all filetypes that I don't want. Perhaps the library parts of...
Documentation to classes and methods are counted. I could agree that comments within methods should be counted since they add to the mental burden of reading that method. Comments on...
Running ``` cargo build-deps cargo test ``` downloads and compiles the dependencies twice.
So this was extracted from Rails since most people used observers wrong. Don't you think that examples that uses them in a bad way might invite people to make those...
I have an enum that basically looks like this: ```rust #[derive(EnumIs)] enum Value { U8(u8), String(String), Boolean(bool), } ``` When deriving `EnumIs` for this enum I get `is_u_8`, which I...