Sha256: ab8597e7ac20bf4f93689f706dad8b9d872df31fa8ac7e96b0543ba58c513d8e
Contents?: true
Size: 712 Bytes
Versions: 20
Compression:
Stored size: 712 Bytes
Contents
# encoding: UTF-8 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('../', __FILE__)) # 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: [:spec, :rubocop] task all: [:default, :integration]
Version data entries
20 entries across 20 versions & 3 rubygems