Jon Roberts
Jon Roberts
Same problem. I'm running haskell via stack. Also, the suggested `-v` flag doesn't work. ``` $ hdevtools check list-ops_test.hs /Users/jon/exercism/haskell/list-ops/list-ops_test.hs:3:8: Could not find module ‘Test.HUnit’ Use -v to see a...
Has anyone on this ticket made any progress with SAML? I'm about to start implementing it for my app, but if there's already some work-in-progress that would be a big...
I'm a NixOS user too, and I've worked around this by adding the following to `test_helper.rb`: ```ruby require 'simplecov' Pathname.new(__FILE__).join('..','..','coverage').tap do |cov| # clear old coverage results FileUtils.rm_rf cov if...
I don't think this matters much in practice, it seems like most clients are able to handle it.
Oh, sorry, I got buried with other stuff and forgot to respond to this. I will have to do some testing again, but I believe this was with Rails 5.x...
Ruby 2.6.3 Rails 6.0 (in this case I don't think it matters) ```ruby class FooSerializer < Panko::Serializer attributes :body end FooSerializer.new.serialize(Struct.new(:body).new(" ")).to_json # => {"body":"\u003cp\u003e\u0026nbsp;\u003c/p\u003e"} ```
Same here, also using nix on MacOS. ``` /nix/store/qfpfm422812i64v9iwh372w2rk051m34-ruby2.6.3-ffi-1.11.1/lib/ruby/gems/2.6.0/gems/ffi-1.11.1/lib/ffi/library.rb:273: in `attach_function': Function 'libsass_version' not found in [ /nix/store/nm1v8gxk2whv6d9f3xp0awma6hii8b88-ruby2.6.3-sassc-2.2.1/lib/ruby/gems/2.6.0/gems/sassc-2.2.1/lib/sassc/libsass.bundle ] (FFI::NotFoundError) ```
I built the gem manually and compared to the bundle being used by nix, and there's clearly a problem in the compilation step: ``` ❯ ls -l /nix/store/46v23jpkv1pvbycbgd3az8ab22kp1x92-ruby2.6.3-sassc-2.2.1/lib/ruby/gems/2.6.0/gems/sassc-2.2.1/lib/sassc/libsass.bundle lib/sassc/libsass.bundle -r-xr-xr-x...
I'm having the same problem. Screenshot: [vim on top, neovim on the bottom](https://i.imgur.com/veLbsAM.png)
Found a solution for NixOS using home-manager. Basically, add plugins using the [vim-plug config option](https://nixos.wiki/wiki/Vim#Using_Vim-Plug_as_manager): ```nix { programs.neovim = { enable = true; viAlias = true; configure = { customRC...