Skip to content

Instantly share code, notes, and snippets.

View matthijsgroen's full-sized avatar
🚀
Computering

Matthijs Groen matthijsgroen

🚀
Computering
View GitHub Profile
@matthijsgroen
matthijsgroen / rails-backbone.rb
Created July 13, 2012 05:27 — forked from rrooding/rails-backbone.rb
Rails Backbone template
gem_group :assets do
gem 'haml_coffee_assets'
gem 'execjs'
gem 'i18n-js'
end
gem_group :assets, :development do
gem 'rails-backbone'
end
gem 'haml-rails'
gem_group :test, :development do
@matthijsgroen
matthijsgroen / rails-backbone.rb
Created July 12, 2012 04:38 — forked from rrooding/rails-backbone.rb
Rails Backbone template
gem_group :assets do
gem 'haml_coffee_assets'
gem 'execjs'
gem 'i18n-js'
end
gem_group :assets, :development do
gem 'rails-backbone'
end
gem 'haml-rails'
gem_group :test, :development do
@matthijsgroen
matthijsgroen / .tmux.conf
Created March 15, 2012 12:32 — forked from eval/.tmux.conf
TMux config
## keybindings
unbind C-b
unbind C-a
unbind %
unbind ,
unbind .
unbind n
unbind p
unbind [
unbind '"'
@matthijsgroen
matthijsgroen / 0_README.md
Created July 5, 2011 06:27 — forked from netzpirat/0_README.md
Continuous CoffeeScript testing with Guard and Jasmine

Continuous CoffeeScript testing with Guard and Jasmine

This Gist shows how to set up a Rails project to practice BDD with CoffeeScript, Guard and Jasmine. You can see this setup in action on Vimeo

  • Install Gems with Bundler with bundle install
  • Define your guards with mate Guardfile
  • Initialize Jasmine with bundle exec jasmine init
  • Configure Jasmine with mate spec/support/yasmine.ym
  • Start Guard with bundle exec guard