Sha256: fba149a685376aa03da8ed31572ccb92b246377203123dd72f981a7066094f90

Contents?: true

Size: 1.13 KB

Versions: 42

Compression:

Stored size: 1.13 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
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 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "bugsnag"
  gem.homepage = "http://github.com/bugsnag/bugsnag-ruby"
  gem.license = "MIT"
  gem.summary = %Q{Ruby notifier for bugsnag.com}
  gem.description = %Q{Ruby notifier for bugsnag.com}
  gem.email = "james@bugsnag.com"
  gem.authors = ["James Smith"]
end
Jeweler::RubygemsDotOrgTasks.new

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

42 entries across 42 versions & 1 rubygems

Version Path
bugsnag-1.7.0 Rakefile
bugsnag-1.6.5 Rakefile
bugsnag-1.6.4 Rakefile
bugsnag-1.6.3 Rakefile
bugsnag-1.6.2 Rakefile
bugsnag-1.6.1 Rakefile
bugsnag-1.6.0 Rakefile
bugsnag-1.5.3 Rakefile
bugsnag-1.5.2 Rakefile
bugsnag-1.5.1 Rakefile
bugsnag-1.5.0 Rakefile
bugsnag-1.4.2 Rakefile
bugsnag-1.4.1 Rakefile
bugsnag-1.4.0 Rakefile
bugsnag-1.3.8 Rakefile
bugsnag-1.3.7 Rakefile
bugsnag-1.3.6 Rakefile
bugsnag-1.3.5 Rakefile
bugsnag-1.3.4 Rakefile
bugsnag-1.3.3 Rakefile