Sha256: 29ca18d1b0da757259811e25bedd197707ce001ba15db35544b82fe27638c7d7

Contents?: true

Size: 968 Bytes

Versions: 3

Compression:

Stored size: 968 Bytes

Contents

require 'rubygems'
require 'rake'
require 'rake/testtask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |s|
    s.name = 'cap-ext-webistrano'
    s.summary = 'A drop-in replacement for Capistrano to fire off Webistrano deployments transparently without losing the joy of using the cap command.'
    s.email = 'meyer@paperplanes.de'
    s.homepage = 'http://github.com/mattmatt/cap-ext-webistrano'
    s.authors = ["Mathias Meyer"]
    s.files = FileList["[A-Z]*", "{lib,test}/**/*"]
    s.add_dependency 'capistrano'
  end
rescue LoadError 
  puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com" 
end

desc "Default Task"
task :default => ["test"]

desc "Runs the unit tests"
task :test => "test:unit"

namespace :test do
  desc "Unit tests"
  Rake::TestTask.new(:unit) do |t|
    t.libs << 'test/unit'
    t.pattern = "test/*_shoulda.rb"
    t.verbose = true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mattmatt-cap-ext-webistrano-0.0.3 Rakefile
mattmatt-cap-ext-webistrano-0.0.4 Rakefile
mattmatt-cap-ext-webistrano-0.1.0 Rakefile