Sha256: 86d395f588ac6e3be0ac27535144ae2cd8f679006726a5b94c243628fb41b7e1
Contents?: true
Size: 1000 Bytes
Versions: 7
Compression:
Stored size: 1000 Bytes
Contents
require 'rubygems' require 'bundler' Bundler::GemHelper.install_tasks require 'rdoc/task' Rake::RDocTask.new do |rd| rd.main = "README.md" rd.title = 'deploy-context' rd.rdoc_files.include("README.md", "lib/**/*.rb") end require 'git-version-bump/rake-tasks' require_relative '../../deploy-context' namespace :deploycontext do task :default => "deploycontext:test" do Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'cycle') end task :bump do Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'bump') end task :test => "deploycontext:help" do Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'test') end task :release => "deploycontext:default" do Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'release') end task :help do Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'help') end end
Version data entries
7 entries across 7 versions & 1 rubygems