Skip to content

Instantly share code, notes, and snippets.

@ericbrooke
ericbrooke / gist:b7db626d076c9eb2dd9f
Last active August 29, 2015 14:07
RVM forgetting gemset
before
PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
++ Users/mbh/.bashrc : 39 > source /Users/mbh/.rvm/scripts/rvm
+++ Users/mbh/.rvm/scripts/rvm : 10 > builtin test -n '3.2.53(1)-release' -o -n ''
+++ Users/mbh/.rvm/scripts/rvm : 12 > case "`uname`" in
++++ Users/mbh/.rvm/scripts/rvm : 12 > uname
++++ Users/mbh/.rvm/scripts/rvm : 15 > command ps -p 3383 -o ucomm=
++++ Users/mbh/.rvm/scripts/rvm : 15 > ps -p 3383 -o ucomm=
+++ Users/mbh/.rvm/scripts/rvm : 15 > __shell_name='bash '
+++ Users/mbh/.rvm/scripts/rvm : 17 > case "$__shell_name" in
@ericbrooke
ericbrooke / Rails testing with RSpec, Capybara and RSpec-Candy
Last active August 29, 2015 13:57
A place to remember the stuff that actually works
#setup on the command line
gem install rspec
rspec --init
#add to gemfile:
group :test, :development do
gem 'rspec-rails'
end
# on the command line