Sha256: 952e65dfb95b76219be3e1b9a2ef52d76cd7b6995d457f6381af7d4908aeb058
Contents?: true
Size: 1.68 KB
Versions: 5
Compression:
Stored size: 1.68 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 = "http://github.com/koenvw/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 = "koenvw@gmail.com" gem.authors = ["Koen Van Winckel"] gem.add_dependency "capistrano", ">= 2.9.0" gem.add_dependency "railsless-deploy", ">= 1.0.2" gem.add_dependency "capistrano-ext", ">= 1.2.1" 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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
capistrano-didi-0.4.0 | Rakefile |
capistrano-didi-0.3.2 | Rakefile |
capistrano-didi-0.3.1 | Rakefile |
capistrano-didi-0.3.0 | Rakefile |
capistrano-didi-0.2.3 | Rakefile |