Sha256: befb9d0cd4e7363f99e4e0d3c4e7edcfa443f31033d887fea794d0af8c0a8a41

Contents?: true

Size: 692 Bytes

Versions: 2

Compression:

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

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

require 'rubocop/rake_task'
RuboCop::RakeTask.new

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task default: %i[spec]

load 'rails/tasks/statistics.rake'

Bundler::GemHelper.install_tasks

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yaw-0.0.2 Rakefile
yaw-0.0.1 Rakefile