Sha256: f292e46337364fc945ae6936b3832257ae19ea484172ff089289c7930eb0d871
Contents?: true
Size: 656 Bytes
Versions: 15
Compression:
Stored size: 656 Bytes
Contents
require 'rubygems' require 'bundler/setup' require 'rspec/core/rake_task' require 'rubocop/rake_task' # Change to the directory of this file. Dir.chdir(File.expand_path(__dir__)) # For gem creation and bundling require 'bundler/gem_tasks' RSpec::Core::RakeTask.new(:spec) do |task| task.pattern = 'spec/unit/*_spec.rb' task.rspec_opts = ['--color', '-f documentation'] end # Run the integration test suite RSpec::Core::RakeTask.new(:integration) do |task| task.pattern = 'spec/integration/*_spec.rb' task.rspec_opts = ['--color', '-f documentation'] end RuboCop::RakeTask.new task default: %i[spec rubocop] task all: %i[default integration]
Version data entries
15 entries across 10 versions & 2 rubygems