Skip to content

Instantly share code, notes, and snippets.

@autarch
Created March 26, 2019 17:57
Show Gist options
  • Select an option

  • Save autarch/9ae4424f8b87c42cac5e4e8d2941b82f to your computer and use it in GitHub Desktop.

Select an option

Save autarch/9ae4424f8b87c42cac5e4e8d2941b82f to your computer and use it in GitHub Desktop.
my $results = $Client->release( "$name-$version" )->items;
my $results = $Client->release( { name => "$name-$version" } )->items;
my $results = $Client->release
{
all => [
{ name => $name },
{ version => $version },
],
},
)->items;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment