Sha256: 5d18b66b8b245e9cb3c136b9c44b3810df89d2882bf61b2851fee768f1772e79

Contents?: true

Size: 1.39 KB

Versions: 17

Compression:

Stored size: 1.39 KB

Contents

require "rdoc/task"
require "rake/testtask"
require "rubygems/package_task"

require "rubygems"

task :default => [:test]

Rake::TestTask.new do |test|
  test.libs       << "test"
  test.test_files =  [ "test/ts_all.rb"]
  test.verbose    =  true
  test.ruby_opts  << "-w"
end

Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_files.include( "README.rdoc", "INSTALL",
                           "TODO", "CHANGELOG",
                           "AUTHORS", "COPYING",
                           "LICENSE", "lib/" )
  rdoc.main     = "README.rdoc"
  rdoc.rdoc_dir = "doc/html"
  rdoc.title    = "HighLine Documentation"
end

desc "Upload current documentation to Rubyforge"
task :upload_docs => [:rdoc] do
  sh "scp -r doc/html/* " +
     "bbazzarrakk@rubyforge.org:/var/www/gforge-projects/highline/doc/"
  sh "scp -r site/* " +
     "bbazzarrakk@rubyforge.org:/var/www/gforge-projects/highline/"
end

load(File.join(File.dirname(__FILE__), "highline.gemspec"))
Gem::PackageTask.new(SPEC) do |package|
  # do nothing:  I just need a gem but this block is required
end

desc "Show library's code statistics"
task :stats do
  require 'code_statistics'
  CodeStatistics.new( ["HighLine", "lib"],
                      ["Functionals", "examples"],
                      ["Units", "test"] ).to_s
end

desc "Add new files to Subversion"
task :add_to_svn do
  sh %Q{svn status | ruby -nae 'system "svn add \#{$F[1]}" if $F[0] == "?"' }
end

Version data entries

17 entries across 16 versions & 5 rubygems

Version Path
solidus_backend-1.0.0.pre3 vendor/bundle/gems/highline-1.6.21/Rakefile
solidus_backend-1.0.0.pre2 vendor/bundle/gems/highline-1.6.21/Rakefile
solidus_backend-1.0.0.pre vendor/bundle/gems/highline-1.6.21/Rakefile
asana2flowdock-1.0.0 vendor/bundle/ruby/1.9.1/gems/highline-1.6.21/Rakefile
highline-1.6.21 Rakefile
highline-1.6.20 Rakefile
challah-1.0.0 vendor/bundle/gems/highline-1.6.19/Rakefile
sshp-0.0.2 vendor/ruby/1.9.1/gems/highline-1.6.19/Rakefile
sshp-0.0.1 vendor/ruby/1.9.1/gems/highline-1.6.19/Rakefile
highline-1.6.19 Rakefile
challah-1.0.0.beta3 vendor/bundle/gems/highline-1.6.16/Rakefile
challah-1.0.0.beta3 vendor/bundle/gems/highline-1.6.18/Rakefile
highline-1.6.18 Rakefile
highline-1.6.17 Rakefile
challah-1.0.0.beta2 vendor/bundle/gems/highline-1.6.16/Rakefile
challah-1.0.0.beta vendor/bundle/gems/highline-1.6.16/Rakefile
highline-1.6.16 Rakefile