blob: 1f900923ced14842888548a69a84e6dc41a97d47 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
##
# Simple script to install all the files to our home
#
#!/usr/bin/env ruby
# You can change your home directory ;)
home = ARGV[0]
home ||= '$HOME'
`cp bashrc #{home}/.bashrc`
`cp irbrc #{home}/.irbrc`
`cp gemrc #{home}/.gemrc`
`cp gitcompletion #{home}/.gitcompletion.sh`
`cp gitconfig #{home}/.gitconfig`
`cp global.gitignore #{home}/.gitignore`
|