Sha256: a80502aca62d8297ea04c43d7f24cb91bdcdb2c108d61cf62e978c56a8a6c0e9

Contents?: true

Size: 361 Bytes

Versions: 9

Compression:

Stored size: 361 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
require "rake/testtask"
require "rubocop/rake_task"
require "rspec/core/rake_task"

RuboCop::RakeTask.new

RSpec::Core::RakeTask.new(:spec)

Rake::TestTask.new(:test) do |t|
  t.libs << "test"
  t.libs << "lib"
  t.test_files = FileList["test/**/*_test.rb"]
end

task default: [:rubocop, :test, :spec]

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
action_policy-0.2.4 Rakefile
action_policy-0.2.3 Rakefile
action_policy-0.2.2 Rakefile
action_policy-0.2.0 Rakefile
action_policy-0.1.4 Rakefile
action_policy-0.1.3 Rakefile
action_policy-0.1.2 Rakefile
action_policy-0.1.1 Rakefile
action_policy-0.1.0 Rakefile