Sha256: 5f88c04f1a20186116df1b552f7b9a13827aaed68c4bfd32e66bfec8a8548e3c

Contents?: true

Size: 967 Bytes

Versions: 1

Compression:

Stored size: 967 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'
require 'json'

abort "you _must_ install this gem to release it" if
  ENV['VERSION'] && ENV['VERSION'] != RubyForge::VERSION

Hoe.plugin :email

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'
  developer 'Tom Copeland', 'tom@infoether.com'

  multiruby_skip << "rubinius"
  extra_deps << ["json",">= 1.1.7"]
  self.rubyforge_name = "codeforpeople"
  self.need_tar       = false
end

task :postrelease => :announce

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

1 entries across 1 versions & 1 rubygems

Version Path
rubyforge-2.0.1 Rakefile