Sha256: bbe14dc81d7d3f080235c003e1d8c153d8b70498b367fbb19104a8bcdd539bfb

Contents?: true

Size: 515 Bytes

Versions: 1

Compression:

Stored size: 515 Bytes

Contents

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'yard'

# Load all extra rake task definitions
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].each { |ext| load ext }

YARD::Rake::YardocTask.new do |t|
  t.files = %w(lib/**/*.rb - History.rdoc)
  t.options = %w(--title log_switch Documentation (#{LogSwitch::VERSION}))
  t.options += %w(--main README.rdoc)
end

RSpec::Core::RakeTask.new do |t|
  t.ruby_opts = %w(-w)
end

# Alias for rubygems-test
task :test => :spec

task :default => :install

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
log_switch-0.3.0 Rakefile