Sha256: 2479cda7bd25f4ac5bb6cad183f7e91eafae2ffeef8e98e593f1b890e64a040d
Contents?: true
Size: 486 Bytes
Versions: 3
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' RSpec::Core::RakeTask.new(:spec) RuboCop::RakeTask.new task test_framework: %i[clean rubocop spec] task default: %i[test_framework build install:local] task cicd: %i[default release test_version] task test_version: %i[install compliance] task :compliance do system('inspec exec git@github.com:JimboDragonGit/rubygem_baseline.git --input-file compliance.yml') end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
deploy_rubygem-0.60.10 | Rakefile |
deploy_rubygem-0.60.5 | Rakefile |
deploy_rubygem-0.1.0 | Rakefile |