Sha256: bbec6b4c5077569c387691d849b403b5b37fe10bb215b03e1146434a5b8f8444

Contents?: true

Size: 378 Bytes

Versions: 8

Compression:

Stored size: 378 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true

require 'bundler'
Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new do |t|
  t.libs << "test"
  if ENV['API']
    t.pattern = 'test/**/*_api_test.rb'
  else
    t.test_files = Dir['test/**/*_test.rb'] - Dir['test/**/*_api_test.rb']
  end
  t.warning = true
  t.verbose = true
end

task default: :test

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
active_decorator-1.4.0 Rakefile
active_decorator-1.3.4 Rakefile
active_decorator-1.3.3 Rakefile
active_decorator-1.3.2 Rakefile
active_decorator-1.3.1 Rakefile
active_decorator-1.3.0 Rakefile
active_decorator-1.2.0 Rakefile
active_decorator-1.1.1 Rakefile