Sha256: 6ca08f53a5e4183a99f46fe020e37cd9a0bdb747822cef76a1d00abacd4f3487
Contents?: true
Size: 479 Bytes
Versions: 1
Compression:
Stored size: 479 Bytes
Contents
# encoding: utf-8 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' RSpec::Core::RakeTask.new(:spec) do |opts| opts.rspec_opts = tags end task :default => :spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bugsnag-capistrano-2.1.0 | Rakefile |