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

Version Path
deploy-context-2.2.0.3.gec16643.4.g20d2d42.4.g17e8559.12.g831d0a8.4.gbb2ab14.4.gb48499b libraries/deploy-context/helpers/rake_tasks.rb
deploy-context-2.2.0.3.gec16643.4.g20d2d42.4.g17e8559.12.g831d0a8.4.gbb2ab14 libraries/deploy-context/helpers/rake_tasks.rb
deploy-context-2.2.0.3.gec16643.4.g20d2d42.4.g17e8559.12.g831d0a8 libraries/deploy-context/helpers/rake_tasks.rb
deploy-context-2.2.0.3.gec16643.4.g20d2d42.4.g17e8559.8.g299e50a libraries/deploy-context/helpers/rake_tasks.rb
deploy-context-2.2.0.3.gec16643.4.g20d2d42.4.g17e8559 libraries/deploy-context/helpers/rake_tasks.rb
deploy-context-2.2.0.3.gec16643.4.g20d2d42 libraries/deploy-context/helpers/rake_tasks.rb
deploy-context-2.2.0.3.gec16643 libraries/deploy-context/helpers/rake_tasks.rb