Sha256: 598d0bb0e5e215dcdbfe73b2de49b48cd08107bf3ba8d501ecfb2b1264974c60
Contents?: true
Size: 711 Bytes
Versions: 10
Compression:
Stored size: 711 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, 'once') end task :bump do Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'bump') end task :test do Context::DeployContext.deployer.execute_action(Context::DeployContext.deployer, 'test') end end
Version data entries
10 entries across 10 versions & 1 rubygems