summary refs log tree commit diff
path: root/update.rb
diff options
context:
space:
mode:
Diffstat (limited to 'update.rb')
-rwxr-xr-xupdate.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/update.rb b/update.rb
new file mode 100755
index 00000000..538e0bd2
--- /dev/null
+++ b/update.rb
@@ -0,0 +1,28 @@
+#!/usr/bin/env ruby
+
+require 'fileutils'
+
+dotfiles = {}
+
+dirs = ['.']
+dirs.each do |dir|
+  Dir.foreach(dir) do |file|
+    next if file[0] == '.'
+    file = File.join(dir, file)
+    if File.directory? file
+      dirs << file
+      next
+    end
+    dotfiles[file] = file.sub('.', '~').sub('_', '.') if %r{/_} =~ file
+  end
+end
+
+dotfiles.each do |a, b|
+  a, b = File.expand_path(a), File.expand_path(b)
+  FileUtils.cp(b, a)
+  puts "#{b} -> #{a}"
+end
+
+system('git add .')
+system('git commit')
+system('git push')