summary refs log tree commit diff
path: root/update.rb
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2012-03-28 16:26:58 -0400
committerJune McEnroe <programble@gmail.com>2012-03-28 16:26:58 -0400
commit4bdb7b3345ab9680234f074fbdecca50601c3f57 (patch)
tree2ea7d34f4463c1ed58444af2c0fd9b3d70f954c4 /update.rb
parentRemoved vimrc (diff)
downloadsrc-4bdb7b3345ab9680234f074fbdecca50601c3f57.tar.gz
src-4bdb7b3345ab9680234f074fbdecca50601c3f57.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')
Add bit to bin.7June McEnroe 2019-05-30Simplify and build bitJune McEnroe 2019-05-29Add xx -p optionJune McEnroe 2019-05-27Add FrontierJune McEnroe 2019-05-27Break nicks with ZWNJJune McEnroe 2019-05-26Add DawnJune McEnroe 2019-05-20Declare vasprintf(3) for GNUJune McEnroe 2019-05-20Fix comparison warning in ttpreJune McEnroe 2019-05-20Add AuthorityJune McEnroe 2019-05-19Specify precedence of unary versions of operatorsJune McEnroe 2019-05-18Add compound assignment operators to orderJune McEnroe 2019-05-15Support simple assignment in orderJune McEnroe 2019-05-15Implement sizeof in orderJune McEnroe 2019-05-15Add orderJune McEnroe 2019-05-12Add T suffix in bitJune McEnroe 2019-05-10Highlight yacc and lex files as CJune McEnroe 2019-05-10Use val instead of suboptargJune McEnroe 2019-05-09Add Parable of the SowerJune McEnroe 2019-05-07Add bit without buildJune McEnroe 2019-05-04Fix MANDIR typoJune McEnroe 2019-05-04Move relay to binJune McEnroe