Sha256: bc7212a96f04d20ef1a3a4319456b5bcdb9f4481241feeffbb266008710c42c9
Contents?: true
Size: 817 Bytes
Versions: 2
Compression:
Stored size: 817 Bytes
Contents
# -*- ruby -*- require 'rubygems' require 'hoe' abort "you _must_ install this gem to release it" if ENV['VERSION'] && ENV['VERSION'] != RubyForge::VERSION Hoe.spec "rubyforge" do developer 'Ryan Davis', 'ryand-ruby@zenspider.com' developer 'Eric Hodel', 'drbrain@segment7.net' developer 'Ara T Howard', 'ara.t.howard@gmail.com' multiruby_skip << "rubinius" self.rubyforge_name = "codeforpeople" self.need_tar = false end task :backup do Dir.chdir File.expand_path("~/.rubyforge") do cp "user-config.yml", "user-config.yml.bak" cp "auto-config.yml", "auto-config.yml.bak" end end task :restore do Dir.chdir File.expand_path("~/.rubyforge") do cp "user-config.yml.bak", "user-config.yml" cp "auto-config.yml.bak", "auto-config.yml" end end # vim:syntax=ruby
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubyforge-1.0.5 | Rakefile |
rubyforge-1.0.4 | Rakefile |