Sha256: 7e18c53cc3df83afcd8c934244f1db7eaea57ba08f403d588a30f45965927d3c

Contents?: true

Size: 715 Bytes

Versions: 20

Compression:

Stored size: 715 Bytes

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
require 'bundler/gem_tasks'
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 'rdoc/task'
RDoc::Task.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

# RSpec tasks
require 'rspec/core'
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

task :default  => :spec

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
bugsnag-2.4.1 Rakefile
bugsnag-2.4.0 Rakefile
bugsnag-2.3.0 Rakefile
bugsnag-2.2.2 Rakefile
bugsnag-2.2.1 Rakefile
bugsnag-2.2.0 Rakefile
bugsnag-2.1.0 Rakefile
bugsnag-2.0.3 Rakefile
bugsnag-2.0.2 Rakefile
bugsnag-2.0.1 Rakefile
bugsnag-2.0.0 Rakefile
bugsnag-1.8.8 Rakefile
bugsnag-1.8.7 Rakefile
bugsnag-1.8.6 Rakefile
bugsnag-1.8.5 Rakefile
bugsnag-1.8.4 Rakefile
bugsnag-1.8.3 Rakefile
bugsnag-1.8.2 Rakefile
bugsnag-1.8.1 Rakefile
bugsnag-1.8.0 Rakefile