Sha256: d8e70cb976aa433ae619b3455dc3d3e786845392d90b6c1a7b713c00f3942d05
Contents?: true
Size: 435 Bytes
Versions: 6
Compression:
Stored size: 435 Bytes
Contents
require 'rake/clean' require 'cucumber/rake/task' require 'rubocop/rake_task' begin require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) rescue LoadError puts 'rspec not installed - skipping unit test task setup' end RuboCop::RakeTask.new CLEAN.include('pkg/', 'tmp/') Cucumber::Rake::Task.new do |t| t.cucumber_opts = '' t.cucumber_opts << '--format pretty' end task :test => %i[clean spec cucumber rubocop]
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
modulesync-1.0.0 | Rakefile |
modulesync-0.10.0 | Rakefile |
modulesync-0.9.0 | Rakefile |
modulesync-0.8.2 | Rakefile |
modulesync-0.8.1 | Rakefile |
modulesync-0.8.0 | Rakefile |