about summary refs log tree commit homepage
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile56
1 files changed, 0 insertions, 56 deletions
diff --git a/Rakefile b/Rakefile
deleted file mode 100644
index 1adba47..0000000
--- a/Rakefile
+++ /dev/null
@@ -1,56 +0,0 @@
-require 'rubygems'
-require 'hoe'
-load "./GIT-VERSION-GEN"
-
-include Rake::DSL if defined?(Rake::DSL)
-$:.unshift 'lib'
-require 'mogilefs'
-Hoe.plugin :seattlerb
-
-wd = %w(ChangeLog NEWS)
-wd_ok = true
-wd.each do |f|
-  next if File.exist?(f) || system("wrongdoc all")
-  wd_ok = false
-  File.open(f, "a") do |fp|
-    fp.puts "`wrongdoc all' failed, #{f} not generated properly"
-  end
-end
-
-warn "install `wrongdoc' gem to generate: #{wd.inspect}" unless wd_ok
-
-manifest = "Manifest.txt"
-if ! File.exist?(manifest) ||
-   File.stat(manifest).mtime < File.stat(RVF).mtime ||
-   File.stat(manifest).mtime < File.stat(__FILE__).mtime
-  system("git ls-files > #{manifest}")
-  File.open(manifest, "a") do |fp|
-    fp.puts "Manifest.txt"
-    fp.puts "ChangeLog"
-    fp.puts "NEWS"
-    fp.puts "lib/mogilefs/version.rb"
-  end
-end
-
-Hoe.spec 'mogilefs-client' do
-  self.rubyforge_name = 'seattlerb'
-  developer 'Eric Wong', 'normalperson@yhbt.net'
-  # developer 'drbrain@segment7.net', 'Eric Hodel'
-  self.readme_file = "README"
-  self.history_file = "NEWS"
-  self.urls = %w(http://bogomips.org/mogilefs-client/)
-  self.description = self.paragraphs_of("README", 1)
-  self.summary = "MogileFS client library for Ruby"
-end
-
-task :fix_perms do
-  IO.popen('git ls-tree -r HEAD^0') do |fp|
-    fp.each_line do |line|
-      mode, type, sha1, path = line.chomp.split(/\s+/)
-      case mode
-      when '100644' then File.chmod(0644, path)
-      when '100755' then File.chmod(0755, path)
-      end
-    end
-  end
-end