Sha256: 67df134d08e3921c67f46727cd26bbe924733afc8159a11e1dbde7021c85af93

Contents?: true

Size: 583 Bytes

Versions: 94

Compression:

Stored size: 583 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    = 'MagicRecipesTwo'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end






Bundler::GemHelper.install_tasks

require 'rake/testtask'

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


task default: :test

Version data entries

94 entries across 94 versions & 1 rubygems

Version Path
magic_recipes_two-0.0.34 Rakefile
magic_recipes_two-0.0.33 Rakefile
magic_recipes_two-0.0.32 Rakefile
magic_recipes_two-0.0.31 Rakefile
magic_recipes_two-0.0.30 Rakefile
magic_recipes_two-0.0.29 Rakefile
magic_recipes_two-0.0.28 Rakefile
magic_recipes_two-0.0.27 Rakefile
magic_recipes_two-0.0.26 Rakefile
magic_recipes_two-0.0.25 Rakefile
magic_recipes_two-0.0.24 Rakefile
magic_recipes_two-0.0.23 Rakefile
magic_recipes_two-0.0.22 Rakefile
magic_recipes_two-0.0.21 Rakefile
magic_recipes_two-0.0.20 Rakefile
magic_recipes_two-0.0.19 Rakefile
magic_recipes_two-0.0.18 Rakefile
magic_recipes_two-0.0.17 Rakefile
magic_recipes_two-0.0.16 Rakefile
magic_recipes_two-0.0.15 Rakefile