Sha256: 5bef4c296d39d69cffc5dfcd09ea72e96f8ea2004ac843388de0aa341f4c6434
Contents?: true
Size: 295 Bytes
Versions: 1
Compression:
Stored size: 295 Bytes
Contents
# frozen_string_literal: true namespace :lint do require "rubocop/rake_task" RuboCop::RakeTask.new(:ruby) end task lint: %i[lint:ruby] namespace :test do require "cucumber/rake/task" Cucumber::Rake::Task.new(:acceptance) end task test: %i[test:acceptance] task default: %i[lint test]
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
webtrap-0.1.1 | Rakefile |