Sha256: 00abc3ebc2ae3a3ab9052f0016d19043ea6c24a297b8a931058e032747398727
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
$:.unshift('.') # 1.9.2 require 'rubygems' require 'rake' require 'rake/clean' require 'rdoc/task' # # clean CLEAN.include('pkg', 'rdoc') # # test / spec task :test do puts puts "to test ruote-sequel, head to your ruote/ dir and run" puts puts " ruby test/test.rb -- --sequel" puts puts "but first, make sure your ruote-sequel/test/functional_connection.rb" puts "is set correctly." puts 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' rd.rdoc_files.include( 'README.rdoc', 'CHANGELOG.txt', 'CREDITS.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/ruote' # # sh "rsync -azv -e ssh rdoc/#{GEMSPEC.name}_rdoc #{account}:#{webdir}/" #end # # leverage rdoc.info instead
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruote-sequel-2.3.0.2 | Rakefile |