GemAliases.

GemPush(ICakeContext, FilePath, GemPushSettings) Method

Summary

Pushes the gem using the path to the gem file and any additional settings.
Assembly
Cake.Gem.dll
Namespace
Cake.Gem
Containing Type
GemAliases

Syntax

public static void GemPush(this ICakeContext context, FilePath gemFilePath, GemPushSettings settings)

Examples

GemBuild("test.gem", new GemPushSettings()
{
    Key = "rubygems" }
});

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
gemFilePath FilePath The path to the gem file.
settings GemPushSettings The settings.

Return Value

Type Description
void