Jacob Atzen

Results 23 comments of Jacob Atzen

I added a monkey patch in an initializer: ```ruby if defined?(DatabaseCleaner) module DatabaseCleaner module ActiveRecord class Base private def load_config if db != :default && db.is_a?(Symbol) && File.file?(DatabaseCleaner::ActiveRecord.config_file_location) connection_details =...

Problem still present in 0.17: ``` ---- elm repl 0.17.0 ----------------------------------------------------------- :help for help, :exit to exit, more at -------------------------------------------------------------------------------- > f x = x : a -> a >...

Also, this is not limited to when pasting - the example I gave was from direct input into the repl.

I agree, tests would be great. How do we test rake tasks?

> Basically avoiding any logic in the rakefile. 💯

Doesn't work for me: ``` $ make all cd components/common/assets; \ /bin/rm -rf assets_vfsdata.go ; \ GOPATH=/Users/jacob/Code/go GO15VENDOREXPERIMENT=1 GOOS=darwin GOARCH=amd64 CGO_ENABLED=1 go run assets_generator.go -tags=dev /bin/sh: line 0: cd: components/common/assets:...

``` $ make /bin/rm -rf /Users/jacob/Code/go/src/github.com/TheNewNormal/corectl/bin/corectl /bin/rm -rf /Users/jacob/Code/go/src/github.com/TheNewNormal/corectl/bin/corectld /bin/mkdir -p /Users/jacob/Code/go/src/github.com/TheNewNormal/corectl/bin cd cmd; GOPATH=/Users/jacob/Code/go GO15VENDOREXPERIMENT=1 GOOS=darwin GOARCH=amd64 CGO_ENABLED=1 go build -o /Users/jacob/Code/go/src/github.com/TheNewNormal/corectl/bin/corectl \ -gcflags "" -ldflags " -w -s...

Was just bitten by this as well. I had the following elm-package.json: ``` { "version": "1.0.0", "summary": "helpful summary of your project, less than 80 characters", "repository": "https://github.com/user/project.git", "license": "BSD3",...