Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
source install.sh
source symlinkit.sh
source config.sh

Keybase proof

I hereby claim:

  • I am dgmora on github.
  • I am dgmora (https://keybase.io/dgmora) on keybase.
  • I have a public key ASB0Ox10CuxTI4KyF2ZR591XSS0PDazXzK0uVB0Td3MUvAo To claim this, I am signing this object:
{
  "body": {
    "key": {
@dgmora
dgmora / hack_rspec.rb
Last active April 5, 2017 17:54
Add a checkpoint inside an it/scenario to artificially create a passed test
class RSpec::Core::ExampleGroup
def checkpoint(title)
title = RSpec.current_example.description + " - ✓ checkpoint: " + title
example = RSpec::Core::Example.new(self.class, title, {}, Proc.new{ })
example.run(self, RSpec.configuration.reporter)
end
end
def checkpoint(title)
checkit(title) { true }