Alexander Mankuta

Results 174 comments of Alexander Mankuta

Documentation is a little inconsistent. On the [File Provider Framework](https://developer.apple.com/documentation/fileprovider) page it states availability to be macOS 10.15+ but on the individual protocol pages (e.g. [NSFileProviderReplicatedExtension](https://developer.apple.com/documentation/fileprovider/nsfileproviderreplicatedextension)) it's macOS 11.0+. I...

It seems the issue is reported on the [wrong node](https://github.com/phpmd/phpmd/blob/bdefdd462ccfa892f9050a712a7ab4ed5f7178b0/src/main/php/PHPMD/Rule/Controversial/CamelCaseVariableName.php#L101). The whole function node instead of just the variable node.

Repeaters are ran right before the document gets rendered. That is, after all content has been placed. That is by design. Is there a reason you can not render images...

There are a number of solutions. 1. You can use document background: ```ruby Prawn::Document.generate "test.pdf", background: 'background.png' do text 'foo' start_new_page text 'bar' start_new_page text 'baz' end ``` 2. You...

It's not quite possible to call `on_page_create` because the first page is created before it can be defined. As a work around you can pain the background on the first...

I don't think placing `on_page_create` into a repeater achieves anything useful. I agree that this is a confusing behaviour but it's a nature of Prawn. You can think of Prawn...

You can try setting margins to leave enough space for your header image.

> the only way to setup margin is only by giving parameter to Prawn::Document.generate() and start_new_page() right? You can also use `bounding_box` with a block or assign `bounds` on the...

Thank you for your contributions. I will take a look soon.