Skip to content

Instantly share code, notes, and snippets.

@koic
Last active February 1, 2016 10:01
Show Gist options
  • Save koic/5443db0751a11601abb6 to your computer and use it in GitHub Desktop.
Save koic/5443db0751a11601abb6 to your computer and use it in GitHub Desktop.
"Extreme Fish Bowl" Cheat Sheet

"Extreme Fish Bowl" Bootstrap Cheat Sheet

1. bundle init

$ bundle init

2. Add rspec to Gemfile

$ echo "gem 'rspec'" >> Gemfile

3. bundle install

$ bundle install

4. Make the initial code

$ echo -e "require 'bundler'\n\nBundler.require\n\ndescribe do\n  specify { expect(true).to be true }\nend" > black_jack.rb

5. bundle exec rspec

$ bundle exec rspec black_jack.rb

Fun "Extreme Fish Bowl"!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment