Christian Schmidt
Christian Schmidt
Currently an instance can only pass one property, so in this case the latter assertion will fail. ``` fi = FastImage.new(File.join(FixturePath, "animated.gif")) assert_equal [400, 400], fi.size assert_equal true, fi.animated ```...
Handle animated PNGs like animated GIFs in media attachments. `Fastimage.animated?` now supports PNG (as https://github.com/sdsykes/fastimage/pull/144). The transparent pixels in GIFs are currently filled with white. To achieve the same for...
`Logger.logger_outputs_to?` only supports `STDOUT` and `STDERR`, not `File` objects or plain filenames.
If the user loads the password reset page with an expired or invalid password token, there is no point in showing the password+password_confirmation fields. The user would most likely want...
Some of the options provided in `setup()` may depend on user preferences or subscribed services. This PR permits calling setup() again to update the settings.
According to the README, several functions return a Promise, but they don't. This patch fixes this for iOS (at least for some methods). This is an old patch from an...
The RBNF for individual locales do not fall back to `root`. This is wrong. In particular, many locales rely on `digits-ordinal` being inherited from `root`. The format currently exported by...
The Rserve-php requires that the Rserve server is configured to use `native` encoding. If the server default encoding is `utf8`, my connection chokes when a string contains a non-ASCII character....
Fix misspelled variable `@refrsher` → `@refresher`.
### Issue Description The method name `Sentry::Scope#set_transaction_name` suggests that it is a simple setter, but in fact it appends the specified name to an array. AFAICT this array is never...