summary refs log tree commit diff
path: root/update.rb
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2012-03-28 16:26:58 -0400
committerJune McEnroe <june@causal.agency>2012-03-28 16:26:58 -0400
commit2f4dd4187f70b8505f7757f4a1c42567e034f2a5 (patch)
treeef087197c3d884b975726b240b5dafc84350c935 /update.rb
parentRemoved vimrc (diff)
downloadsrc-2f4dd4187f70b8505f7757f4a1c42567e034f2a5.tar.gz
src-2f4dd4187f70b8505f7757f4a1c42567e034f2a5.zip
Reformat for use with Effuse
Diffstat (limited to 'update.rb')
-rwxr-xr-xupdate.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/update.rb b/update.rb
deleted file mode 100755
index 9f1c67dd..00000000
--- a/update.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/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 diff')
-system('git add .')
-system('git commit')
-system('git push')