From f695b22db27b959c3e3efe74badf34dbc38ce117 Mon Sep 17 00:00:00 2001 From: Bradley Cicenas Date: Sat, 3 Mar 2018 06:00:42 +0000 Subject: [PATCH] transfer repo name --- LICENSE | 2 +- Makefile | 4 ++-- README.md | 10 +++++----- contrib/vim-slackcat/README.md | 4 ++-- slackcat.rb | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/LICENSE b/LICENSE index f70be67..1c5d82d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 bradley +Copyright (c) 2018 Bradley Cicenas Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index f91b18f..ae54e43 100644 --- a/Makefile +++ b/Makefile @@ -20,14 +20,14 @@ release: mkdir release go get github.com/progrium/gh-release/... cp build/* release - gh-release create vektorlab/$(NAME) $(VERSION) \ + gh-release create bcicen/$(NAME) $(VERSION) \ $(shell git rev-parse --abbrev-ref HEAD) $(VERSION) arch-release: mkdir -p arch-release go get github.com/seletskiy/go-makepkg/... cd arch-release && \ - go-makepkg -p version "Commandline utility for posting snippets to Slack" git://github.com/vektorlab/slackcat.git; \ + go-makepkg -p version "Commandline utility for posting snippets to Slack" git://github.com/bcicen/slackcat.git; \ git clone ssh://aur@aur.archlinux.org/slackcat.git; \ cp build/* slackcat/ cd arch-release/slackcat/ && \ diff --git a/README.md b/README.md index 361443e..fb957bc 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ Slackcat is a simple commandline utility to post snippets to Slack. - slackcat + slackcat ## Installing Download the latest release for your platform: ```bash -curl -Lo slackcat https://github.com/vektorlab/slackcat/releases/download/v1.4/slackcat-1.4-$(uname -s)-amd64 +curl -Lo slackcat https://github.com/bcicen/slackcat/releases/download/v1.4/slackcat-1.4-$(uname -s)-amd64 sudo mv slackcat /usr/local/bin/ sudo chmod +x /usr/local/bin/slackcat ``` @@ -22,8 +22,8 @@ brew install slackcat ## Building To optionally build `slackcat` from source, ensure you have [dep](https://github.com/golang/dep) installed and run: ``` -go get github.com/vektorlab/slackcat && \ -cd $GOPATH/src/github.com/vektorlab/slackcat && \ +go get github.com/bcicen/slackcat && \ +cd $GOPATH/src/github.com/bcicen/slackcat && \ make build ``` @@ -35,7 +35,7 @@ slackcat --configure ``` You'll be prompted for a team nickname and a new browser window will be opened for you to confirm the request via Slack. Provide the returned token to slackcat when prompted, and you're ready to go! -For configuring multiple teams and default channels, see [Configuration Guide](https://github.com/vektorlab/slackcat/blob/master/docs/configuration-guide.md). +For configuring multiple teams and default channels, see [Configuration Guide](https://github.com/bcicen/slackcat/blob/master/docs/configuration-guide.md). ## Usage Pipe command output as a text snippet: diff --git a/contrib/vim-slackcat/README.md b/contrib/vim-slackcat/README.md index cbef951..1814f4c 100644 --- a/contrib/vim-slackcat/README.md +++ b/contrib/vim-slackcat/README.md @@ -5,12 +5,12 @@ Ridiculously simple plugin to send a visual selection to an Slack channel Install via your preferred plugin manager; e.g. Vundle: ``` -Plugin 'vektorlab/slackcat', {'rtp': 'contrib/vim-slackcat' } +Plugin 'bcicen/slackcat', {'rtp': 'contrib/vim-slackcat' } ``` Or manually: ``` -curl -Lo ~/.vim/plugin/slackcat.vim https://raw.githubusercontent.com/vektorlab/slackcat/master/contrib/vim-slackcat/plugin/vim-slackcat.vim +curl -Lo ~/.vim/plugin/slackcat.vim https://raw.githubusercontent.com/bcicen/slackcat/master/contrib/vim-slackcat/plugin/vim-slackcat.vim ``` ## Notes diff --git a/slackcat.rb b/slackcat.rb index bd0570b..81e94fa 100644 --- a/slackcat.rb +++ b/slackcat.rb @@ -1,7 +1,7 @@ class Slackcat < Formula desc "Simple command-line Utility to post snippets to Slack." - homepage "https://github.com/vektorlab/slackcat" - url "https://github.com/vektorlab/slackcat/archive/v0.6.tar.gz" + homepage "https://github.com/bcicen/slackcat" + url "https://github.com/bcicen/slackcat/archive/v0.6.tar.gz" version "0.6" sha256 "58beac16e8949a793400025ea3ce159220f21cbf3f92bf8e5530d7662d3132e9"