Sha256: def02ffb810134454eb457946f785592ae955f97675df03a302518de2c5e49e0
Contents?: true
Size: 691 Bytes
Versions: 4
Compression:
Stored size: 691 Bytes
Contents
# frozen_string_literal: true require 'bundler/gem_tasks' require 'rspec/core/rake_task' require 'rubocop/rake_task' require_relative 'lib/deploy_rubygem' 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 task developper: %i[push cicd] task :push do system('git add .') system("git commit -m 'Rake pusing version #{DeployRubygem::VERSION}'") system('git push') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
deploy_rubygem-0.60.16 | Rakefile |
deploy_rubygem-0.60.15 | Rakefile |
deploy_rubygem-0.60.14 | Rakefile |
deploy_rubygem-0.60.13 | Rakefile |