Sha256: fb768f4e824a88abbdf7e3a812679d5a3f9f6e3cc213f670f8f7d8dd12e1fc17
Contents?: true
Size: 626 Bytes
Versions: 2
Compression:
Stored size: 626 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 test_version] task test_version: %i[install compliance] task :compliance do system('inspec exec compliance') end task developper: %i[rubocop push default] task :push do system('git add .') system("git commit -m 'Rake pusing version #{DeployRubygem::VERSION}'") system('git push') end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
deploy_rubygem-0.60.29 | Rakefile |
deploy_rubygem-0.60.28 | Rakefile |