Results 151 comments of Derek Kniffin

Actually... hold off on looking at this. I don't think this fixes my problem, it just moves it. With this change, I can set the `Content-Type`, but I don't think...

@1cg Alright. So here's a summary of what I'm trying to do. I've got a Rails app that was using jQuery and SJR (server-side javascript rendering). Basically, what the previous...

Oh, I see. After looking at the spec mentioned [here](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams/URLSearchParams), I see the value is supposed to be a string. So the Rails works around that by encoding the structure...

I ended up just setting the key to `b[c]` and `b[d]` manually. Thanks for the help!

I would also like this feature. To elaborate, with the following settings: ```rb "terminal.external.osxExec": "iTerm.app", "terminal.explorerKind": "external" ``` I'd expect that when I "Run File Specs" (or any of the...

+1 for a built-in fix for this. As @ariscol mentioned, there are several other issues on this repo talking about the same thing: https://github.com/ionic-team/ionicons/issues/915 https://github.com/ionic-team/ionicons/issues/1065 https://github.com/ionic-team/ionicons/issues/1059 https://github.com/ionic-team/ionicons/issues/1049 https://github.com/ionic-team/ionicons/issues/949 @liamdebeasi Is...

This is somewhat fixed by https://github.com/aalvarado/JiraDarkTheme/pull/50 but will need a few more CSS vars defined

These are fixed by https://github.com/aalvarado/JiraDarkTheme/pull/50

@sambostock Any update on this or the related rspec-rails issue? I didn't even know this feature existed, but after running into an issue with Timecop.freeze, googling around and ending up...

I also ran into this issue, and fixed it with @tarasmatsyk's solution: ``` it do # https://github.com/thoughtbot/shoulda-matchers/issues/682 subject.user = create(:user) is_expected.to validate_uniqueness_of(:user_id).scoped_to(:organization_id) end ```