Sha256: 8b451fdb78bee8f9652d8f04a30f7134665deea0a6dd2f42dffbc8e6d8c07996
Contents?: true
Size: 535 Bytes
Versions: 6
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rake/testtask' if ENV['BUNDLE_GEMFILE'] == File.expand_path('Gemfile') || ENV['BUNDLE_GEMFILE'].empty? || ENV['BUNDLE_GEMFILE'].nil? ENV['BUNDLE_GEMFILE'] = File.expand_path('Gemfile') end Rake::TestTask.new(:test) do |t| t.libs << 'test' t.libs << 'lib' file_list = ENV['BUNDLE_GEMFILE'] == File.expand_path('Gemfile') ? FileList['test/**/*_test.rb'] : FileList['test/dependencies/test_dependencies.rb'] t.test_files = file_list end task default: :test
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
alba-3.5.0 | Rakefile |
alba-3.4.0 | Rakefile |
alba-3.3.3 | Rakefile |
alba-3.3.2 | Rakefile |
alba-3.3.1 | Rakefile |
alba-3.3.0 | Rakefile |