Sha256: 873cfc1b311a1f20028d8e2fecdbf5009f33d0981b75ce68d03901edd1f673f8

Contents?: true

Size: 1.64 KB

Versions: 6

Compression:

Stored size: 1.64 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "capistrano-didi"
  gem.homepage = "https://github.com/Crosscheck/didi"
  gem.license = "MIT"
  gem.summary = %Q{didi - drupal deployment script based on capistrano}
  gem.description = %Q{didi is a collection of recipes for capistrano that allow drupal to be deployed, tested and used in a CI environment}
  gem.email = "support@crosscheck.be"
  gem.authors = ["CrossCheck"]
  #gem.add_dependency "capistrano", "~> 2.12"
  #gem.add_dependency "railsless-deploy", "~> 1.0.2"
  gem.post_install_message = '=> "didify" and "didi" commands installed. Try them out!'
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

#require 'rcov/rcovtask'
#Rcov::RcovTask.new do |test|
#  test.libs << 'test'
#  test.pattern = 'test/**/test_*.rb'
#  test.verbose = true
#  test.rcov_opts << '--exclude "gems/*"'
#end

task :default => :test

require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "didi #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
capistrano-didi-0.4.18 Rakefile
capistrano-didi-0.4.17 Rakefile
capistrano-didi-0.4.16 Rakefile
capistrano-didi-0.4.14 Rakefile
capistrano-didi-0.4.13 Rakefile
capistrano-didi-0.4.12 Rakefile