Sha256: e373055cb3b408ad9d18f7a50593b28964e1655e3800a077cd7fe8d818a70f57

Contents?: true

Size: 369 Bytes

Versions: 8

Compression:

Stored size: 369 Bytes

Contents

desc 'Run all tests'
task :test => %i[rubocop spec test:acceptance]

require 'rubocop/rake_task'
RuboCop::RakeTask.new

namespace :test do
  desc 'Acceptance suite under test/ which runs metadata-json-lint against sample files with expected output'
  task :acceptance do
    sh 'tests/test.sh'
  end
end

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
metadata-json-lint-2.3.0 Rakefile
metadata-json-lint-2.2.0 Rakefile
metadata-json-lint-2.1.0 Rakefile
metadata-json-lint-2.0.2 Rakefile
metadata-json-lint-2.0.1 Rakefile
metadata-json-lint-2.0.0 Rakefile
metadata-json-lint-1.2.2 Rakefile
metadata-json-lint-1.2.1 Rakefile