Sha256: 6b80df0d14aeab3be73744a826bb80989d4fddc21bd2b5641895b48bd612a700

Contents?: true

Size: 526 Bytes

Versions: 2

Compression:

Stored size: 526 Bytes

Contents

require 'rspec/core/rake_task'
require 'bundler/gem_tasks'
require 'rdoc/task'

# Default directory to look in is `/specs`
# Run with `rake spec`
RSpec::Core::RakeTask.new(:spec) do |task|
  task.rspec_opts = ['--color', '--format', 'documentation']
end

task :default => :spec

RDoc::Task.new(:rdoc => "doc", :clobber_rdoc => "doc:clean", :rerdoc => "doc:force") do |rdoc|
  rdoc.rdoc_dir = 'doc'
  rdoc.title = 'Flat Library Documentation'
  rdoc.main = "README.md"
  rdoc.rdoc_files.include("README.md", "lib/**/*.rb")
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
flat-0.1.1 Rakefile
flat-0.1.0 Rakefile