Sha256: bbb50e77c3bb6b5c0d84c468527ff4740209d333252e5fe6e6c3f8b13b81e714
Contents?: true
Size: 1.4 KB
Versions: 4
Compression:
Stored size: 1.4 KB
Contents
require File.dirname(__FILE__) + '/lib/yard' require 'rbconfig' YARD::VERSION.replace(ENV['YARD_VERSION']) if ENV['YARD_VERSION'] WINDOWS = (Config::CONFIG['host_os'] =~ /mingw|win32|cygwin/ ? true : false) rescue false SUDO = WINDOWS ? '' : 'sudo' task :default => :specs desc "Builds the gem" task :gem do load 'yard.gemspec' Gem::Builder.new(SPEC).build 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"] end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
yard-0.6.3 | Rakefile |
yard-0.6.2 | Rakefile |
yard-0.6.1 | Rakefile |
yard-0.6.0 | Rakefile |