This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# This script will mount /Users in the boot2docker VM using NFS (instead of the | |
# default vboxsf). It's probably not a good idea to run it while there are | |
# Docker containers running in boot2docker. | |
# | |
# Usage: sudo ./boot2docker-use-nfs.sh | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ rspec --format MacVimFormatter --color spec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--colour | |
-I app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# How to use | |
# my_script_name bd_user db_pass project_name(should be same name on database and project_directory) | |
# by Alfredo Ribeiro: alfredo@aatecnologia.com.br | |
# Create the daily backup, delete old backups, and each month, make a copy last backup on a separated directory | |
mysql_user=$1 | |
mysql_pass=$2 | |
project_name=$3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set :application, "myapp" | |
set :ip_address , "000.000.000.000" | |
set :scm, :git | |
set :repository, "git@github.com:albertoleal/Sinatra-Template.git" | |
set :branch, "master" | |
set :deploy_via, :remote_cache | |
set :user , "sinatra" | |
set :deploy_to, "/home/sinatra/#{application}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rails new my_app_name -J -T -m http://gist.github.com/635287.txt | |
remove_file 'Gemfile' | |
create_file 'Gemfile', <<-GEMFILE | |
source 'http://rubygems.org' | |
source 'http://gems.github.com' | |
gem 'rails' | |
gem 'sqlite3-ruby', :require => 'sqlite3' | |
gem 'pg', :group => :production |