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.95 Rakefile
magic_recipes_two-0.0.94 Rakefile
magic_recipes_two-0.0.93 Rakefile
magic_recipes_two-0.0.91 Rakefile
magic_recipes_two-0.0.90 Rakefile
magic_recipes_two-0.0.89 Rakefile
magic_recipes_two-0.0.88 Rakefile
magic_recipes_two-0.0.87 Rakefile
magic_recipes_two-0.0.86 Rakefile
magic_recipes_two-0.0.85 Rakefile
magic_recipes_two-0.0.84 Rakefile
magic_recipes_two-0.0.83 Rakefile
magic_recipes_two-0.0.82 Rakefile
magic_recipes_two-0.0.81 Rakefile
magic_recipes_two-0.0.80 Rakefile
magic_recipes_two-0.0.79 Rakefile
magic_recipes_two-0.0.78 Rakefile
magic_recipes_two-0.0.77 Rakefile
magic_recipes_two-0.0.76 Rakefile
magic_recipes_two-0.0.75 Rakefile