Rakefile
# Copyright © 2017, Salesforce.com, Inc.# All Rights Reserved.# Licensed under the BSD 3-Clause license.# For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause require "bundler/gem_tasks"require "rake/testtask" Rake::TestTask.new(:test) do |t| t.libs << "test" t.libs << "lib" t.test_files = FileList['test/**/*_test.rb']end task :default => :test