Skip to content

Instantly share code, notes, and snippets.

View selma-belhadj's full-sized avatar
🏠
Studying from home

Selma Belhadj selma-belhadj

🏠
Studying from home
View GitHub Profile
@FullStackForger
FullStackForger / git-config.sh
Last active September 21, 2022 22:56
Git colors and aliases configuration
# Git colors and aliases configuration provided by @fullstackforger
git config --global color.ui auto
git config --global color.interactive auto
git config --global alias.s status
git config --global alias.r reset
git config --global alias.alias '!git config --list | grep alias | cut -c 7-'
@johnkferguson
johnkferguson / add_rspec_to_rails.
Created April 30, 2013 19:59
How to add Rspec to Rails and remove Test-Unit
Create your new rails application as:
rails new <app_name> -T
Or remove your test directory from your existing application:
rm -rf test/
Make an entry in your Gemfile:
gem ‘rspec-rails’