Sha256: d301382223aa8d2e7f628616d123f521529aa1f46e02b6c74c4f2301a0789fc8

Contents?: true

Size: 854 Bytes

Versions: 5

Compression:

Stored size: 854 Bytes

Contents

# encoding: utf-8

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

require 'rdoc/task'
RDoc::Task.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

# RSpec tasks
require 'rspec/core'
require "rspec/core/rake_task"

tags = '--format documentation --tag always '

begin
  require 'bugsnag'
  tags += '--tag with_notifier '
rescue LoadError
  tags += '--tag without_notifier '
end

RSpec::Core::RakeTask.new(:spec) do |opts|
  opts.rspec_opts = tags
end
task :default  => :spec

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bugsnag-capistrano-1.1.2 Rakefile
bugsnag-capistrano-1.1.1 Rakefile
bugsnag-capistrano-1.1.0 Rakefile
bugsnag-capistrano-1.0.1 Rakefile
bugsnag-capistrano-1.0.0 Rakefile