Sha256: 8f3b77bc7cc8d48cf67d4e1f4828b58b69bb0d7741f4b3b8aa29f70094f9db6c

Contents?: true

Size: 550 Bytes

Versions: 24

Compression:

Stored size: 550 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Postdoc'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  rdoc.rdoc_files.include('lib/**/*.rb')
end






require 'bundler/gem_tasks'

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
postdoc-0.5.0 Rakefile
postdoc-0.4.5 Rakefile
postdoc-0.4.4 Rakefile
postdoc-0.4.3 Rakefile
postdoc-0.4.2 Rakefile
postdoc-0.4.1 Rakefile
postdoc-0.4.0 Rakefile
postdoc-0.3.9 Rakefile
postdoc-0.3.8 Rakefile
postdoc-0.3.7 Rakefile
postdoc-0.3.6 Rakefile
postdoc-0.3.5 Rakefile
postdoc-0.3.4 Rakefile
postdoc-0.3.3 Rakefile
postdoc-0.3.1 Rakefile
postdoc-0.3.0 Rakefile
postdoc-0.2.4 Rakefile
postdoc-0.2.3 Rakefile
postdoc-0.2.2 Rakefile
postdoc-0.2.1 Rakefile