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.74 Rakefile
magic_recipes_two-0.0.73 Rakefile
magic_recipes_two-0.0.72 Rakefile
magic_recipes_two-0.0.71 Rakefile
magic_recipes_two-0.0.70 Rakefile
magic_recipes_two-0.0.69 Rakefile
magic_recipes_two-0.0.68 Rakefile
magic_recipes_two-0.0.67 Rakefile
magic_recipes_two-0.0.66 Rakefile
magic_recipes_two-0.0.65 Rakefile
magic_recipes_two-0.0.64 Rakefile
magic_recipes_two-0.0.63 Rakefile
magic_recipes_two-0.0.62 Rakefile
magic_recipes_two-0.0.61 Rakefile
magic_recipes_two-0.0.60 Rakefile
magic_recipes_two-0.0.59 Rakefile
magic_recipes_two-0.0.58 Rakefile
magic_recipes_two-0.0.57 Rakefile
magic_recipes_two-0.0.56 Rakefile
magic_recipes_two-0.0.55 Rakefile