Sha256: b031a8bfa3cfb474b2f1e4dd5fb509f357528a7b1de5536bc6a62e416322a4d9

Contents?: true

Size: 735 Bytes

Versions: 15

Compression:

Stored size: 735 Bytes

Contents

require 'bundler'
Bundler::GemHelper.install_tasks

require 'cucumber/rake/task'

Cucumber::Rake::Task.new(:cucumber, 'Run features that should pass') do |t|
  t.cucumber_opts = "--color --tags ~@wip --strict --format #{ENV['CUCUMBER_FORMAT'] || 'Fivemat'}"
end

require 'rake/clean'

task :test => ["cucumber"]

require "middleman-deploy/pkg-info"

PACKAGE = "#{Middleman::Deploy::PACKAGE}"
VERSION = "#{Middleman::Deploy::VERSION}"

task :package do
  system "gem build #{PACKAGE}.gemspec"
end

task :install => :package do
  Dir.chdir("pkg") do
    system "gem install #{PACKAGE}-#{VERSION}"
  end
end

task :release => :package do
  Dir.chdir("pkg") do
    system "gem push #{PACKAGE}-#{VERSION}"
  end
end

task :default => :test

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
middleman-deploy-0.1.2 Rakefile
middleman-deploy-0.1.1 Rakefile
middleman-deploy-0.1.0 Rakefile
middleman-deploy-0.0.12 Rakefile
middleman-deploy-0.0.11 Rakefile
middleman-deploy-0.0.10 Rakefile
middleman-deploy-0.0.9 Rakefile
middleman-deploy-0.0.8 Rakefile
middleman-deploy-0.0.7 Rakefile
middleman-deploy-0.0.6 Rakefile
middleman-deploy-0.0.5 Rakefile
middleman-deploy-0.0.4 Rakefile
middleman-deploy-0.0.3 Rakefile
middleman-deploy-0.0.2 Rakefile
middleman-deploy-0.0.1 Rakefile