Sha256: e63ce7e9e3149925fb674ab5b07b2706077cb9fdad97d9445354cee5761331d9
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 KB
Contents
$:.unshift('.') # 1.9.2 require 'rubygems' require 'rubygems/user_interaction' if Gem::RubyGemsVersion == '1.5.0' require 'rake' require 'rake/clean' require 'rdoc/task' # # clean CLEAN.include('pkg', 'rdoc') # # test / spec task :test do sh 'ruby test/test.rb' end task :default => :test # # gem GEMSPEC_FILE = Dir['*.gemspec'].first GEMSPEC = eval(File.read(GEMSPEC_FILE)) GEMSPEC.validate desc %{ builds the gem and places it in pkg/ } task :build do sh "gem build #{GEMSPEC_FILE}" sh "mkdir pkg" rescue nil sh "mv #{GEMSPEC.name}-#{GEMSPEC.version}.gem pkg/" end desc %{ builds the gem and pushes it to rubygems.org } task :push => :build do sh "gem push pkg/#{GEMSPEC.name}-#{GEMSPEC.version}.gem" end # # rdoc # # make sure to have rdoc 2.5.x to run that Rake::RDocTask.new do |rd| rd.main = 'README.rdoc' rd.rdoc_dir = "rdoc/#{GEMSPEC.name}" rd.rdoc_files.include('README.rdoc', 'CHANGELOG.txt', 'lib/**/*.rb') rd.title = "#{GEMSPEC.name} #{GEMSPEC.version}" end # # upload_rdoc desc %{ upload the rdoc to rubyforge } task :upload_rdoc => [ :clean, :rdoc ] do account = 'jmettraux@rubyforge.org' webdir = '/var/www/gforge-projects/rufus' sh "rsync -azv -e ssh rdoc/#{GEMSPEC.name} #{account}:#{webdir}/" end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rufus-mnemo-1.2.3 | Rakefile |
rufus-mnemo-1.2.2 | Rakefile |