]> go.fuhry.dev Git - fsnotify.git/commitdiff
move to nathany/fsnotify
authorNathan Youngman <git@nathany.com>
Fri, 20 Jun 2014 03:23:27 +0000 (21:23 -0600)
committerNathan Youngman <git@nathany.com>
Fri, 20 Jun 2014 03:23:27 +0000 (21:23 -0600)
CHANGELOG.md
CONTRIBUTING.md
README.md
example_test.go

index f0df1d401eb7718dc772ee5258e9fe718642cad6..760c058d0b85edeadd1c8ff2b07924d555afa81e 100644 (file)
@@ -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
 
index 86cce0f35119a97a5ef55e17dcff2363350d1b0e..f5ec9ab60a6d2eaba16a56676d343ab5eb5fb61e 100644 (file)
@@ -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.
index 654360e7e61a373acf1e4e98e79da01889854d2f..2b87ad20159e64741a08759ff2329d8b908a65bd 100644 (file)
--- 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
index 21a0f9a45f94520f11d69ac87261f63c011b8d71..59919150e8bc806ee1b3c88a96fe798d1f29d329 100644 (file)
@@ -7,7 +7,7 @@ package fsnotify_test
 import (
        "log"
 
-       "github.com/gophertown/fsnotify"
+       "github.com/nathany/fsnotify"
 )
 
 func ExampleNewWatcher() {