Cody Cutrer
Cody Cutrer
- don't bother encrypting the IV (?!) - use the same encryption key for the encryption as for the HMAC (easy to configure, since it's the same as for normal...
by using spawn instead of fork when fork is unavailable. it's a bit slower to startup since it has to clean-start a new jruby process, but subsequent runs still get...
I want to make feature improvements to jar-dependencies, but when I install the updated gem into my system, bundler will refuse to load it because the default gem has already...
I have a spec that is exercising a DSL of its own: ```ruby let(:actor_class) do Class.new do extend AdheresToPolicy::ClassMethods set_policy do given { |actor| actor == "allowed actor" || actor.is_a?(user_class)...
fixes gh-796 libgit2 already supports it. I wrote the tests for it, but was unable to get _any_ of the OnlineTests to work. I'm guessing I probably just don't fully...
avoids having to have the caller keep looking up objects directly from the repo
libgit2 already supports ssh keys from memory (https://libgit2.org/libgit2/#HEAD/group/cred/git_cred_ssh_key_memory_new), just need to wrap that with a suitable ruby object
```ruby repo = Rugged::Repository.new("") repo.submodules.each{}; nil # segfaults ``` I've reproed on Mac and Linux, both times _not_ using the system libgit2.