aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--install.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/install.rb b/install.rb
new file mode 100644
index 0000000..1f90092
--- /dev/null
+++ b/install.rb
@@ -0,0 +1,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`
+