Sha256: ce44af60537e87c0f70a7cd09bf81589519fc76c41aee928793df494d6f4a614

Contents?: true

Size: 605 Bytes

Versions: 1

Compression:

Stored size: 605 Bytes

Contents

# frozen_string_literal: true

require_relative 'lib/deploy_rubygem'

DeployRubygem.deploy_task do
  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
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
deploy_rubygem-0.60.12 Rakefile