Skip to content

Commit

Permalink
transfer repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
bcicen committed Mar 3, 2018
1 parent 4481157 commit f695b22
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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://[email protected]/slackcat.git; \
cp build/* slackcat/
cd arch-release/slackcat/ && \
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
Slackcat is a simple commandline utility to post snippets to Slack.


<img width="500px" src="https://raw.githubusercontent.com/vektorlab/slackcat/master/demo.gif" alt="slackcat"/>
<img width="500px" src="https://raw.githubusercontent.com/bcicen/slackcat/master/demo.gif" alt="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
```
Expand All @@ -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
```

Expand All @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions contrib/vim-slackcat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions slackcat.rb
Original file line number Diff line number Diff line change
@@ -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"

Expand Down

0 comments on commit f695b22

Please sign in to comment.