Sha256: 6ce34ebf7599095215890ac8d5a4c624f8d3bdd958c2c3af92bd9bb819ba89e2

Contents?: true

Size: 677 Bytes

Versions: 41

Compression:

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

APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



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

41 entries across 41 versions & 1 rubygems

Version Path
json_voorhees-0.4.9 Rakefile
json_voorhees-0.4.8 Rakefile
json_voorhees-0.4.7 Rakefile
json_voorhees-0.4.6 Rakefile
json_voorhees-0.4.5 Rakefile
json_voorhees-0.4.4 Rakefile
json_voorhees-0.4.3 Rakefile
json_voorhees-0.4.2 Rakefile
json_voorhees-0.4.1 Rakefile
json_voorhees-0.4.0 Rakefile
json_voorhees-0.3.9 Rakefile
json_voorhees-0.3.6 Rakefile
json_voorhees-0.3.5 Rakefile
json_voorhees-0.3.0 Rakefile
json_voorhees-0.2.3 Rakefile
json_voorhees-0.2.2 Rakefile
json_voorhees-0.2.1 Rakefile
json_voorhees-0.2.0 Rakefile
json_voorhees-0.1.0 Rakefile
json_voorhees-0.0.2 Rakefile