Sha256: 451f9d75f491bb3a55a3c244692b89a9ea37767d9b88930c4a36ad6ddc59dc97

Contents?: true

Size: 696 Bytes

Versions: 1

Compression:

Stored size: 696 Bytes

Contents

# frozen_string_literal: true

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

APP_RAKEFILE = File.expand_path('spec/support/rails_app/Rakefile', __dir__)
load 'rails/tasks/engine.rake'

load 'rails/tasks/statistics.rake'

Bundler::GemHelper.install_tasks

require 'rake/testtask'

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task test: :spec

task default: :test

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
aranha-0.13.0 Rakefile