gondler icon indicating copy to clipboard operation
gondler copied to clipboard

Bundler for golang

Results 5 gondler issues
Sort by recently updated
recently updated
newest added

In 1.5 the go command will read the environment variable GO15VENDOREXPERIMENT. If enabled, it will use the local "/vendor/" folder for dependencies. This replaces the need to manage GOPATH variables...

``` lib/gondler/gomfile.rb:22:in `realpath': No such file or directory - .../gocode/src (Errno::ENOENT) ``` where gocode is my `$GOPATH`.

bug

> @rosylilly おめでとうございます!Ruby 2.2の新機能 https://t.co/O8A7bcz9m8 がこちらのメソッド名とかぶっているのが観測されました。 https://t.co/NpURkM8S0g /cc n0kada > http://twitter.com/a_matsuda/status/495508402152280064

wontfix

**Create Gomfile.lock** An proposal. - Gomfile ``` ruby gom 'github.com/golang/glog' gom 'github.com/golang/lint', commit: '1ad6a0eeb85088d8f32e1c5db9965f4a11c0af70' gom 'github.com/futoase/underground', branch: 'welcome-to-heaven' gom 'bitbucket.org/matrixik/listdict', tag: 'tip' gom 'bitbucket.org/llg/gocreate' ``` - Gomfile.lock ``` ruby github.com/golang/glog:...

my project directory is in $GOPATH, I need a subdir to collect some stuff like models ``` src/models/user.go src/main.go ``` gondler prevent me to import "model", because $GOPATH is replaced...