Skip to content

Instantly share code, notes, and snippets.

View eltone's full-sized avatar

Anthony Hobbs eltone

  • NaturalMotion Games Ltd
  • London, UK
View GitHub Profile

Keybase proof

I hereby claim:

  • I am eltone on github.
  • I am eltone (https://keybase.io/eltone) on keybase.
  • I have a public key ASDd7QIwzZ_J_eUkLRVsU4R11_wdAl7ER8mNrHqOiVgx8go

To claim this, I am signing this object:

This list is based on aliases_spec.rb.

You can see also Module: RSpec::Matchers API.

matcher aliased to description
a_truthy_value be_truthy a truthy value
a_falsey_value be_falsey a falsey value
be_falsy be_falsey be falsy
a_falsy_value be_falsey a falsy value
@eltone
eltone / devpackages.config
Created November 13, 2014 18:57
a chocolatey packages file for adding useful things to a clean windows install
<packages>
<package id="javaruntime" />
<package id="ruby1.9" />
<package id="ruby.devkit" />
<package id="python" />
<package id="DotNet3.5" />
<package id="webpi" />
<package id="git" />
<package id="iisexpress" version="8.0" source="webpi" />
<package id="SublimeText3" />
@eltone
eltone / DisableNuGetPackageRestore.ps1
Last active December 25, 2015 12:58
A hacky script to remove all traces of nuget package restore when run inside a visual studio solution directory.
if(!(Test-Path *.sln)) {
echo ($pwd.Path + " is not a vs solution folder")
}
else {
#remove .nuget folder
Remove-Item .nuget -Recurse
#remove .nuget sln folder
Get-Item *.sln | ForEach-Object {
$c = [System.IO.File]::ReadAllText($_.Fullname)
dir | ForEach-Object {
git --git-dir=$($_.FullName)\.git --work-tree=$($_.FullName) clean -fdx
Write-Host $_.FullName cleaned.
}