From: Nathan Youngman Date: Fri, 20 Jun 2014 03:23:27 +0000 (-0600) Subject: move to nathany/fsnotify X-Git-Tag: v1.7.2~310 X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=4bbf7b39b65d87fceceecbd3caeae7a144f9dce0;p=fsnotify.git move to nathany/fsnotify --- diff --git a/CHANGELOG.md b/CHANGELOG.md index f0df1d4..760c058 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ ## v0.10.0 / 2014-05-23 -* [API] Remove current implementation of WatchFlags [#1](https://github.com/gophertown/fsnotify/pull/1) +* [API] Remove current implementation of WatchFlags [#1](https://github.com/nathany/fsnotify/pull/1) ## v0.9.0 / 2014-01-17 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 86cce0f..f5ec9ab 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ We plan to include os/fsnotify in the Go standard library with a new [API](http: To hack on fsnotify: -1. Install as usual (`go get -u github.com/howeyc/fsnotify`) +1. Install as usual (`go get -u github.com/nathany/fsnotify`) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Ensure everything works and the tests pass (see below) 4. Commit your changes (`git commit -am 'Add some feature'`) @@ -28,7 +28,7 @@ Contribute upstream: For other team members: -1. Install as usual (`go get -u github.com/howeyc/fsnotify`) +1. Install as usual (`go get -u github.com/nathany/fsnotify`) 2. Add your remote (`git remote add fork git@github.com:mycompany/repo.git`) 3. Pull your revisions (`git fetch fork; git checkout -b my-new-feature fork/my-new-feature`) @@ -43,9 +43,9 @@ Before doing a pull request, please do your best to test your changes on multipl To make cross-platform testing easier, we've created a Vagrantfile for Linux and BSD. * Install [Vagrant](http://www.vagrantup.com/) and [VirtualBox](https://www.virtualbox.org/) -* Setup [Vagrant Gopher](https://github.com/gophertown/vagrant-gopher) in your `src` folder. +* Setup [Vagrant Gopher](https://github.com/nathany/vagrant-gopher) in your `src` folder. * Run `vagrant up` from the project folder. You can also setup just one box with `vagrant up linux` or `vagrant up bsd` (note: the BSD box doesn't support Windows hosts at this time, and NFS may prompt for your host OS password) -* Once setup, you can run the test suite on a given OS with a single command `vagrant ssh linux -c 'cd howeyc/fsnotify; go test ./...'`. +* Once setup, you can run the test suite on a given OS with a single command `vagrant ssh linux -c 'cd nathany/fsnotify; go test ./...'`. * When you're done, you will want to halt or destroy the vagrant boxes. Notice: fsnotify file system events won't work on shared folders. The tests get around this limitation by using a tmp directory, but it is something to be aware of when logging in with `vagrant ssh linux` to do some manual testing. diff --git a/README.md b/README.md index 654360e..2b87ad2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # File system notifications for Go -[![Build Status](https://drone.io/github.com/gophertown/fsnotify/status.png)](https://drone.io/github.com/gophertown/fsnotify/latest) [![Coverage](http://gocover.io/_badge/github.com/gophertown/fsnotify)](http://gocover.io/github.com/gophertown/fsnotify) [![GoDoc](https://godoc.org/github.com/gophertown/fsnotify?status.png)](http://godoc.org/github.com/gophertown/fsnotify) +[![Coverage](http://gocover.io/_badge/github.com/nathany/fsnotify)](http://gocover.io/github.com/nathany/fsnotify) [![GoDoc](https://godoc.org/github.com/nathany/fsnotify?status.png)](http://godoc.org/github.com/nathany/fsnotify) Cross platform, works on: * Windows diff --git a/example_test.go b/example_test.go index 21a0f9a..5991915 100644 --- a/example_test.go +++ b/example_test.go @@ -7,7 +7,7 @@ package fsnotify_test import ( "log" - "github.com/gophertown/fsnotify" + "github.com/nathany/fsnotify" ) func ExampleNewWatcher() {