aesyondu
aesyondu
I have the same issue. Have you found a workaround @hyquoccuong ? composer.json (versions): ```json { "bepsvpt/secure-headers": "v6.3.0", "laravel/lumen-framework": "v5.8.13", } ``` config/secure-headers.php ```php /* * X-Powered-By * * Note:...
Nvm, thanks @tobias-trozowski. In my case it was the `php.ini` 1. verify that `expose_php` is **On** ```sh php -i | grep expose # expose_php => On => On ``` 2....
Hi, I don't think monkey patching is needed, it's not documented in the README, but it is possible to [upload to shared GDrive folders](https://github.com/gimite/google-drive-ruby/blob/55b996b2c287cb0932824bf2474248a498469328/lib/google_drive/collection.rb#L98) ("collections" as per this library's source...
> My guess is that you need to have the pip package `psycopg2` installed to be able to create users, as documented [here](https://docs.ansible.com/ansible/latest/modules/postgresql_user_module.html). I did this through a pre_task: >...
I have a similar issue. I'm using the [govuk/gemstash-alpine](https://hub.docker.com/r/govuk/gemstash-alpine) When the internet is up, the docker container seems to be working. ```sh [2021-04-06 14:42:55 +0000] - INFO - Gem racc-1.5.2...
Has anyone figured out how to use this with Rails 6/zeitwerk?
If this project is abandoned, I found another project which worked well for my use case: https://github.com/markshapiro/webpack-merge-and-include-globally In my case I wanted it to output a manifest file using https://github.com/ztoben/assets-webpack-plugin....
I'm not sure what you mean. Currently the default is: ```javascript browser.newConext({ viewport: { width: 800, // 1280 in commit 1ee6578 height: 600, // 720 in commit 1ee6578 } })...
Before the `viewport: null` I'm getting: ``` width: 800 height: 600 ``` which is expected of course, since that is the default. I tried the `browser.newContext({ viewport: null })` and...
I recently had to get access to the test name during the test, so I followed this comment https://github.com/facebook/jest/issues/7774#issuecomment-520780088. My plan is to use `jasmine.currentTest.failedExpectations.length > 0` to identify if...