Sha256: b634d95b4d54660699a0f403bbb20c05c8a433c54f44d0607a14cd6993835d29

Contents?: true

Size: 1.33 KB

Versions: 3

Compression:

Stored size: 1.33 KB

Contents

require File.dirname(__FILE__) + '/lib/yard'

WINDOWS = (RUBY_PLATFORM =~ /win32|cygwin/ ? true : false) rescue false
SUDO = WINDOWS ? '' : 'sudo'

task :default => :specs

desc "Builds the gem"
task :gem do
  sh "gem build yard.gemspec"
end

desc "Installs the gem"
task :install => :gem do 
  sh "#{SUDO} gem install yard-#{YARD::VERSION}.gem --no-rdoc --no-ri"
end

begin
  require 'spec'
  require 'spec/rake/spectask'

  desc "Run all specs"
  Spec::Rake::SpecTask.new("specs") do |t|
    $DEBUG = true if ENV['DEBUG']
    t.spec_opts = ["--format", "specdoc", "--colour"]
    t.spec_opts += ["--require", File.join(File.dirname(__FILE__), 'spec', 'spec_helper')]
    t.spec_files = Dir["spec/**/*_spec.rb"].sort
  
    if ENV['RCOV']
      hide = '_spec\.rb$,spec_helper\.rb$,ruby_lex\.rb$,autoload\.rb$'
      hide += ',legacy\/.+_handler,html_syntax_highlight_helper18\.rb$' if RUBY19
      hide += ',ruby_parser\.rb$,ast_node\.rb$,handlers\/ruby\/[^\/]+\.rb$,html_syntax_highlight_helper\.rb$' if RUBY18
      t.rcov = true 
      t.rcov_opts = ['-x', hide]
    end
  end
  task :spec => :specs
rescue LoadError
  warn "warn: RSpec tests not available. `gem install rspec` to enable them."
end

YARD::Rake::YardocTask.new do |t|
  t.options += ['--title', "YARD #{YARD::VERSION} Documentation"]
  t.after = lambda { `cp -R docs/images/ doc/images/` }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
yard-0.5.5 Rakefile
yard-0.5.4 Rakefile
yard-0.5.3 Rakefile