Sha256: c7b74f003429a668c9d8c210aaff037f5627032ba244d227f5df5045c0ebe949
Contents?: true
Size: 522 Bytes
Versions: 3
Compression:
Stored size: 522 Bytes
Contents
require 'bundler' Bundler::GemHelper.install_tasks require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :test => :spec task :default => :spec begin require 'yard' YARD::Rake::YardocTask.new(:yard) do |t| t.options = ['--title', 'EasyProf Documentation'] if ENV['PRIVATE'] t.options.concat ['--protected', '--private'] else t.options.concat ['--protected', '--no-private'] end end rescue LoadError puts 'Yard not available. Install it with: sudo gem install yard' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
easy-prof-1.1.2 | Rakefile |
easy-prof-1.1.1 | Rakefile |
easy-prof-1.1.0 | Rakefile |