Sha256: 11a88ef0c33896580aa5325e20e9f6eccabdd4100536eb0b7c0e578888a6801b
Contents?: true
Size: 752 Bytes
Versions: 12
Compression:
Stored size: 752 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' begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task test: :spec rescue LoadError # no rspec available end task default: :test
Version data entries
12 entries across 12 versions & 1 rubygems