Chris Stefano

Results 10 issues of Chris Stefano

I've picked up an issue when validating SAML responses when using `SHA256` for the signing algorithm. In the [SamlIdp::Controller#encode_SAMLResponse](https://github.com/lawrencepit/ruby-saml-idp/blob/master/lib/saml_idp/controller.rb#L73) method, the code to produce the identifier is string interpolated as...

This PR adds the capability to receive Telegram updates via [Webhook][webhooks] delivery. Following the pattern established in the `Updater` class, the `Webhook` class follows similar steps for setup and running....

Implemented back port of informal_model_name feature for Rails 3.0

Hello, Following on from #163 I converted all my features which use `installsAfter` to use the [global scenarios](https://github.com/virtualstaticvoid/devcontainers-cli-issue-163/pull/1/commits/5d8b80d1669e458cd7a1d40776548781e945a0c0) test functionality and [removed](https://github.com/virtualstaticvoid/devcontainers-cli-issue-163/pull/1/commits/1719c646dc94b45f82ebdd6552cc563333917ed1) them from specific feature tests since they always...

## Summary Description: - Tool repo URL: https://github.com/ollama/ollama - Plugin repo URL: https://github.com/virtualstaticvoid/asdf-ollama ## Checklist - [x] Format with `scripts/format.bash` - [x] Test locally with `scripts/test_plugin.bash --file plugins/` - [x]...

Updates `ldd.fakechroot.pl` to take into account paths included the `FAKECHROOT_EXCLUDE_PATH` environment variable.

When setting the working directory to a symlinked directory within the fakechroot, which was created outside of the chroot, and then trying to list or open a file results in...

Hi @sekka1 Firstly, thanks for your [article](https://medium.com/@gargar454/deploy-a-mesos-cluster-with-7-commands-using-docker-57951e020586) it has helped me get up and running real quick. I've found an issue when running jobs which need a port open, such...

Adds `before_started`, `after_completed` and `after_failed` functionality. E.g. ```ruby module MyProcess extend Taskinator::Definition # defines a process define_process do # define task to execute before process starts before_started :slack_notification # tasks,...

One more question. Is there any best practice for testing flows. I stubbed all my jobs `perform` method and run ``` Resque.inline = true process = MyProcess.create_process process.enqueue! ``` but...