Documentation ¶
Index ¶
- Constants
- Variables
- func AtoInt32(text string) (int32, error)
- func BinaryLocation() (string, error)
- func CacheDir() (string, error)
- func ConfigDir() (string, error)
- func CreateUniqueDirectory(dir string, name string, maximumAttempts int) (string, error)
- func DownloadFile(filepath string, url string) (err error)
- func EnvironmentsDir() (string, error)
- func FileExists(path string) (bool, error)
- func FirstNotEmptyString(values ...string) string
- func GetCommandOutput(dir string, name string, args ...string) (string, error)
- func GetLatestVersionFromGitHub(githubOwner, githubRepo string) (semver.Version, error)
- func HomeDir() string
- func Int32ToA(n int32) string
- func InvalidArg(value string, values []string) error
- func InvalidArgError(value string, err error) error
- func InvalidArgf(value string, message string, a ...interface{}) error
- func InvalidOption(name string, value string, values []string) error
- func InvalidOptionError(option string, value string, err error) error
- func InvalidOptionf(option string, value string, message string, a ...interface{}) error
- func LoadCacheData(fileName string, loader CacheLoader) ([]byte, error)
- func PickName(names []string, message string) (string, error)
- func PickNameWithDefault(names []string, message string, defaultValue string) (string, error)
- func PickNames(names []string, message string) ([]string, error)
- func RegexpSplit(text string, regexSeperator string) []string
- func StringArrayIndex(array []string, value string) int
- func StringIndexes(text string, value string) []int
- func SuggestionsFor(typedName string, values []string, suggestionsMinimumDistance int, ...) []string
- func UnTargz(tarball, target string, onlyFiles []string) error
- func Unzip(src, dest string) error
- func UrlJoin(paths ...string) string
- type CacheLoader
Constants ¶
View Source
const ( DefaultWritePermissions = 0760 MaximumNewDirectoryAttempts = 1000 )
View Source
const (
DefaultSuggestionsMinimumDistance = 2
)
Variables ¶
View Source
var ColorError = color.New(color.FgRed).SprintFunc()
View Source
var ColorInfo = color.New(color.FgGreen).SprintFunc()
View Source
var ColorStatus = color.New(color.FgBlue).SprintFunc()
View Source
var ColorWarning = color.New(color.FgYellow).SprintFunc()
Functions ¶
func BinaryLocation ¶ added in v1.0.6
func CreateUniqueDirectory ¶ added in v1.0.2
CreateUniqueDirectory creates a new directory but if the combination of dir and name exists then append a number until a unique name is found
func DownloadFile ¶ added in v1.0.6
Download a file from the given URL
func EnvironmentsDir ¶ added in v1.0.6
func FileExists ¶
func FirstNotEmptyString ¶ added in v1.0.26
FirstNotEmptyString returns the first non empty string or the empty string if none can be found
func GetCommandOutput ¶ added in v1.0.14
GetCommandOutput evaluates the given command and returns the trimmed output
func GetLatestVersionFromGitHub ¶ added in v1.0.6
func InvalidArg ¶ added in v1.0.2
func InvalidArgError ¶ added in v1.0.2
func InvalidArgf ¶ added in v1.0.2
func InvalidOption ¶ added in v1.0.2
func InvalidOptionError ¶ added in v1.0.2
func InvalidOptionf ¶ added in v1.0.2
func LoadCacheData ¶ added in v1.0.2
func LoadCacheData(fileName string, loader CacheLoader) ([]byte, error)
LoadCacheData loads cached data from the given cache file name and loader
func PickNameWithDefault ¶ added in v1.0.10
func RegexpSplit ¶
RegexpSplit splits a string into an array using the regexSep as a separator
func StringArrayIndex ¶ added in v1.0.2
func StringIndexes ¶
StringIndexes returns all the indices where the value occurs in the given string
func SuggestionsFor ¶ added in v1.0.2
func UnTargz ¶ added in v1.0.6
untargz a tarball to a target, from http://blog.ralch.com/tutorial/golang-working-with-tar-and-gzipf
Types ¶
type CacheLoader ¶ added in v1.0.2
Click to show internal directories.
Click to hide internal directories.