This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:d0654ab99d5016af7c4e06bff72b2e4be8d06a87]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:d0654ab99d5016af7c4e06bff72b2e4be8d06a87]
#!/usr/bin/env ruby | |
require 'bundler/inline' | |
require 'optparse' | |
require 'timeout' | |
gemfile do | |
source 'https://rubygems.org' | |
gem 'redis' | |
end |
# All class methods (original) | |
# Usage: Mailjet::WebhookService::Event.all | |
module Mailjet | |
module WebhookService | |
class Base | |
class << self | |
def domain(prefix=nil) | |
end |
# (1) if with assignment wide indent (original) | |
destination = if to.is_a?(URI) | |
to.to_s | |
elsif to.start_with?("http://") || to.start_with?("https://") | |
to | |
else | |
prefixed_path(to) | |
end | |
# (2) case with assignment wide indent |