Sha256: 0e018c1dc3960374d7f8cbe5b9ab5604cf42de26f7d104a2a1e9df22ff1bf91f

Contents?: true

Size: 405 Bytes

Versions: 13

Compression:

Stored size: 405 Bytes

Contents

# frozen_string_literal: true

require "bundler/gem_tasks"
Dir["tasks/**/*.rake"].each { |t| load t }

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

desc "Run tests"
task :test do
  require "shellwords"
  test = Array(ENV.fetch("TEST", []))
  test_opts = Shellwords.split(ENV.fetch("TESTOPTS", ""))
  success = system("bin/test", *test, *test_opts)
  success || exit(false)
end

task(default: :test)

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
tapioca-0.9.4 Rakefile
tapioca-0.9.3 Rakefile
tapioca-0.9.2 Rakefile
tapioca-0.9.1 Rakefile
tapioca-0.9.0 Rakefile
tapioca-0.8.3 Rakefile
tapioca-0.8.2 Rakefile
tapioca-0.7.3 Rakefile
tapioca-0.8.1 Rakefile
tapioca-0.8.0 Rakefile
tapioca-0.7.2 Rakefile
tapioca-0.7.1 Rakefile
tapioca-0.7.0 Rakefile