This file contains hidden or 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
"-------------------------------------------------------------------- | |
" | |
" NiLuJe's ViM Configuration File | |
" | |
" Highly inspired from Ciaran McCreesh's config | |
" | |
" (http://ciaranm.org/vimrc) | |
" | |
" $Id$ | |
" |
This file contains hidden or 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
#!/usr/bin/env ruby -w | |
# Create a default gitignore file in the passed directory | |
# | |
# AUTHOR: Daniel Lopes | |
# September 10, 2009 | |
# | |
# USAGE: | |
# git-ignore . "aditional_file1 aditional_file2" | |
require 'pathname' |
This file contains hidden or 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
# SUPER DARING APP TEMPLATE 1.0 | |
# Originally By Peter Cooper | |
# Modified by Jason Seifer | |
# Link to local copy of edge rails | |
inside('vendor') { run 'ln -s ~/Source/rails rails' } | |
# Delete unnecessary files | |
run "rm README" | |
run "rm public/index.html" |
This file contains hidden or 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
# SUPER DARING APP TEMPLATE 1.0 | |
# By Peter Cooper | |
# Link to local copy of edge rails | |
inside('vendor') { run 'ln -s ~/dev/rails/rails rails' } | |
# Delete unnecessary files | |
run "rm README" | |
run "rm public/index.html" | |
run "rm public/favicon.ico" |
This file contains hidden or 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
development: | |
host: 192.168.0.1 | |
port: 389 | |
base: dc=gaiz,dc=com,dc=br | |
bind_dn: cn=admin,dc=gaiz,dc=com,dc=br | |
password: gaiz | |
test: | |
host: 127.0.0.1 | |
port: 389 |