Sha256: a803ff07f12d1b24e053cc4d6f99385bd17c2746720d3b3dbcec07946d6aad1c
Contents?: true
Size: 508 Bytes
Versions: 6
Compression:
Stored size: 508 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'engine_cart/rake_task' require 'rubocop/rake_task' Dir.glob('lib/tasks/*.rake').each { |r| import r } desc 'Run test suite' task :spec do RSpec::Core::RakeTask.new end desc 'Run style checker' RuboCop::RakeTask.new(:rubocop) do |task| task.fail_on_error = true end desc 'Continuous Integration (generate test app and run tests)' task ci: ['rubocop', 'engine_cart:generate', 'spec'] task default: :ci
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
noid-rails-3.2.0 | Rakefile |
noid-rails-3.1.0 | Rakefile |
noid-rails-3.0.3 | Rakefile |
noid-rails-3.0.2 | Rakefile |
noid-rails-3.0.1 | Rakefile |
noid-rails-3.0.0 | Rakefile |